Lines Matching refs:sal_Int32

68 const sal_Int32 OOX_DUMP_MAXSTRLEN      = 80;
69 const sal_Int32 OOX_DUMP_INDENT = 2;
75 const sal_Int32 OOX_DUMP_BYTESPERLINE = 16;
93 sal_Int32 InputOutputHelper::getFileNamePos( const OUString& rFileUrl ) in getFileNamePos()
95 sal_Int32 nSepPos = rFileUrl.lastIndexOf( '/' ); in getFileNamePos()
101 sal_Int32 nNamePos = getFileNamePos( rFileUrl ); in getFileNameExtension()
102 sal_Int32 nExtPos = rFileUrl.lastIndexOf( '.' ); in getFileNameExtension()
230 void StringHelper::appendChar( OUStringBuffer& rStr, sal_Unicode cChar, sal_Int32 nCount ) in appendChar()
232 for( sal_Int32 nIndex = 0; nIndex < nCount; ++nIndex ) in appendChar()
236 void StringHelper::appendString( OUStringBuffer& rStr, const OUString& rData, sal_Int32 nWidth, sal… in appendString()
244 void StringHelper::appendDec( OUStringBuffer& rStr, sal_uInt8 nData, sal_Int32 nWidth, sal_Unicode … in appendDec()
246 appendString( rStr, OUString::valueOf( static_cast< sal_Int32 >( nData ) ), nWidth, cFill ); in appendDec()
249 void StringHelper::appendDec( OUStringBuffer& rStr, sal_Int8 nData, sal_Int32 nWidth, sal_Unicode c… in appendDec()
251 appendString( rStr, OUString::valueOf( static_cast< sal_Int32 >( nData ) ), nWidth, cFill ); in appendDec()
254 void StringHelper::appendDec( OUStringBuffer& rStr, sal_uInt16 nData, sal_Int32 nWidth, sal_Unicode… in appendDec()
256 appendString( rStr, OUString::valueOf( static_cast< sal_Int32 >( nData ) ), nWidth, cFill ); in appendDec()
259 void StringHelper::appendDec( OUStringBuffer& rStr, sal_Int16 nData, sal_Int32 nWidth, sal_Unicode … in appendDec()
261 appendString( rStr, OUString::valueOf( static_cast< sal_Int32 >( nData ) ), nWidth, cFill ); in appendDec()
264 void StringHelper::appendDec( OUStringBuffer& rStr, sal_uInt32 nData, sal_Int32 nWidth, sal_Unicode… in appendDec()
269 void StringHelper::appendDec( OUStringBuffer& rStr, sal_Int32 nData, sal_Int32 nWidth, sal_Unicode … in appendDec()
274 void StringHelper::appendDec( OUStringBuffer& rStr, sal_uInt64 nData, sal_Int32 nWidth, sal_Unicode… in appendDec()
286 void StringHelper::appendDec( OUStringBuffer& rStr, sal_Int64 nData, sal_Int32 nWidth, sal_Unicode … in appendDec()
291 void StringHelper::appendDec( OUStringBuffer& rStr, double fData, sal_Int32 nWidth, sal_Unicode cFi… in appendDec()
328 void StringHelper::appendHex( OUStringBuffer& rStr, sal_Int32 nData, bool bPrefix ) in appendHex()
382 void StringHelper::appendShortHex( OUStringBuffer& rStr, sal_Int32 nData, bool bPrefix ) in appendShortHex()
443 void StringHelper::appendBin( OUStringBuffer& rStr, sal_Int32 nData, bool bDots ) in appendBin()
475 void StringHelper::appendAddrCol( OUStringBuffer& rStr, sal_Int32 nCol, bool bRel ) in appendAddrCol()
478 sal_Int32 nPos = rStr.getLength(); in appendAddrCol()
479 for( sal_Int32 nTemp = nCol; nTemp >= 0; (nTemp /= 26) -= 1 ) in appendAddrCol()
483 void StringHelper::appendAddrRow( OUStringBuffer& rStr, sal_Int32 nRow, bool bRel ) in appendAddrRow()
489 void StringHelper::appendAddrName( OUStringBuffer& rStr, sal_Unicode cPrefix, sal_Int32 nColRow, bo… in appendAddrName()
566 void StringHelper::appendEncChar( OUStringBuffer& rStr, sal_Unicode cChar, sal_Int32 nCount, bool b… in appendEncChar()
573 for( sal_Int32 nIdx = 0; nIdx < nCount; ++nIdx ) in appendEncChar()
584 sal_Int32 nBeg = 0; in appendEncString()
585 sal_Int32 nIdx = 0; in appendEncString()
586 sal_Int32 nEnd = rData.getLength(); in appendEncString()
664 OUString StringHelper::getToken( const OUString& rData, sal_Int32& rnPos, sal_Unicode cSep ) in getToken()
678 sal_Int32 lclIndexOf( const OUString& rStr, sal_Unicode cChar, sal_Int32 nStartPos ) in lclIndexOf()
680 sal_Int32 nIndex = rStr.indexOf( cChar, nStartPos ); in lclIndexOf()
687 sal_Int32 nPos = 0; in lclTrimQuotedStringList()
688 sal_Int32 nLen = rStr.getLength(); in lclTrimQuotedStringList()
700 sal_Int32 nEnd = lclIndexOf( rStr, OOX_DUMP_CFG_QUOTE, nPos ); in lclTrimQuotedStringList()
723 sal_Int32 nEnd = lclIndexOf( rStr, OOX_DUMP_CFG_LISTSEP, nPos ); in lclTrimQuotedStringList()
739 sal_Int32 nBeg = 0; in trimSpaces()
742 sal_Int32 nEnd = rStr.getLength(); in trimSpaces()
750 sal_Int32 nLastPos = rStr.getLength() - 1; in trimTrailingNul()
807 sal_Int32 nPos = 0; in convertFromDec()
808 sal_Int32 nLen = rData.getLength(); in convertFromDec()
831 for( sal_Int32 nPos = 0, nLen = rData.getLength(); nPos < nLen; ++nPos ) in convertFromHex()
857 sal_Int32 nSize = 0; in convertStringToDouble()
877 sal_Int32 nEqPos = rString.indexOf( cSep ); in convertStringToPair()
895 sal_Int32 nPos = 0; in convertStringToStringList()
896 sal_Int32 nLen = aUnquotedData.getLength(); in convertStringToStringList()
909 sal_Int32 nPos = 0; in convertStringToIntList()
910 sal_Int32 nLen = aUnquotedData.getLength(); in convertStringToIntList()
961 sal_Int32 nPos = maFmlaStack.top().indexOf( rOld ); in replaceOnTop()
1307 sal_Int32 nBothSep = bNegated ? rFlagName.indexOf( '!', 1 ) : -1; in implGetName()
1431 …case DATATYPE_INT32: StringHelper::appendValue( aValue, static_cast< sal_Int32 >( nSValue ), rI… in implGetName()
1515 sal_Int32 nNamePos = InputOutputHelper::getFileNamePos( aFileUrl ); in SharedConfigData()
1816 void Output::startTable( sal_Int32 nW1 ) in startTable()
1821 void Output::startTable( sal_Int32 nW1, sal_Int32 nW2 ) in startTable()
1823 sal_Int32 pnColWidths[ 2 ]; in startTable()
1829 void Output::startTable( sal_Int32 nW1, sal_Int32 nW2, sal_Int32 nW3 ) in startTable()
1831 sal_Int32 pnColWidths[ 3 ]; in startTable()
1838 void Output::startTable( sal_Int32 nW1, sal_Int32 nW2, sal_Int32 nW3, sal_Int32 nW4 ) in startTable()
1840 sal_Int32 pnColWidths[ 4 ]; in startTable()
1848 void Output::startTable( size_t nColCount, const sal_Int32* pnColWidths ) in startTable()
1852 sal_Int32 nColPos = 0; in startTable()
1870 sal_Int32 nColPos = maColPos[ mnCol ]; in tab()
1872 maLine.setLength( ::std::max< sal_Int32 >( nColPos - 1, 0 ) ); in tab()
1950 void Output::writeChar( sal_Unicode cChar, sal_Int32 nCount ) in writeChar()
1982 void Output::writeColorABGR( sal_Int32 nColor ) in writeColorABGR()
2009 void Output::writeColIndex( sal_Int32 nCol ) in writeColIndex()
2014 void Output::writeRowIndex( sal_Int32 nRow ) in writeRowIndex()
2019 void Output::writeColRowRange( sal_Int32 nColRow1, sal_Int32 nColRow2 ) in writeColRowRange()
2026 void Output::writeColRange( sal_Int32 nCol1, sal_Int32 nCol2 ) in writeColRange()
2033 void Output::writeRowRange( sal_Int32 nRow1, sal_Int32 nRow2 ) in writeRowRange()
2387 double OutputObjectBase::writeRkItem( const String& rName, sal_Int32 nRk ) in writeRkItem()
2396 void OutputObjectBase::writeColorABGRItem( const String& rName, sal_Int32 nColor ) in writeColorABGRItem()
2417 void OutputObjectBase::writeColIndexItem( const String& rName, sal_Int32 nCol ) in writeColIndexItem()
2425 void OutputObjectBase::writeRowIndexItem( const String& rName, sal_Int32 nRow ) in writeRowIndexItem()
2433 void OutputObjectBase::writeColRangeItem( const String& rName, sal_Int32 nCol1, sal_Int32 nCol2 ) in writeColRangeItem()
2441 void OutputObjectBase::writeRowRangeItem( const String& rName, sal_Int32 nRow1, sal_Int32 nRow2 ) in writeRowRangeItem()
2559sal_Int32 nLineSize = bSeekable ? ::std::min( static_cast< sal_Int32 >( nDumpEnd - mxStrm->tell() … in dumpRawBinary()
2560 sal_Int32 nReadSize = mxStrm->readMemory( pnLineData, nLineSize ); in dumpRawBinary()
2626 void InputObjectBase::dumpArray( const String& rName, sal_Int32 nBytes, sal_Unicode cSep ) in dumpArray()
2628sal_Int32 nDumpSize = getLimitedValue< sal_Int32, sal_Int64 >( mxStrm->size() - mxStrm->tell(), 0,… in dumpArray()
2662 OUString InputObjectBase::dumpCharArray( const String& rName, sal_Int32 nLen, rtl_TextEncoding eTex… in dumpCharArray()
2664sal_Int32 nDumpSize = getLimitedValue< sal_Int32, sal_Int64 >( mxStrm->size() - mxStrm->tell(), 0,… in dumpCharArray()
2669 sal_Int32 nCharsRead = mxStrm->readMemory( &aBuffer.front(), nLen ); in dumpCharArray()
2679 OUString InputObjectBase::dumpUnicodeArray( const String& rName, sal_Int32 nLen, bool bHideTrailing… in dumpUnicodeArray()
2682 for( sal_Int32 nIndex = 0; !mxStrm->isEof() && (nIndex < nLen); ++nIndex ) in dumpUnicodeArray()
2715 sal_Int32 nRk; in dumpRk()
2720 sal_Int32 InputObjectBase::dumpColorABGR( const String& rName ) in dumpColorABGR()
2722 sal_Int32 nColor; in dumpColorABGR()
2818 case DATATYPE_INT32: dumpValue< sal_Int32 >( rItemFmt ); break; in dumpItem()
2954 sal_Int32 nPos = 0; in implDumpText()
2963 sal_Int32 nElemLen = aElem.getLength(); in implDumpText()
3140 sal_Int32 nRecSize = static_cast< sal_Int32 >( ornRecSize ); in implStartRecord()