Lines Matching refs:nLast
84 sal_Int32 nLast = (-1 == nPos ? rStrImpValue.getLength() : nPos); in importXML() local
85 if( nLast > 0 ) in importXML()
86 nLast--; in importXML()
89 while( sal_Unicode(' ') == rStrImpValue[nLast] && nLast > nFirst ) in importXML()
90 nLast--; in importXML()
93 while( sal_Unicode(' ') == rStrImpValue[nFirst] && nFirst <= nLast ) in importXML()
98 …if( nFirst < nLast && (sal_Unicode('\'') == c || sal_Unicode('\"') == c) && rStrImpValue[nLast] ==… in importXML()
101 nLast--; in importXML()
104 if( nFirst <= nLast ) in importXML()
109 OUString sTemp = rStrImpValue.copy( nFirst, nLast-nFirst+1 ); in importXML()
140 sal_Int32 nLast = (-1 == nPos ? aStrFamilyName.getLength() : nPos); in exportXML() local
150 if( 0L == nLast ) in exportXML()
155 nLast--; in exportXML()
158 while( sal_Unicode(' ') == aStrFamilyName[nLast] && nLast > nFirst ) in exportXML()
159 nLast--; in exportXML()
162 while( sal_Unicode(' ') == aStrFamilyName[nFirst] && nFirst <= nLast ) in exportXML()
165 if( nFirst <= nLast ) in exportXML()
172 sal_Int32 nLen = nLast-nFirst+1; in exportXML()