/aoo42x/main/svx/source/svdraw/ |
H A D | svdotxat.cxx | 76 if (bTextFrame && pModel!=NULL && !rR.IsEmpty()) in AdjustTextFrameWidthAndHeight() 89 Rectangle aR0(rR); in AdjustTextFrameWidthAndHeight() 92 Size aSiz(rR.GetSize()); aSiz.Width()--; aSiz.Height()--; in AdjustTextFrameWidthAndHeight() 169 long nWdtGrow=nWdt-(rR.Right()-rR.Left()); in AdjustTextFrameWidthAndHeight() 170 long nHgtGrow=nHgt-(rR.Bottom()-rR.Top()); in AdjustTextFrameWidthAndHeight() 180 rR.Left()-=nWdtGrow2; in AdjustTextFrameWidthAndHeight() 181 rR.Right()=rR.Left()+nWdt; in AdjustTextFrameWidthAndHeight() 190 rR.Top()-=nHgtGrow2; in AdjustTextFrameWidthAndHeight() 191 rR.Bottom()=rR.Top()+nHgt; in AdjustTextFrameWidthAndHeight() 195 Point aD1(rR.TopLeft()); in AdjustTextFrameWidthAndHeight() [all …]
|
H A D | svdmrkv1.cxx | 348 Rectangle& rR=eKind==HDL_GLUE ? aGlue : aPnts; in ImpSetPointsRects() local 349 if (rR.IsEmpty()) { in ImpSetPointsRects() 350 rR=Rectangle(aPt,aPt); in ImpSetPointsRects() 352 if (aPt.X()<rR.Left ()) rR.Left ()=aPt.X(); in ImpSetPointsRects() 353 if (aPt.X()>rR.Right ()) rR.Right ()=aPt.X(); in ImpSetPointsRects() 354 if (aPt.Y()<rR.Top ()) rR.Top ()=aPt.Y(); in ImpSetPointsRects() 355 if (aPt.Y()>rR.Bottom()) rR.Bottom()=aPt.Y(); in ImpSetPointsRects()
|
H A D | svdocirc.cxx | 61 Point GetWinkPnt(const Rectangle& rR, long nWink) in GetWinkPnt() argument 63 Point aCenter(rR.Center()); in GetWinkPnt() 64 long nWdt=rR.Right()-rR.Left(); in GetWinkPnt() 65 long nHgt=rR.Bottom()-rR.Top(); in GetWinkPnt() 963 void Union(Rectangle& rR, const Point& rP) in Union() argument 965 if (rP.X()<rR.Left ()) rR.Left ()=rP.X(); in Union() 966 if (rP.X()>rR.Right ()) rR.Right ()=rP.X(); in Union() 967 if (rP.Y()<rR.Top ()) rR.Top ()=rP.Y(); in Union() 968 if (rP.Y()>rR.Bottom()) rR.Bottom()=rP.Y(); in Union()
|
H A D | svdoashp.cxx | 2619 Rectangle aR0(rR); in AdjustTextFrameWidthAndHeight() 2703 long nWdtGrow = nWdt-(rR.Right()-rR.Left()); in AdjustTextFrameWidthAndHeight() 2704 long nHgtGrow = nHgt-(rR.Bottom()-rR.Top()); in AdjustTextFrameWidthAndHeight() 2715 rR.Right()+=nWdtGrow; in AdjustTextFrameWidthAndHeight() 2717 rR.Left()-=nWdtGrow; in AdjustTextFrameWidthAndHeight() 2721 rR.Left()-=nWdtGrow2; in AdjustTextFrameWidthAndHeight() 2722 rR.Right()=rR.Left()+nWdt; in AdjustTextFrameWidthAndHeight() 2729 rR.Bottom()+=nHgtGrow; in AdjustTextFrameWidthAndHeight() 2731 rR.Top()-=nHgtGrow; in AdjustTextFrameWidthAndHeight() 2735 rR.Top()-=nHgtGrow2; in AdjustTextFrameWidthAndHeight() [all …]
|
/aoo42x/main/sc/source/filter/inc/ |
H A D | xladdress.hxx | 52 inline bool operator==( const XclAddress& rL, const XclAddress& rR ) in operator ==() argument 54 return (rL.mnCol == rR.mnCol) && (rL.mnRow == rR.mnRow); in operator ==() 57 inline bool operator<( const XclAddress& rL, const XclAddress& rR ) in operator <() argument 59 return (rL.mnCol < rR.mnCol) || ((rL.mnCol == rR.mnCol) && (rL.mnRow < rR.mnRow)); in operator <() 102 inline bool operator==( const XclRange& rL, const XclRange& rR ) in operator ==() argument 104 return (rL.maFirst == rR.maFirst) && (rL.maLast == rR.maLast); in operator ==() 107 inline bool operator<( const XclRange& rL, const XclRange& rR ) in operator <() argument 109 return (rL.maFirst < rR.maFirst) || ((rL.maFirst == rR.maFirst) && (rL.maLast < rR.maLast)); in operator <()
|
/aoo42x/main/oox/inc/oox/xls/ |
H A D | addressconverter.hxx | 75 inline bool operator==( const BinAddress& rL, const BinAddress& rR ) in operator ==() argument 77 return (rL.mnCol == rR.mnCol) && (rL.mnRow == rR.mnRow); in operator ==() 80 inline bool operator<( const BinAddress& rL, const BinAddress& rR ) in operator <() argument 82 return (rL.mnCol < rR.mnCol) || ((rL.mnCol == rR.mnCol) && (rL.mnRow < rR.mnRow)); in operator <() 140 inline bool operator==( const BinRange& rL, const BinRange& rR ) in operator ==() argument 142 return (rL.maFirst == rR.maFirst) && (rL.maLast == rR.maLast); in operator ==() 145 inline bool operator<( const BinRange& rL, const BinRange& rR ) in operator <() argument 147 return (rL.maFirst < rR.maFirst) || ((rL.maFirst == rR.maFirst) && (rL.maLast < rR.maLast)); in operator <()
|
/aoo42x/main/sc/source/filter/excel/ |
H A D | excdoc.cxx | 183 RootData& rR = GetOldRoot(); in FillAsHeader() local 234 rR.pTabId = new XclExpChTrTabId( Max( nExcTabCount, nCodenames ) ); in FillAsHeader() 235 Add( rR.pTabId ); in FillAsHeader() 363 rR.pUserBViewList = new XclExpUserBViewList( *rDoc.GetChangeTrack() ); in FillAsHeader() 364 Add( rR.pUserBViewList ); in FillAsHeader() 422 RootData& rR = GetOldRoot(); in FillAsTable() local 535 if( rR.pUserBViewList ) in FillAsTable() 537 …for( const XclExpUserBView* pBView = rR.pUserBViewList->First(); pBView; pBView = rR.pUserBViewLis… in FillAsTable() 550 RootData& rR = GetOldRoot(); in FillAsXmlTable() local 624 if( rR.pUserBViewList ) in FillAsXmlTable() [all …]
|
H A D | xlescher.cxx | 60 bool operator==( const XclObjId& rL, const XclObjId& rR ) in operator ==() argument 62 return (rL.mnScTab == rR.mnScTab) && (rL.mnObjId == rR.mnObjId); in operator ==() 65 bool operator<( const XclObjId& rL, const XclObjId& rR ) in operator <() argument 67 return (rL.mnScTab < rR.mnScTab) || ((rL.mnScTab == rR.mnScTab) && (rL.mnObjId < rR.mnObjId)); in operator <()
|
H A D | excform.cxx | 194 RootData& rR = GetOldRoot(); in Convert() local 685 const ExtName* pExtName = rR.pExtNameBuff->GetNameByIndex( nINT16, nUINT16 ); in Convert() 687 rR.pExtSheetBuff->IsLink( ( sal_uInt16 ) nINT16 ) ) in Convert() 692 rR.pExtSheetBuff->GetLink( ( sal_uInt16 ) nINT16 , aAppl, aExtDoc ); in Convert() 727 if( rR.pExtSheetBuff->GetScTabIndex( nExtSheet, nTabLast ) ) in Convert() 792 if( rR.pExtSheetBuff->GetScTabIndex( nExtSheet, nTabLast ) ) in Convert() 895 RootData& rR = GetOldRoot(); in Convert() local 1190 if( rR.pExtSheetBuff->GetScTabIndex( nExtSheet, nTabLast ) ) in Convert() 1245 if( rR.pExtSheetBuff->GetScTabIndex( nExtSheet, nTabLast ) ) in Convert()
|
/aoo42x/main/svx/inc/svx/ |
H A D | framelink.hxx | 175 bool operator==( const Style& rL, const Style& rR ); 176 SVX_DLLPUBLIC bool operator<( const Style& rL, const Style& rR ); 178 inline bool operator!=( const Style& rL, const Style& rR ) { return !(rL == rR); } in operator !=() argument 179 inline bool operator>( const Style& rL, const Style& rR ) { return rR < rL; } in operator >() argument 180 inline bool operator<=( const Style& rL, const Style& rR ) { return !(rR < rL); } in operator <=() argument 181 inline bool operator>=( const Style& rL, const Style& rR ) { return !(rL < rR); } in operator >=() argument
|
/aoo42x/main/sc/inc/ |
H A D | scmatrix.hxx | 222 void GetDimensions( SCSIZE& rC, SCSIZE& rR) const in GetDimensions() 223 { rC = nColCount; rR = nRowCount; }; in GetDimensions() 237 inline bool ValidColRowReplicated( SCSIZE & rC, SCSIZE & rR ) const in ValidColRowReplicated() 242 rR = 0; in ValidColRowReplicated() 245 else if (nColCount == 1 && rR < nRowCount) in ValidColRowReplicated() 252 rR = 0; in ValidColRowReplicated() 264 inline bool ValidColRowOrReplicated( SCSIZE & rC, SCSIZE & rR ) const in ValidColRowOrReplicated() 266 return ValidColRow( rC, rR) || ValidColRowReplicated( rC, rR); in ValidColRowOrReplicated()
|
H A D | cellsuno.hxx | 232 ScCellRangesBase(ScDocShell* pDocSh, const ScRange& rR); 233 ScCellRangesBase(ScDocShell* pDocSh, const ScRangeList& rR); 252 void InitInsertRange(ScDocShell* pDocSh, const ScRange& rR); 493 ScCellRangesObj(ScDocShell* pDocSh, const ScRangeList& rR); 635 ScCellRangeObj(ScDocShell* pDocSh, const ScRange& rR); 640 CreateRangeFromDoc( ScDocument* pDoc, const ScRange& rR ); 1341 ScCellsObj(ScDocShell* pDocSh, const ScRangeList& rR); 1382 ScCellsEnumeration(ScDocShell* pDocSh, const ScRangeList& rR); 1417 ScCellFormatsObj(ScDocShell* pDocSh, const ScRange& rR); 1466 ScCellFormatsEnumeration(ScDocShell* pDocSh, const ScRange& rR); [all …]
|
/aoo42x/main/sc/source/filter/lotus/ |
H A D | lotform.cxx | 419 rR.SetTabRel( sal_True ); in Convert() 420 rR.nTab = aEingPos.Tab(); in Convert() 421 rR.nRelTab = 0; in Convert() 422 rR.SetFlag3D( sal_False ); in Convert() 425 aCRD.Ref2 = rR; in Convert() 487 nNewId = aPool.Store( rR ); in Convert() 490 nId = rRangeList.GetIndex( rR.nCol, rR.nRow ); in Convert() 494 nNewId = aPool.Store( rR ); in Convert() 518 rR.nCol, rR.nRow, aCRD.Ref2.nCol, aCRD.Ref2.nRow ); in Convert() 553 ReadSRD( rR, nRelBits ); in Convert() [all …]
|
/aoo42x/main/basegfx/inc/basegfx/tools/ |
H A D | rectcliptools.hxx | 53 const Rect& rR ) in getCohenSutherlandClipFlags() argument 56 sal_uInt32 clip = (rP.getX() < rR.getMinX()) << 0; in getCohenSutherlandClipFlags() 57 clip |= (rP.getX() > rR.getMaxX()) << 1; in getCohenSutherlandClipFlags() 58 clip |= (rP.getY() < rR.getMinY()) << 2; in getCohenSutherlandClipFlags() 59 clip |= (rP.getY() > rR.getMaxY()) << 3; in getCohenSutherlandClipFlags()
|
/aoo42x/main/sc/source/ui/view/ |
H A D | selectionstate.cxx | 62 bool operator==( const ScSelectionState& rL, const ScSelectionState& rR ) in operator ==() argument 64 bool bEqual = rL.GetSelectionType() == rR.GetSelectionType(); in operator ==() 68 bEqual &= ( rL.GetEditSelection().IsEqual( rR.GetEditSelection() ) != sal_False ); in operator ==() 71 bEqual &= (rL.GetSheetSelection() == rR.GetSheetSelection()) == sal_True; in operator ==() 74 bEqual &= rL.GetCellCursor() == rR.GetCellCursor(); in operator ==()
|
/aoo42x/main/svx/source/dialog/ |
H A D | framelink.cxx | 1312 bool operator==( const Style& rL, const Style& rR ) in operator ==() argument 1314 return (rL.Prim() == rR.Prim()) && (rL.Dist() == rR.Dist()) && (rL.Secn() == rR.Secn()) && in operator ==() 1315 …(rL.GetColor() == rR.GetColor()) && (rL.GetRefMode() == rR.GetRefMode()) && (rL.Dotted() == rR.Dot… in operator ==() 1318 bool operator<( const Style& rL, const Style& rR ) in operator <() argument 1322 sal_uInt16 nRW = rR.GetWidth(); in operator <() 1326 if( (rL.Secn() == 0) != (rR.Secn() == 0) ) return rL.Secn() == 0; in operator <() 1329 if( (rL.Secn() && rR.Secn()) && (rL.Dist() != rR.Dist()) ) return rL.Dist() > rR.Dist(); in operator <() 1332 if( (nLW == 1) && (rL.Dotted() != rR.Dotted()) ) return rL.Dotted(); in operator <()
|
/aoo42x/main/sc/source/core/tool/ |
H A D | hints.cxx | 60 ScUpdateRefHint::ScUpdateRefHint( UpdateRefMode eMode, const ScRange& rR, in ScUpdateRefHint() argument 63 aRange( rR ), in ScUpdateRefHint() 127 ScAutoStyleHint::ScAutoStyleHint( const ScRange& rR, const String& rSt1, in ScAutoStyleHint() argument 129 aRange( rR ), in ScAutoStyleHint()
|
/aoo42x/main/sc/source/ui/docshell/ |
H A D | autostyl.cxx | 47 ScAutoStyleInitData( const ScRange& rR, const String& rSt1, sal_uLong nT, const String& rSt2 ) : in ScAutoStyleInitData() 48 aRange(rR), aStyle1(rSt1), nTimeout(nT), aStyle2(rSt2) {} in ScAutoStyleInitData() 57 ScAutoStyleData( sal_uLong nT, const ScRange& rR, const String& rT ) : in ScAutoStyleData() 58 nTimeout(nT), aRange(rR), aStyle(rT) {} in ScAutoStyleData()
|
/aoo42x/main/sc/source/ui/inc/ |
H A D | selectionstate.hxx | 69 bool operator==( const ScSelectionState& rL, const ScSelectionState& rR ); 70 …e bool operator!=( const ScSelectionState& rL, const ScSelectionState& rR ) { return !(rL == rR); } in operator !=() argument
|
H A D | hiranges.hxx | 38 ScHighlightEntry( const ScRange& rR, const Color& rC ) : in ScHighlightEntry() 39 aRef(rR), aColor(rC) {} in ScHighlightEntry()
|
H A D | rfindlst.hxx | 40 ScRangeFindData( const ScRange& rR, sal_uInt16 nF, xub_StrLen nS, xub_StrLen nE ) : in ScRangeFindData() 41 aRef(rR), nFlags(nF), nSelStart(nS), nSelEnd(nE) {} in ScRangeFindData()
|
/aoo42x/main/svtools/source/dialogs/ |
H A D | mcvmath.cxx | 293 void ImpPolarToCart( const Fix& rR, const sal_uInt16 Phi, short& rX, short& rY ) in ImpPolarToCart() argument 296 fc.GetReal().MultBig( rR ); in ImpPolarToCart() 298 fc.GetImag().MultBig( rR ); in ImpPolarToCart()
|
/aoo42x/main/svl/source/items/ |
H A D | stylepool.cxx | 310 Iterator( std::map< const SfxItemSet*, Node >& rR, in Iterator() argument 313 : mrRoot( rR ), in Iterator() 314 mpCurrNode( rR.begin() ), in Iterator()
|
/aoo42x/main/svgio/inc/svgio/svgreader/ |
H A D | svgcirclenode.hxx | 67 void setR(const SvgNumber& rR = SvgNumber()) { maR = rR; } in setR() argument
|
H A D | svggradientnode.hxx | 108 void setR(const SvgNumber& rR = SvgNumber()) { maR = rR; } in setR() argument
|