Lines Matching refs:nCount

471     static void         appendSpaces( WhiteSpaceVec& orSpaces, sal_Int32 nCount, bool bLineFeed );
472 void appendLeadingSpaces( sal_Int32 nCount, bool bLineFeed );
473 void appendOpeningSpaces( sal_Int32 nCount, bool bLineFeed );
474 void appendClosingSpaces( sal_Int32 nCount, bool bLineFeed );
685 void FormulaParserImpl::appendSpaces( WhiteSpaceVec& orSpaces, sal_Int32 nCount, bool bLineFeed ) in appendSpaces() argument
687 OSL_ENSURE( nCount >= 0, "FormulaParserImpl::appendSpaces - negative count" ); in appendSpaces()
688 if( nCount > 0 ) in appendSpaces()
689 orSpaces.push_back( WhiteSpace( nCount, bLineFeed ) ); in appendSpaces()
692 void FormulaParserImpl::appendLeadingSpaces( sal_Int32 nCount, bool bLineFeed ) in appendLeadingSpaces() argument
694 appendSpaces( maLeadingSpaces, nCount, bLineFeed ); in appendLeadingSpaces()
697 void FormulaParserImpl::appendOpeningSpaces( sal_Int32 nCount, bool bLineFeed ) in appendOpeningSpaces() argument
699 appendSpaces( maOpeningSpaces, nCount, bLineFeed ); in appendOpeningSpaces()
702 void FormulaParserImpl::appendClosingSpaces( sal_Int32 nCount, bool bLineFeed ) in appendClosingSpaces() argument
704 appendSpaces( maClosingSpaces, nCount, bLineFeed ); in appendClosingSpaces()
1483 sal_uInt8 nType, nCount; in importSpaceToken() local
1484 rStrm >> nType >> nCount; in importSpaceToken()
1488 appendLeadingSpaces( nCount, false ); in importSpaceToken()
1491 appendLeadingSpaces( nCount, true ); in importSpaceToken()
1494 appendOpeningSpaces( nCount, false ); in importSpaceToken()
1497 appendOpeningSpaces( nCount, true ); in importSpaceToken()
1500 appendClosingSpaces( nCount, false ); in importSpaceToken()
1503 appendClosingSpaces( nCount, true ); in importSpaceToken()
2264 sal_uInt8 nType, nCount; in importSpaceToken4() local
2265 rStrm >> nType >> nCount; in importSpaceToken4()
2269 appendLeadingSpaces( nCount, false ); in importSpaceToken4()
2272 appendLeadingSpaces( nCount, true ); in importSpaceToken4()
2275 appendOpeningSpaces( nCount, false ); in importSpaceToken4()
2278 appendOpeningSpaces( nCount, true ); in importSpaceToken4()
2281 appendClosingSpaces( nCount, false ); in importSpaceToken4()
2284 appendClosingSpaces( nCount, true ); in importSpaceToken4()
2623 sal_Int32 nCount = rStrm.readuInt16(); in skipMemAreaAddData() local
2624 rStrm.skip( ((getBiff() == BIFF8) ? 8 : 6) * nCount ); in skipMemAreaAddData()
2638 sal_uInt32 nCount; in readNlrSRangeAddData() local
2639 rStrm >> nCount; in readNlrSRangeAddData()
2640 bool bRel = getFlag( nCount, BIFF_TOK_NLR_ADDREL ); in readNlrSRangeAddData()
2641 nCount &= BIFF_TOK_NLR_ADDMASK; in readNlrSRangeAddData()
2642 sal_Int64 nEndPos = rStrm.tell() + 4 * nCount; in readNlrSRangeAddData()
2645 if( nCount >= 2 ) in readNlrSRangeAddData()
2653 for( sal_uInt32 nIndex = 2; bValid && (nIndex < nCount); ++nIndex ) in readNlrSRangeAddData()