/aoo4110/main/tools/source/generic/ |
H A D | fract.cxx | 152 BigInt nD( nD1 ); in Fraction() local 153 nD *= BigInt( nD2 ); in Fraction() 162 nD += n1; in Fraction() 163 nD /= n2; in Fraction() 166 Reduce( nN, nD ); in Fraction() 170 nDenominator = (long)nD; in Fraction() 302 BigInt nD( nDenominator ); in operator +=() local 305 Reduce( nN, nD ); in operator +=() 361 Reduce( nN, nD ); in operator -=() 669 return nN < nD; in operator <() [all …]
|
H A D | line.cxx | 321 long nD = nDY2 - nDX; in Enum() local 329 if( nD < 0L ) in Enum() 330 nD += nDY2; in Enum() 332 nD += nDYX, nY += nYInc; in Enum() 339 long nD = nDY2 - nDY; in Enum() local 347 if( nD < 0L ) in Enum() 348 nD += nDY2; in Enum() 350 nD += nDYX, nX += nXInc; in Enum()
|
/aoo4110/main/vcl/source/gdi/ |
H A D | bmpacc3.cxx | 205 long nD = nDY2 - nDX; in DrawLine() local 212 if ( nD < 0 ) in DrawLine() 213 nD += nDY2; in DrawLine() 216 nD += nDYX; in DrawLine() 244 long nD = nDY2 - nDY; in DrawLine() local 251 if ( nD < 0 ) in DrawLine() 252 nD += nDY2; in DrawLine() 255 nD += nDYX; in DrawLine()
|
H A D | regionband.cxx | 502 long nD = nDY2 - nDX; in InsertLine() local 508 if ( nD < 0L ) in InsertLine() 509 nD += nDY2; in InsertLine() 511 nD += nDYX, nY += nYInc; in InsertLine() 518 long nD = nDY2 - nDY; in InsertLine() local 524 if ( nD < 0L ) in InsertLine() 525 nD += nDY2; in InsertLine() 527 nD += nDYX, nX += nXInc; in InsertLine()
|
H A D | outdev2.cxx | 1943 const sal_uLong nD = nVCLDitherLut[ nModY | ( nOutX & 0x0FL ) ]; in ImplBlendWithAlpha() local 1954 … aIndex.SetIndex( (sal_uInt8) ( nVCLRLut[ ( nVCLLut[ aDstCol.GetRed() ] + nD ) >> 16UL ] + in ImplBlendWithAlpha() 1955 … nVCLGLut[ ( nVCLLut[ aDstCol.GetGreen() ] + nD ) >> 16UL ] + in ImplBlendWithAlpha() 1956 … nVCLBLut[ ( nVCLLut[ aDstCol.GetBlue() ] + nD ) >> 16UL ] ) ); in ImplBlendWithAlpha() 1965 … aIndex.SetIndex( (sal_uInt8) ( nVCLRLut[ ( nVCLLut[ nSrcAlpha ] + nD ) >> 16UL ] + in ImplBlendWithAlpha() 1966 nVCLGLut[ ( nVCLLut[ nSrcAlpha ] + nD ) >> 16UL ] + in ImplBlendWithAlpha() 1967 nVCLBLut[ ( nVCLLut[ nSrcAlpha ] + nD ) >> 16UL ] ) ); in ImplBlendWithAlpha() 2060 const sal_uLong nD = nVCLDitherLut[ nModY | ( nOutX & 0x0FL ) ]; in ImplBlend() local 2064 … aIndex.SetIndex( (sal_uInt8) ( nVCLRLut[ ( nVCLLut[ aDstCol.GetRed() ] + nD ) >> 16UL ] + in ImplBlend() 2065 … nVCLGLut[ ( nVCLLut[ aDstCol.GetGreen() ] + nD ) >> 16UL ] + in ImplBlend() [all …]
|
H A D | bitmap3.cxx | 2579 const sal_uLong nD = nVCLDitherLut[ nModY + ( nX & 0x0FUL ) ]; in ImplDitherMatrix() local 2580 const sal_uLong nR = ( nVCLLut[ aCol.GetRed() ] + nD ) >> 16UL; in ImplDitherMatrix() 2581 const sal_uLong nG = ( nVCLLut[ aCol.GetGreen() ] + nD ) >> 16UL; in ImplDitherMatrix() 2582 const sal_uLong nB = ( nVCLLut[ aCol.GetBlue() ] + nD ) >> 16UL; in ImplDitherMatrix() 2596 const sal_uLong nD = nVCLDitherLut[ nModY + ( nX & 0x0FUL ) ]; in ImplDitherMatrix() local 2597 const sal_uLong nR = ( nVCLLut[ aCol.GetRed() ] + nD ) >> 16UL; in ImplDitherMatrix() 2598 const sal_uLong nG = ( nVCLLut[ aCol.GetGreen() ] + nD ) >> 16UL; in ImplDitherMatrix() 2599 const sal_uLong nB = ( nVCLLut[ aCol.GetBlue() ] + nD ) >> 16UL; in ImplDitherMatrix()
|
/aoo4110/main/svx/inc/svx/ |
H A D | framelink.hxx | 113 inline explicit Style( sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS ) : in Style() argument 115 { Set( nP, nD, nS ); } in Style() 117 inline explicit Style( const Color& rColor, sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS ) : in Style() argument 119 { Set( rColor, nP, nD, nS ); } in Style() 141 void Set( sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS ); 143 void Set( const Color& rColor, sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS );
|
/aoo4110/main/filter/source/graphicfilter/ipict/ |
H A D | ipict.cxx | 915 *pPict >> nD; in ReadPixMapEtc() 916 nRed = (sal_uInt8)( nD >> 7 ); in ReadPixMapEtc() 917 nGreen = (sal_uInt8)( nD >> 2 ); in ReadPixMapEtc() 918 nBlue = (sal_uInt8)( nD << 3 ); in ReadPixMapEtc() 947 *pPict >> nD; in ReadPixMapEtc() 948 nRed = (sal_uInt8)( nD >> 7 ); in ReadPixMapEtc() 950 nBlue = (sal_uInt8)( nD << 3 ); in ReadPixMapEtc() 959 *pPict >> nD; in ReadPixMapEtc() 960 nRed = (sal_uInt8)( nD >> 7 ); in ReadPixMapEtc() 961 nGreen = (sal_uInt8)( nD >> 2 ); in ReadPixMapEtc() [all …]
|
/aoo4110/main/vcl/unx/generic/printergfx/ |
H A D | text_gfx.cxx | 517 double nD = nTextScale * aInfo.m_nDescend / 1000.0; in drawVerticalizedText() local 520 nD *= fStretch; in drawVerticalizedText() 526 aPos.X() += (sal_Int32)(+nA * fCos + nD * fSin); in drawVerticalizedText() 527 aPos.Y() += (sal_Int32)(-nA * fSin + nD * fCos); in drawVerticalizedText() 530 aPos.X() += (sal_Int32)(+nA * fSin + nD * fCos); in drawVerticalizedText() 531 aPos.Y() += (sal_Int32)(-(nTextScale*fStretch - nD) * fCos); in drawVerticalizedText()
|
/aoo4110/main/sc/source/core/data/ |
H A D | dptabsrc.cxx | 1381 ScDPDimension::ScDPDimension( ScDPSource* pSrc, long nD ) : in ScDPDimension() argument 1383 nDim( nD ), in ScDPDimension() 1786 ScDPHierarchies::ScDPHierarchies( ScDPSource* pSrc, long nD ) : in SC_IMPL_DUMMY_PROPERTY_LISTENER() 1788 nDim( nD ), in SC_IMPL_DUMMY_PROPERTY_LISTENER() 1902 ScDPHierarchy::ScDPHierarchy( ScDPSource* pSrc, long nD, long nH ) : in ScDPHierarchy() argument 1904 nDim( nD ), in ScDPHierarchy() 1963 ScDPLevels::ScDPLevels( ScDPSource* pSrc, long nD, long nH ) : in ScDPLevels() argument 1965 nDim( nD ), in ScDPLevels() 2116 nDim( nD ), in ScDPLevel() 2412 nDim( nD ), in SC_IMPL_DUMMY_PROPERTY_LISTENER() [all …]
|
/aoo4110/main/sc/source/ui/unoobj/ |
H A D | optuno.cxx | 175 sal_uInt16 nD, nM, nY; in getPropertyValue() local 176 rOptions.GetDate( nD, nM, nY ); in getPropertyValue() 177 util::Date aDate( nD, nM, nY ); in getPropertyValue()
|
/aoo4110/main/sc/inc/ |
H A D | dptabsrc.hxx | 366 ScDPDimension( ScDPSource* pSrc, long nD ); 474 ScDPHierarchies( ScDPSource* pSrc, long nD ); 516 ScDPHierarchy( ScDPSource* pSrc, long nD, long nH ); 551 ScDPLevels( ScDPSource* pSrc, long nD, long nH ); 606 ScDPLevel( ScDPSource* pSrc, long nD, long nH, long nL ); 722 ScDPMembers( ScDPSource* pSrc, long nD, long nH, long nL ); 787 ScDPMember( ScDPSource* pSrc, long nD, long nH, long nL,
|
H A D | docoptio.hxx | 73 void SetDate (sal_uInt16 nD, sal_uInt16 nM, sal_uInt16 nY) in SetDate() argument 74 { nDay = nD; nMonth = nM; nYear = nY; } in SetDate()
|
/aoo4110/main/sc/source/core/tool/ |
H A D | refupdat.cxx | 202 sal_Bool IsExpand( R n1, R n2, U nStart, S nD ) in IsExpand() argument 205 nD > 0 // Insert in IsExpand() 208 (nStart <= n1 && n1 < nStart + nD) // n1 innerhalb des Insert in IsExpand() 215 void Expand( R& n1, R& n2, U nStart, S nD ) in Expand() argument 220 n2 = sal::static_int_cast<R>( n2 + nD ); in Expand() 224 n1 = sal::static_int_cast<R>( n1 - nD ); in Expand()
|
/aoo4110/main/sc/source/filter/inc/ |
H A D | tool.h | 125 void SetDefaultFormat( sal_uInt8 nD = 0xFF ) in SetDefaultFormat() argument 127 nDefaultFormat = nD; in SetDefaultFormat()
|
/aoo4110/main/svx/source/dialog/ |
H A D | framelink.cxx | 1207 void Style::Set( sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS ) in Set() argument 1217 mnDist = (nP && nS) ? nD : 0; in Set() 1218 mnSecn = (nP && nD) ? nS : 0; in Set() 1221 void Style::Set( const Color& rColor, sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS ) in Set() argument 1224 Set( nP, nD, nS ); in Set()
|
/aoo4110/main/editeng/inc/editeng/ |
H A D | editdata.hxx | 311 MoveParagraphsInfo( sal_uInt16 nS, sal_uInt16 nE, sal_uInt16 nD ) in MoveParagraphsInfo() 312 { nStartPara = nS; nEndPara = nE; nDestPara = nD; } in MoveParagraphsInfo()
|
/aoo4110/main/sw/source/ui/chrdlg/ |
H A D | drpcps.cxx | 136 inline void SetDistance( sal_uInt16 nD ); 154 inline void SwDropCapsPict::SetDistance( sal_uInt16 nD ) in SetDistance() argument 156 mnDistance = nD; in SetDistance()
|
/aoo4110/main/sc/source/filter/xml/ |
H A D | XMLChangeTrackingImportHelper.cxx | 156 nD(0) in ScMyDelAction() 407 static_cast<ScMyDelAction*>(pCurrentAction)->nD = nMultiSpannedSlaveCount; in GetMultiSpannedRange() 501 pAction->aBigRange, aUser, aDateTime, sComment, pAction->nActionType, pAction->nD, pTrack); in CreateDeleteAction()
|
/aoo4110/main/sw/source/core/text/ |
H A D | txtfrm.cxx | 725 inline void SwTxtFrm::InvalidateRange(const SwCharRange &aRange, const long nD) in InvalidateRange() argument 728 _InvalidateRange( aRange, nD ); in InvalidateRange() 735 void SwTxtFrm::_InvalidateRange( const SwCharRange &aRange, const long nD) in _InvalidateRange() argument 746 if( 0 != nD ) in _InvalidateRange() 752 *(pPara->GetDelta()) += nD; in _InvalidateRange()
|
/aoo4110/main/sc/source/filter/excel/ |
H A D | xltools.cxx | 721 sal_uInt8 nR, nG, nB, nD; in operator >>() local 722 rStrm >> nR >> nG >> nB >> nD; in operator >>()
|
/aoo4110/main/odk/examples/DevelopersGuide/Components/Thumbs/org/openoffice/test/ |
H A D | Makefile | 56 …$(JAVAMAKER) -BUCR -nD $(GENTYPELIST) -O$(OUT_COMP_CLASS) $(COMP_RDB) -X$(URE_TYPES) -X$(OFFICE_TY…
|
/aoo4110/main/testtools/source/bridgetest/idl/ |
H A D | makefile.mk | 38 $(JAVAMAKER) -O$(CLASSDIR) -BUCR -nD -X$(SOLARBINDIR)/types.rdb $<
|
/aoo4110/main/solenv/inc/ |
H A D | javaunittest.mk | 93 $(JAVAMAKER) -O$(CLASSDIR) -BUCR -nD $< -X$(SOLARBINDIR)/types.rdb
|
/aoo4110/main/smoketestdoc/com/sun/star/comp/smoketest/ |
H A D | makefile.mk | 77 $(COMMAND_ECHO)$(JAVAMAKER) -O$(CLASSDIR) -BUCR -nD -X$(SOLARBINDIR)/types.rdb $<
|