Lines Matching refs:nLen

51 void Imp_SkipDouble(const OUString& rStr, sal_Int32& rPos, const sal_Int32 nLen);
57 void Imp_SkipSpaces(const OUString& rStr, sal_Int32& rPos, const sal_Int32 nLen) in Imp_SkipSpaces() argument
59 while(rPos < nLen in Imp_SkipSpaces()
64 void Imp_SkipSpacesAndOpeningBraces(const OUString& rStr, sal_Int32& rPos, const sal_Int32 nLen) in Imp_SkipSpacesAndOpeningBraces() argument
66 while(rPos < nLen in Imp_SkipSpacesAndOpeningBraces()
71 void Imp_SkipSpacesAndCommas(const OUString& rStr, sal_Int32& rPos, const sal_Int32 nLen) in Imp_SkipSpacesAndCommas() argument
73 while(rPos < nLen in Imp_SkipSpacesAndCommas()
78 void Imp_SkipSpacesAndClosingBraces(const OUString& rStr, sal_Int32& rPos, const sal_Int32 nLen) in Imp_SkipSpacesAndClosingBraces() argument
80 while(rPos < nLen in Imp_SkipSpacesAndClosingBraces()
113 void Imp_SkipNumber(const OUString& rStr, sal_Int32& rPos, const sal_Int32 nLen) in Imp_SkipNumber() argument
117 while(rPos < nLen && Imp_IsOnNumberChar(rStr, rPos, bSignAllowed)) in Imp_SkipNumber()
125 const sal_Int32 nLen) in Imp_SkipNumberAndSpacesAndCommas() argument
127 Imp_SkipNumber(rStr, rPos, nLen); in Imp_SkipNumberAndSpacesAndCommas()
128 Imp_SkipSpacesAndCommas(rStr, rPos, nLen); in Imp_SkipNumberAndSpacesAndCommas()
133 const sal_Int32 nLen) in Imp_SkipDoubleAndSpacesAndCommas() argument
135 Imp_SkipDouble(rStr, rPos, nLen); in Imp_SkipDoubleAndSpacesAndCommas()
136 Imp_SkipSpacesAndCommas(rStr, rPos, nLen); in Imp_SkipDoubleAndSpacesAndCommas()
186 double Imp_GetDoubleChar(const OUString& rStr, sal_Int32& rPos, const sal_Int32 nLen, in Imp_GetDoubleChar() argument
225 Imp_SkipSpaces(rStr, rPos, nLen); in Imp_GetDoubleChar()
226 while(rPos < nLen && Imp_IsOnUnitChar(rStr, rPos)) in Imp_GetDoubleChar()
535 const sal_Int32 nLen(aStr.getLength()); in SetString() local
546 while(nPos < nLen) in SetString()
549 Imp_SkipSpaces(aStr, nPos, nLen); in SetString()
552 if(nPos < nLen) in SetString()
558 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
559 fValue = Imp_GetDoubleChar(aStr, nPos, nLen, rConv, fValue); in SetString()
563 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
569 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
570 aValue.setX(Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.getX())); in SetString()
571 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
572 aValue.setY(Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.getY())); in SetString()
577 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
583 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
584 aValue.setX(Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.getX(), true)); in SetString()
585 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
586 aValue.setY(Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.getY(), true)); in SetString()
591 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
597 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
598 fValue = Imp_GetDoubleChar(aStr, nPos, nLen, rConv, fValue); in SetString()
602 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
608 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
609 fValue = Imp_GetDoubleChar(aStr, nPos, nLen, rConv, fValue); in SetString()
613 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
620 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
623 aValue.set(0, 0, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(0, 0))); in SetString()
624 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
627 aValue.set(1, 0, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(1, 0))); in SetString()
628 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
631 aValue.set(0, 1, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(0, 1))); in SetString()
632 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
635 aValue.set(1, 1, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(1, 1))); in SetString()
636 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
639 aValue.set(0, 2, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(0, 2), true)); in SetString()
640 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
643 aValue.set(1, 2, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(1, 2), true)); in SetString()
644 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
649 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
1039 const sal_Int32 nLen(aStr.getLength()); in SetString() local
1050 while(nPos < nLen) in SetString()
1053 Imp_SkipSpaces(aStr, nPos, nLen); in SetString()
1056 if(nPos < nLen) in SetString()
1063 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
1064 fValue = Imp_GetDoubleChar(aStr, nPos, nLen, rConv, fValue); in SetString()
1068 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
1075 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
1076 fValue = Imp_GetDoubleChar(aStr, nPos, nLen, rConv, fValue); in SetString()
1080 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
1087 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
1088 fValue = Imp_GetDoubleChar(aStr, nPos, nLen, rConv, fValue); in SetString()
1092 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
1099 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
1100 aValue.setX(Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.getX())); in SetString()
1101 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1102 aValue.setY(Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.getY())); in SetString()
1103 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1104 aValue.setZ(Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.getZ())); in SetString()
1109 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
1116 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
1117 aValue.setX(Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.getX(), true)); in SetString()
1118 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1119 aValue.setY(Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.getY(), true)); in SetString()
1120 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1121 aValue.setZ(Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.getZ(), true)); in SetString()
1126 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
1133 Imp_SkipSpacesAndOpeningBraces(aStr, nPos, nLen); in SetString()
1136 aValue.set(0, 0, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(0, 0))); in SetString()
1137 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1140 aValue.set(1, 0, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(1, 0))); in SetString()
1141 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1144 aValue.set(2, 0, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(2, 0))); in SetString()
1145 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1148 aValue.set(0, 1, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(0, 1))); in SetString()
1149 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1152 aValue.set(1, 1, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(1, 1))); in SetString()
1153 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1156 aValue.set(2, 1, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(2, 1))); in SetString()
1157 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1160 aValue.set(0, 2, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(0, 2))); in SetString()
1161 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1164 aValue.set(1, 2, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(1, 2))); in SetString()
1165 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1168 aValue.set(2, 2, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(2, 2))); in SetString()
1169 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1172 aValue.set(0, 3, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(0, 3), true)); in SetString()
1173 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1176 aValue.set(1, 3, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(1, 3), true)); in SetString()
1177 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1180 aValue.set(2, 3, Imp_GetDoubleChar(aStr, nPos, nLen, rConv, aValue.get(2, 3), true)); in SetString()
1181 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SetString()
1186 Imp_SkipSpacesAndClosingBraces(aStr, nPos, nLen); in SetString()
1303 const sal_Int32 nLen(aStr.getLength()); in SdXMLImExViewBox() local
1307 Imp_SkipSpaces(aStr, nPos, nLen); in SdXMLImExViewBox()
1310 mfX = Imp_GetDoubleChar(aStr, nPos, nLen, rConv, mfX); in SdXMLImExViewBox()
1313 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SdXMLImExViewBox()
1316 mfY = Imp_GetDoubleChar(aStr, nPos, nLen, rConv, mfY); in SdXMLImExViewBox()
1319 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SdXMLImExViewBox()
1322 mfW = Imp_GetDoubleChar(aStr, nPos, nLen, rConv, mfW); in SdXMLImExViewBox()
1325 Imp_SkipSpacesAndCommas(aStr, nPos, nLen); in SdXMLImExViewBox()
1328 mfH = Imp_GetDoubleChar(aStr, nPos, nLen, rConv, mfH); in SdXMLImExViewBox()