Lines Matching refs:nLen

66     sal_Int32 nLen = rString.getLength();  in convertMeasure()  local
69 while( (nPos < nLen) && (rString[nPos] <= sal_Unicode(' ')) ) in convertMeasure()
72 if( nPos < nLen && sal_Unicode('-') == rString[nPos] ) in convertMeasure()
79 while( nPos < nLen && in convertMeasure()
89 if( nPos < nLen && sal_Unicode('.') == rString[nPos] ) in convertMeasure()
93 while( nPos < nLen && in convertMeasure()
105 while( (nPos < nLen) && (rString[nPos] <= sal_Unicode(' ')) ) in convertMeasure()
108 if( nPos < nLen ) in convertMeasure()
118 if( nPos + 1 >= nLen || in convertMeasure()
222 while( nPos < nLen && *pL ) in convertMeasure()
231 if( !*pL && (nPos == nLen || ' ' == rString[nPos]) ) in convertMeasure()
579 sal_Int32 nLen = rString.getLength(); in convertNumber() local
582 while( (nPos < nLen) && (rString[nPos] <= sal_Unicode(' ')) ) in convertNumber()
585 if( nPos < nLen && sal_Unicode('-') == rString[nPos] ) in convertNumber()
592 while( nPos < nLen && in convertNumber()
610 return nPos == nLen; in convertNumber()
1609 sal_Int32 nLen = rStr.getLength(); in indexOfComma() local
1610 for( ; nPos < nLen; nPos++ ) in indexOfComma()
1671 sal_Int32 nLen(nFullLen - nStart); in ThreeByteToFourByte() local
1672 if (nLen > 3) in ThreeByteToFourByte()
1673 nLen = 3; in ThreeByteToFourByte()
1674 if (nLen == 0) in ThreeByteToFourByte()
1681 switch (nLen) in ThreeByteToFourByte()
1710 if (nLen == 1) in ThreeByteToFourByte()
1715 if (nLen == 2) in ThreeByteToFourByte()
2012 sal_Int32 nLen = rString.getLength(); in GetUnitFromString() local
2016 while( nPos < nLen && sal_Unicode(' ') == rString[nPos] ) in GetUnitFromString()
2020 if( nPos < nLen && sal_Unicode('-') == rString[nPos] ) in GetUnitFromString()
2024 while( nPos < nLen && sal_Unicode('0') <= rString[nPos] && sal_Unicode('9') >= rString[nPos] ) in GetUnitFromString()
2027 if( nPos < nLen && sal_Unicode('.') == rString[nPos] ) in GetUnitFromString()
2030 while( nPos < nLen && sal_Unicode('0') <= rString[nPos] && sal_Unicode('9') >= rString[nPos] ) in GetUnitFromString()
2035 while( nPos < nLen && sal_Unicode(' ') == rString[nPos] ) in GetUnitFromString()
2038 if( nPos < nLen ) in GetUnitFromString()
2050 if(nPos+1 < nLen && (rString[nPos+1] == sal_Unicode('m') in GetUnitFromString()
2064 if(nPos+1 < nLen && (rString[nPos+1] == sal_Unicode('n') in GetUnitFromString()
2072 if(nPos+1 < nLen && (rString[nPos+1] == sal_Unicode('m') in GetUnitFromString()
2080 if(nPos+1 < nLen && (rString[nPos+1] == sal_Unicode('t') in GetUnitFromString()
2083 if(nPos+1 < nLen && (rString[nPos+1] == sal_Unicode('c') in GetUnitFromString()