Searched refs:nElemCount (Results 1 – 5 of 5) sorted by relevance
/aoo41x/main/oox/inc/oox/helper/ |
H A D | binaryinputstream.hxx | 120 sal_Int32 readArray( Type* opnArray, sal_Int32 nElemCount ); 135 …2 readArray( ::com::sun::star::uno::Sequence< Type >& orSequence, sal_Int32 nElemCount ); 150 sal_Int32 readArray( ::std::vector< Type >& orVector, sal_Int32 nElemCount ); 160 void skipArray( sal_Int32 nElemCount ); 251 sal_Int32 BinaryInputStream::readArray( Type* opnArray, sal_Int32 nElemCount ) in readArray() argument 266 orSequence.reallocate( nElemCount ); in readArray() 267 return orSequence.hasElements() ? readArray( orSequence.getArray(), nElemCount ) : 0; in readArray() 271 sal_Int32 BinaryInputStream::readArray( ::std::vector< Type >& orVector, sal_Int32 nElemCount ) in readArray() argument 273 orVector.resize( static_cast< size_t >( nElemCount ) ); in readArray() 274 return orVector.empty() ? 0 : readArray( &orVector.front(), nElemCount ); in readArray() [all …]
|
H A D | helper.hxx | 248 inline static void convertLittleEndianArray( Type* pnArray, size_t nElemCount ); 302 inline void ByteOrderConverter::convertLittleEndianArray( Type* pnArray, size_t nElemCount ) in convertLittleEndianArray() argument 304 for( Type* pnArrayEnd = pnArray + nElemCount; pnArray != pnArrayEnd; ++pnArray ) in convertLittleEndianArray()
|
/aoo41x/main/sc/source/filter/xml/ |
H A D | XMLExportDataPilot.cxx | 670 sal_Int32 nElemCount = pGroup->GetElementCount(); in WriteGroupDimElements() local 671 for(sal_Int32 j = 0; j < nElemCount; ++j) in WriteGroupDimElements()
|
/aoo41x/main/sc/source/filter/excel/ |
H A D | xepivot.cxx | 396 …for( size_t nElemIdx = 0, nElemCount = pGroupItem->GetElementCount(); nElemIdx < nElemCount; ++nEl… in InitStdGroupField() local
|
/aoo41x/main/oox/source/dump/ |
H A D | oledumper.cxx | 544 sal_Int32 nElemCount = dumpDec< sal_Int32 >( "element-count" ); in dumpPropertyVector() local 545 for( sal_Int32 nElemIdx = 0; !mxStrm->isEof() && (nElemIdx < nElemCount); ++nElemIdx ) in dumpPropertyVector()
|
Completed in 39 milliseconds