Lines Matching refs:sal_Int32

64 sal_Int32 OleInputObjectBase::dumpStdClipboardFormat( const String& rName )  in dumpStdClipboardFormat()
66 return dumpDec< sal_Int32 >( rName( "clipboard-format" ), "OLE-STD-CLIPBOARD-FORMAT" ); in dumpStdClipboardFormat()
71 sal_Int32 nLen = mxStrm->readInt32(); in dumpAnsiString32OrStdClip()
77 sal_Int32 nLen = mxStrm->readInt32(); in dumpUniString32OrStdClip()
196 sal_Int32 nBytes = dumpDec< sal_Int32 >( "url-bytes" ); in dumpUrlMoniker()
197 sal_Int64 nEndPos = mxStrm->tell() + ::std::max< sal_Int32 >( nBytes, 0 ); in dumpUrlMoniker()
215 sal_Int32 nBytes = dumpDec< sal_Int32 >( "total-bytes" ); in dumpFileMoniker()
216 sal_Int64 nEndPos = mxStrm->tell() + ::std::max< sal_Int32 >( nBytes, 0 ); in dumpFileMoniker()
219 sal_Int32 nFileBytes = dumpDec< sal_Int32 >( "uni-filename-bytes" ); in dumpFileMoniker()
228 sal_Int32 nBytes = dumpDec< sal_Int32 >( "delimiter-bytes" ); in dumpItemMoniker()
229 sal_Int64 nEndPos = mxStrm->tell() + ::std::max< sal_Int32 >( nBytes, 0 ); in dumpItemMoniker()
235 nBytes = dumpDec< sal_Int32 >( "item-bytes" ); in dumpItemMoniker()
236 nEndPos = mxStrm->tell() + ::std::max< sal_Int32 >( nBytes, 0 ); in dumpItemMoniker()
245 dumpDec< sal_Int32 >( "count" ); in dumpAntiMoniker()
250 sal_Int32 nCount = dumpDec< sal_Int32 >( "moniker-count" ); in dumpCompositeMoniker()
251 for( sal_Int32 nIndex = 0; !mxStrm->isEof() && (nIndex < nCount); ++nIndex ) in dumpCompositeMoniker()
279 sal_Int32 nLen = mxStrm->readInt32(); in implDump()
283 … if( (mxStrm->getRemaining() >= 4) && (dumpHex< sal_Int32 >( "unicode-marker" ) == 0x71B239F4) ) in implDump()
301 const sal_Int32 OLEPROP_ID_DICTIONARY = 0;
302 const sal_Int32 OLEPROP_ID_CODEPAGE = 1;
358 sal_Int32 nSectCount = dumpDec< sal_Int32 >( "section-count" ); in implDump()
364 for( sal_Int32 nSectIdx = 0; !mxStrm->isEof() && (nSectIdx < nSectCount); ++nSectIdx ) in implDump()
393 typedef ::std::map< sal_Int32, sal_uInt32 > PropertyPosMap; in dumpSection()
404 dumpDec< sal_Int32 >( "size" ); in dumpSection()
405 sal_Int32 nPropCount = dumpDec< sal_Int32 >( "property-count" ); in dumpSection()
411 for( sal_Int32 nPropIdx = 0; !mxStrm->isEof() && (nPropIdx < nPropCount); ++nPropIdx ) in dumpSection()
415 sal_Int32 nPropId = dumpDec< sal_Int32 >( "id", mxPropIds ); in dumpSection()
449 void OlePropertyStreamObject::dumpProperty( sal_Int32 nPropId, sal_uInt32 nStartPos ) in dumpProperty()
485 sal_Int32 nCount = dumpDec< sal_Int32 >( "count" ); in dumpDictionaryProperty()
486 for( sal_Int32 nIdx = 0; !mxStrm->isEof() && (nIdx < nCount); ++nIdx ) in dumpDictionaryProperty()
490 sal_Int32 nId = dumpDec< sal_Int32 >( "id" ); in dumpDictionaryProperty()
499 sal_uInt16 OlePropertyStreamObject::dumpPropertyContents( sal_Int32 nPropId ) in dumpPropertyContents()
513 void OlePropertyStreamObject::dumpPropertyValue( sal_Int32 nPropId, sal_uInt16 nBaseType ) in dumpPropertyValue()
518 case OLEPROP_TYPE_INT32: dumpDec< sal_Int32 >( "value" ); break; in dumpPropertyValue()
523 case OLEPROP_TYPE_STATUS: dumpHex< sal_Int32 >( "status" ); break; in dumpPropertyValue()
542 void OlePropertyStreamObject::dumpPropertyVector( sal_Int32 nPropId, sal_uInt16 nBaseType ) in dumpPropertyVector()
544 sal_Int32 nElemCount = dumpDec< sal_Int32 >( "element-count" ); in dumpPropertyVector()
545 for( sal_Int32 nElemIdx = 0; !mxStrm->isEof() && (nElemIdx < nElemCount); ++nElemIdx ) in dumpPropertyVector()
554 void OlePropertyStreamObject::dumpPropertyArray( sal_Int32 /*nPropId*/, sal_uInt16 /*nBaseType*/ ) in dumpPropertyArray() argument
561 return static_cast< sal_uInt16 >( dumpHex< sal_Int32 >( "type", "OLEPROP-TYPE" ) & 0xFFFF ); in dumpPropertyType()
564 void OlePropertyStreamObject::dumpBlob( sal_Int32 nPropId, const String& rName ) in dumpBlob()
566 sal_Int32 nSize = dumpDec< sal_Int32 >( "data-size" ); in dumpBlob()
579 sal_Int32 nLen = dumpDec< sal_Int32 >( "string-len" ); in dumpString8()
583 OUString OlePropertyStreamObject::dumpCharArray8( const String& rName, sal_Int32 nLen ) in dumpCharArray8()
585 sal_Int32 nNewLen = getLimitedValue< sal_Int32, sal_Int32 >( nLen, 0, 1024 ); in dumpCharArray8()
593 sal_Int32 nLen = dumpDec< sal_Int32 >( "string-len" ); in dumpString16()
597 OUString OlePropertyStreamObject::dumpCharArray16( const String& rName, sal_Int32 nLen ) in dumpCharArray16()
599 sal_Int32 nNewLen = getLimitedValue< sal_Int32, sal_Int32 >( nLen, 0, 1024 ); in dumpCharArray16()
613 void OlePropertyStreamObject::dumpHlinks( sal_Int32 nSize ) in dumpHlinks()
616 sal_Int32 nCount = dumpDec< sal_Int32 >( "property-count" ); in dumpHlinks()
618 …for( sal_Int32 nHlinkIndex = 0, nHlinkCount = nCount / 6; bValid && !mxStrm->isEof() && (nHlinkInd… in dumpHlinks()
649 void OlePropertyStreamObject::writePropertyHeader( sal_Int32 nPropId, sal_uInt32 nStartPos ) in writePropertyHeader()
730 dumpDec< sal_Int32 >( "width", "CONV-HMM-TO-CM" ); in dumpComCtlSize()
731 dumpDec< sal_Int32 >( "height", "CONV-HMM-TO-CM" ); in dumpComCtlSize()
803 dumpDec< sal_Int32 >( "large-change" ); in implDumpProperties()
804 dumpDec< sal_Int32 >( "small-change" ); in implDumpProperties()
805 dumpDec< sal_Int32 >( "min" ); in implDumpProperties()
806 dumpDec< sal_Int32 >( "max" ); in implDumpProperties()
807 dumpDec< sal_Int32 >( "value" ); in implDumpProperties()
837 dumpBool< sal_Int32 >( "vertical" ); in implDumpProperties()
838 dumpDec< sal_Int32 >( "large-change" ); in implDumpProperties()
839 dumpDec< sal_Int32 >( "small-change" ); in implDumpProperties()
840 dumpDec< sal_Int32 >( "min" ); in implDumpProperties()
841 dumpDec< sal_Int32 >( "max" ); in implDumpProperties()
844 dumpDec< sal_Int32 >( "select-start" ); in implDumpProperties()
845 dumpDec< sal_Int32 >( "select-length" ); in implDumpProperties()
846 dumpDec< sal_Int32 >( "tick-style", "COMCTL-SLIDER-TICKSTYLE" ); in implDumpProperties()
847 dumpDec< sal_Int32 >( "tick-frequency" ); in implDumpProperties()
848 dumpDec< sal_Int32 >( "value" ); in implDumpProperties()
850 dumpBool< sal_Int32 >( "tooltip-below" ); in implDumpProperties()
863 dumpDec< sal_Int32 >( "buddy-control" ); in implDumpProperties()
865 dumpDec< sal_Int32 >( "value" ); in implDumpProperties()
867 dumpDec< sal_Int32 >( "increment" ); in implDumpProperties()
868 dumpDec< sal_Int32 >( "max" ); in implDumpProperties()
869 dumpDec< sal_Int32 >( "min" ); in implDumpProperties()
896 sal_Int32 nImageCount = dumpDec< sal_Int32 >( "image-count" ); in implDumpCommonExtra()
898 for( sal_Int32 nImageIndex = 0; (nImageIndex < nImageCount) && !mxStrm->isEof(); ++nImageIndex ) in implDumpCommonExtra()
910 sal_Int32 nImageCount = dumpDec< sal_Int32 >( "image-count" ); in implDumpCommonTrailing()
912 for( sal_Int32 nImageIndex = 0; (nImageIndex < nImageCount) && !mxStrm->isEof(); ++nImageIndex ) in implDumpCommonTrailing()
916 dumpDec< sal_Int32 >( "index" ); in implDumpCommonTrailing()
946 sal_Int32 nTabCount = dumpDec< sal_Int32 >( "tab-count" ); in implDumpCommonExtra()
948 for( sal_Int32 nTabIndex = 0; (nTabIndex < nTabCount) && !mxStrm->isEof(); ++nTabIndex ) in implDumpCommonExtra()
973 dumpDec< sal_Int32 >( "indentation", "CONV-HMM-TO-CM" ); in implDumpProperties()
998 dumpBool< sal_Int32 >( "style-simple-text" ); in implDumpProperties()
1007 sal_Int32 nPanelCount = dumpDec< sal_Int32 >( "panel-count" ); in implDumpCommonExtra()
1009 for( sal_Int32 nPanelIndex = 0; (nPanelIndex < nPanelCount) && !mxStrm->isEof(); ++nPanelIndex ) in implDumpCommonExtra()
1014 dumpDec< sal_Int32 >( "current-width", "CONV-HMM-TO-CM" ); in implDumpCommonExtra()
1015 dumpDec< sal_Int32 >( "minimal-width", "CONV-HMM-TO-CM" ); in implDumpCommonExtra()
1027 sal_Int32 nImageCount = dumpDec< sal_Int32 >( "image-count" ); in implDumpCommonTrailing()
1029 for( sal_Int32 nImageIndex = 0; (nImageIndex < nImageCount) && !mxStrm->isEof(); ++nImageIndex ) in implDumpCommonTrailing()
1033 dumpDec< sal_Int32 >( "panel-index" ); in implDumpCommonTrailing()
1253 alignInput< sal_Int32 >(); in dumpString()
1282 dumpDec< sal_Int32 >( "top", "CONV-HMM-TO-CM" ); in dumpLargeProperties()
1283 dumpDec< sal_Int32 >( "left", "CONV-HMM-TO-CM" ); in dumpLargeProperties()
1290 dumpDec< sal_Int32 >( "width", "CONV-HMM-TO-CM" ); in dumpLargeProperties()
1291 dumpDec< sal_Int32 >( "height", "CONV-HMM-TO-CM" ); in dumpLargeProperties()
1363 dumpDecProperty< sal_Int32 >( 160 ); in implDumpShortProperties()
1364 dumpDecProperty< sal_Int32 >( 0 ); in implDumpShortProperties()
1380 dumpDecProperty< sal_Int32 >( -1, "CONV-HMM-TO-CM" ); in implDumpShortProperties()
1543 dumpDecProperty< sal_Int32 >( 0 ); in implDumpShortProperties()
1544 dumpDecProperty< sal_Int32 >( 32767 ); in implDumpShortProperties()
1545 dumpDecProperty< sal_Int32 >( 0 ); in implDumpShortProperties()
1549 dumpDecProperty< sal_Int32 >( 1 ); in implDumpShortProperties()
1550 dumpDecProperty< sal_Int32 >( 1 ); in implDumpShortProperties()
1571 dumpDecProperty< sal_Int32 >( 0 ); in implDumpShortProperties()
1572 dumpDecProperty< sal_Int32 >( 100 ); in implDumpShortProperties()
1573 dumpDecProperty< sal_Int32 >( 0 ); in implDumpShortProperties()
1576 dumpDecProperty< sal_Int32 >( 1 ); in implDumpShortProperties()
1592 dumpDecProperty< sal_Int32 >( -1 ); in implDumpShortProperties()
1614 mnTabFlagCount = dumpDecProperty< sal_Int32 >( 0 ); in implDumpShortProperties()
1627 for( sal_Int32 nIdx = 0; ensureValid() && (nIdx < mnTabFlagCount); ++nIdx ) in implDumpExtended()
1733 dumpDecProperty< sal_Int32 >( -1 ); in implDumpShortProperties()
1740 dumpDecProperty< sal_Int32 >( -1 ); in implDumpShortProperties()
1768 sal_Int32 nId = dumpDecProperty< sal_Int32 >( 0 ); in implDumpShortProperties()
1769 dumpDecProperty< sal_Int32 >( 0 ); in implDumpShortProperties()
1860 dumpDecProperty< sal_Int32 >( 100, "CONV-PERCENT" ); in implDumpShortProperties()
2002 mnPageCount = dumpDecProperty< sal_Int32 >( 0 ); in implDumpShortProperties()
2003 dumpDecProperty< sal_Int32 >( 0 ); in implDumpShortProperties()
2014 for( sal_Int32 nIdx = 0; ensureValid() && (nIdx < mnPageCount); ++nIdx ) in implDumpExtended()
2015 dumpDec< sal_Int32 >( "#id" ); in implDumpExtended()
2082 sal_Int32 nId = aId.toInt32(); in isFormStorage()
2104 sal_Int32 VbaSharedData::getStreamOffset( const OUString& rStrmName ) const in getStreamOffset()
2205 mnCurrOffset = dumpHex< sal_Int32 >( "stream-offset", "CONV-DEC" ); in implDumpRecordBody()
2236 return dumpCharArray( rName, static_cast< sal_Int32 >( getRecSize() ), mrVbaData.meTextEnc ); in dumpByteString()
2241 return dumpUnicodeArray( rName, static_cast< sal_Int32 >( getRecSize() / 2 ) ); in dumpUniString()
2253 const OUString& rSysFileName, VbaSharedData& rVbaData, sal_Int32 nStrmOffset ) : in VbaModuleStreamObject()