Lines Matching refs:nLength

1046 	sal_Int32 nLength =-1;  in getIndentPrefixLength()  local
1052 nLength = m_nLevel; in getIndentPrefixLength()
1056 return nLength; in getIndentPrefixLength()
1150 sal_Int32 nLength(0); in startElement() local
1155 nLength ++; // "<" in startElement()
1156 nLength += calcXMLByteLength( aName.getStr() , aName.getLength(), in startElement()
1161 nLength ++; // " " in startElement()
1164 nLength += calcXMLByteLength( tmp.getStr() , tmp.getLength() , sal_False, sal_False ); in startElement()
1166 nLength += 2; // =" in startElement()
1170 nLength += calcXMLByteLength( tmp.getStr(), tmp.getLength(), sal_True, sal_True ); in startElement()
1172 nLength += 1; // " in startElement()
1175 nLength ++; // '>' in startElement()
1179 sal_Int32 nPrefix(getIndentPrefixLength( nLength )); in startElement()
1220 sal_Int32 nLength(0); in endElement() local
1222 nLength = 3 + calcXMLByteLength( aName.getStr(), aName.getLength(), sal_False, sal_False ); in endElement()
1223 sal_Int32 nPrefix = getIndentPrefixLength( nLength ); in endElement()
1258 sal_Int32 nLength(0); in characters() local
1264 nLength = calcXMLByteLength( aChars.getStr(), aChars.getLength(), in characters()
1267 nFirstLineBreakOccurence >= 0 ? nFirstLineBreakOccurence : nLength ); in characters()
1270 nIndentPrefix = getIndentPrefixLength(nLength); in characters()
1310 sal_Int32 nLength(0); in processingInstruction() local
1313 nLength = 2; // "<?" in processingInstruction()
1314 nLength += calcXMLByteLength( aTarget.getStr(), aTarget.getLength(), sal_False, sal_False ); in processingInstruction()
1316 nLength += 1; // " " in processingInstruction()
1318 nLength += calcXMLByteLength( aData.getStr(), aData.getLength(), sal_False, sal_False ); in processingInstruction()
1320 nLength += 2; // "?>" in processingInstruction()
1323 sal_Int32 nPrefix = getIndentPrefixLength( nLength ); in processingInstruction()
1350 sal_Int32 nLength = 9; in startCDATA() local
1351 sal_Int32 nPrefix = getIndentPrefixLength( nLength ); in startCDATA()
1369 sal_Int32 nLength = 3; in endCDATA() local
1370 sal_Int32 nPrefix = getIndentPrefixLength( nLength ); in endCDATA()
1387 sal_Int32 nLength(0); in comment() local
1390 nLength = 4; // "<!--" in comment()
1391 nLength += calcXMLByteLength( sComment.getStr(), sComment.getLength(), sal_False, sal_False); in comment()
1393 nLength += 3; in comment()
1396 sal_Int32 nPrefix = getIndentPrefixLength( nLength ); in comment()
1433 sal_Int32 nLength(0); in unknown() local
1435 nLength = calcXMLByteLength( sString.getStr(), sString.getLength(), sal_False, sal_False ); in unknown()
1437 sal_Int32 nPrefix = getIndentPrefixLength( nLength ); in unknown()