Lines Matching refs:sal_uLong

98 	sal_uLong*			pMinR;
99 sal_uLong* pMaxR;
100 sal_uLong* pMinG;
101 sal_uLong* pMaxG;
102 sal_uLong* pMinB;
103 sal_uLong* pMaxB;
105 sal_uLong nCount;
112 sal_uLong nCount;
113 const sal_uLong* pTols;
124 sal_uLong nActionPos;
126 ImpLabel( const String& rLabelName, sal_uLong _nActionPos ) : in ImpLabel()
144 ImpLabel* ImplRemove( sal_uLong nPos ) { return (ImpLabel*) Remove( nPos ); } in ImplRemove()
148 ImpLabel* ImplGetLabel( sal_uLong nPos ) const { return (ImpLabel*) GetObject( nPos ); } in ImplGetLabel()
149 sal_uLong ImplGetLabelPos( const String& rLabelName );
150 sal_uLong ImplCount() const { return Count(); } in ImplCount()
172 sal_uLong ImpLabelList::ImplGetLabelPos( const String& rLabelName ) in ImplGetLabelPos()
174 sal_uLong nLabelPos = METAFILE_LABEL_NOTFOUND; in ImplGetLabelPos()
286 const sal_uLong nObjCount = Count(); in operator ==()
297 for( sal_uLong n = 0UL; n < nObjCount; n++ ) in operator ==()
314 const sal_uLong nObjCount = Count(); in IsEqual()
325 for( sal_uLong n = 0UL; n < nObjCount; n++ ) in IsEqual()
411 void GDIMetaFile::Play( GDIMetaFile& rMtf, sal_uLong nPos ) in Play()
416 const sal_uLong nObjCount = Count(); in Play()
421 for( sal_uLong nCurPos = GetCurPos(); nCurPos < nPos; nCurPos++ ) in Play()
436 void GDIMetaFile::Play( OutputDevice* pOut, sal_uLong nPos ) in Play()
441 const sal_uLong nObjCount = Count(); in Play()
442sal_uLong i = 0, nSyncCount = ( pOut->GetOutDevType() == OUTDEV_WINDOW ) ? 0x000000ff : 0xffffff… in Play()
455 for( sal_uLong nCurPos = GetCurPos(); nCurPos < nPos; nCurPos++ ) in Play()
476 const Size& rSize, sal_uLong nPos ) in Play()
589 void GDIMetaFile::Wind( sal_uLong nActionPos ) in Wind()
626 void GDIMetaFile::AddAction( MetaAction* pAction, sal_uLong nPos ) in AddAction()
640 void GDIMetaFile::RemoveAction( sal_uLong nPos ) in RemoveAction()
650 MetaAction* GDIMetaFile::CopyAction( sal_uLong nPos ) const in CopyAction()
657 sal_uLong GDIMetaFile::GetActionPos( const String& rLabel ) in GetActionPos()
671 sal_Bool GDIMetaFile::InsertLabel( const String& rLabel, sal_uLong nActionPos ) in InsertLabel()
693 const sal_uLong nLabelPos = pLabelList->ImplGetLabelPos( rLabel ); in RemoveLabel()
706 const sal_uLong nLabelPos = pLabelList->ImplGetLabelPos( rLabel ); in RenameLabel()
715 sal_uLong GDIMetaFile::GetLabelCount() const in GetLabelCount()
722 String GDIMetaFile::GetLabel( sal_uLong nLabel ) in GetLabel()
775 sal_Bool GDIMetaFile::Mirror( sal_uLong nMirrorFlags ) in Mirror()
1520 const sal_uLong nActionCount(GetActionCount()); in GetBoundRect()
1522 for(sal_uLong a(0); a < nActionCount; a++) in GetBoundRect()
2010 const sal_uLong nR = rColor.GetRed(), nG = rColor.GetGreen(), nB = rColor.GetBlue(); in ImplColReplaceFnc()
2012 for( sal_uLong i = 0; i < ( (const ImplColReplaceParam*) pColParam )->nCount; i++ ) in ImplColReplaceFnc()
2401 void GDIMetaFile::ReplaceColors( const Color& rSearchColor, const Color& rReplaceColor, sal_uLong n… in ReplaceColors()
2408 …s( const Color* pSearchColors, const Color* pReplaceColors, sal_uLong nColorCount, sal_uLong* pTol… in ReplaceColors()
2413 aColParam.pMinR = new sal_uLong[ nColorCount ]; in ReplaceColors()
2414 aColParam.pMaxR = new sal_uLong[ nColorCount ]; in ReplaceColors()
2415 aColParam.pMinG = new sal_uLong[ nColorCount ]; in ReplaceColors()
2416 aColParam.pMaxG = new sal_uLong[ nColorCount ]; in ReplaceColors()
2417 aColParam.pMinB = new sal_uLong[ nColorCount ]; in ReplaceColors()
2418 aColParam.pMaxB = new sal_uLong[ nColorCount ]; in ReplaceColors()
2420 for( sal_uLong i = 0; i < nColorCount; i++ ) in ReplaceColors()
2426 aColParam.pMinR[ i ] = (sal_uLong) Max( nVal - nTol, 0L ); in ReplaceColors()
2427 aColParam.pMaxR[ i ] = (sal_uLong) Min( nVal + nTol, 255L ); in ReplaceColors()
2430 aColParam.pMinG[ i ] = (sal_uLong) Max( nVal - nTol, 0L ); in ReplaceColors()
2431 aColParam.pMaxG[ i ] = (sal_uLong) Min( nVal + nTol, 255L ); in ReplaceColors()
2434 aColParam.pMinB[ i ] = (sal_uLong) Max( nVal - nTol, 0L ); in ReplaceColors()
2435 aColParam.pMaxB[ i ] = (sal_uLong) Min( nVal + nTol, 255L ); in ReplaceColors()
2475 sal_uLong GDIMetaFile::GetChecksum() const in GetChecksum()
2482 sal_uLong nCrc = 0; in GetChecksum()
2486 for( sal_uLong i = 0, nObjCount = GetActionCount(); i < nObjCount; i++ ) in GetChecksum()
2824 sal_uLong GDIMetaFile::GetSizeBytes() const in GetSizeBytes()
2826 sal_uLong nSizeBytes = 0; in GetSizeBytes()
2828 for( sal_uLong i = 0, nObjCount = GetActionCount(); i < nObjCount; ++i ) in GetSizeBytes()
2887 sal_uLong nStmPos = rIStm.Tell(); in operator >>()