Home
last modified time | relevance | path

Searched refs:aRef (Results 1 – 25 of 125) sorted by relevance

12345

/AOO41X/main/sc/source/core/tool/
H A Dcompiler.cxx879 ScComplexRefData aRef( rRef ); in MakeRefStrImpl() local
885 aRef.Ref1.CalcAbsIfRel( rComp.GetPos() ); in MakeRefStrImpl()
887 aRef.Ref2.CalcAbsIfRel( rComp.GetPos() ); in MakeRefStrImpl()
888 if( aRef.Ref1.IsFlag3D() ) in MakeRefStrImpl()
890 if (aRef.Ref1.IsTabDeleted()) in MakeRefStrImpl()
892 if (!aRef.Ref1.IsTabRel()) in MakeRefStrImpl()
900 String aRefStr( MakeTabStr( rComp, aRef.Ref1.nTab, aDoc ) ); in MakeRefStrImpl()
902 if (!aRef.Ref1.IsTabRel()) rBuffer.append(sal_Unicode('$')); in MakeRefStrImpl()
908 if (!aRef.Ref1.IsColRel()) in MakeRefStrImpl()
910 if ( aRef.Ref1.IsColDeleted() ) in MakeRefStrImpl()
[all …]
H A Drefdata.cxx318 ScSingleRefData aRef = rRef; in Extend() local
319 aRef.CalcAbsIfRel( rPos); in Extend()
322 if (aRef.nCol < Ref1.nCol || aRef.nRow < Ref1.nRow || aRef.nTab < Ref1.nTab) in Extend()
324 lcl_adjustInOrder( Ref1, aRef, true); in Extend()
325 aRef = rRef; in Extend()
326 aRef.CalcAbsIfRel( rPos); in Extend()
328 if (aRef.nCol > Ref2.nCol || aRef.nRow > Ref2.nRow || aRef.nTab > Ref2.nTab) in Extend()
332 lcl_adjustInOrder( aRef, Ref2, false); in Extend()
335 aRef = rRef; in Extend()
336 aRef.CalcAbsIfRel( rPos); in Extend()
[all …]
H A Ddetfunc.cxx858 ScRange aRef; in InsertPredLevel() local
859 while ( aIter.GetNextRef( aRef ) ) in InsertPredLevel()
861 if (DrawEntry( nCol, nRow, aRef, rData )) in InsertPredLevel()
872 sal_Bool bArea = (aRef.aStart != aRef.aEnd); in InsertPredLevel()
874 nSubResult = InsertPredLevelArea( aRef, rData, nLevel+1 ); in InsertPredLevel()
876 nSubResult = InsertPredLevel( aRef.aStart.Col(), aRef.aStart.Row(), in InsertPredLevel()
957 ScRange aRef; in FindPredLevel() local
958 while ( aIter.GetNextRef( aRef) ) in FindPredLevel()
960 sal_Bool bArea = ( aRef.aStart != aRef.aEnd ); in FindPredLevel()
966 DeleteBox( aRef.aStart.Col(), aRef.aStart.Row(), aRef.aEnd.Col(), aRef.aEnd.Row() ); in FindPredLevel()
[all …]
H A Dtoken.cxx204 aRef.Ref1 = in SetSingleReference()
205 aRef.Ref2 = rRef; in SetSingleReference()
213 aRef = rRef; in SetDoubleReference()
240 extref.aRef.Ref1 = in SetExternalSingleRef()
241 extref.aRef.Ref2 = rRef; in SetExternalSingleRef()
255 extref.aRef = rRef; in SetExternalDoubleRef()
364 case svDoubleRef: n += sizeof(aRef); break; in Clone()
405 return new ScSingleRefToken( aRef.Ref1 ); in CreateToken()
407 return new ScSingleRefToken( aRef.Ref1, eOp ); in CreateToken()
410 return new ScDoubleRefToken( aRef ); in CreateToken()
[all …]
/AOO41X/main/oox/source/xls/
H A Dformulaparser.cxx1689 BinSingleRef2d aRef; in importRefToken() local
1690 aRef.readBiff12Data( rStrm, bRelativeAsOffset ); in importRefToken()
1691 return pushReferenceOperand( aRef, bDeleted, bRelativeAsOffset ); in importRefToken()
1696 BinComplexRef2d aRef; in importAreaToken() local
1697 aRef.readBiff12Data( rStrm, bRelativeAsOffset ); in importAreaToken()
1698 return pushReferenceOperand( aRef, bDeleted, bRelativeAsOffset ); in importAreaToken()
1704 BinSingleRef2d aRef; in importRef3dToken() local
1705 aRef.readBiff12Data( rStrm, bRelativeAsOffset ); in importRef3dToken()
1706 return pushReferenceOperand( aSheetRange, aRef, bDeleted, bRelativeAsOffset ); in importRef3dToken()
1712 BinComplexRef2d aRef; in importArea3dToken() local
[all …]
/AOO41X/main/idl/inc/
H A Dbasobj.hxx207 SvMetaReferenceRef aRef; member in SvMetaReference
214 return ( !aRef.Is() in GetName()
217 : aRef->GetName(); in GetName()
222 return ( !aRef.Is() in GetHelpText()
225 : aRef->GetHelpText(); in GetHelpText()
230 return ( !aRef.Is() in GetConfigName()
233 : aRef->GetConfigName(); in GetConfigName()
238 return ( !aRef.Is() in GetDescription()
241 : aRef->GetDescription(); in GetDescription()
243 SvMetaReference * GetRef() const { return aRef; } in GetRef()
[all …]
/AOO41X/main/sc/source/ui/miscdlgs/
H A Danyrefdg.cxx228 ScComplexRefData aRef( pToken->GetDoubleRef() ); in ShowFormulaReference() local
229 aRef.CalcAbsIfRel( aPos ); in ShowFormulaReference()
230 aRange.aStart.Set( aRef.Ref1.nCol, aRef.Ref1.nRow, aRef.Ref1.nTab ); in ShowFormulaReference()
231 aRange.aEnd.Set( aRef.Ref2.nCol, aRef.Ref2.nRow, aRef.Ref2.nTab ); in ShowFormulaReference()
235 ScSingleRefData aRef( pToken->GetSingleRef() ); in ShowFormulaReference() local
236 aRef.CalcAbsIfRel( aPos ); in ShowFormulaReference()
237 aRange.aStart.Set( aRef.nCol, aRef.nRow, aRef.nTab ); in ShowFormulaReference()
H A Dacredlin.cxx360 ScRange aRef=pScChangeAction->GetBigRange().MakeRange(); in IsValidAction() local
398 if(pRangeEntry->Intersects(aRef)) break; in IsValidAction()
428 ScRange aRef=pScChangeAction->GetBigRange().MakeRange(); in InsertChangeAction() local
444 pNewData->nRow = aRef.aStart.Row(); in InsertChangeAction()
445 pNewData->nCol = aRef.aStart.Col(); in InsertChangeAction()
446 pNewData->nTable= aRef.aStart.Tab(); in InsertChangeAction()
524 if(pRangeEntry->Intersects(aRef)) break; in InsertChangeAction()
582 ScRange aRef=pScChangeAction->GetBigRange().MakeRange(); in InsertFilteredAction() local
594 if(pRangeEntry->Intersects(aRef)) break; in InsertFilteredAction()
626 pNewData->nRow = aRef.aStart.Row(); in InsertFilteredAction()
[all …]
/AOO41X/main/sc/source/ui/unoobj/
H A Dfuncuno.cxx303 static uno::Reference<beans::XPropertySetInfo> aRef( in getPropertySetInfo() local
305 return aRef; in getPropertySetInfo()
393 ScComplexRefData aRef; in lcl_AddRef() local
394 aRef.InitFlags(); in lcl_AddRef()
395 aRef.Ref1.nTab = 0; in lcl_AddRef()
396 aRef.Ref2.nTab = 0; in lcl_AddRef()
397 aRef.Ref1.nCol = 0; in lcl_AddRef()
398 aRef.Ref1.nRow = (SCROW) nStartRow; in lcl_AddRef()
399 aRef.Ref2.nCol = (SCCOL) (nColCount - 1); in lcl_AddRef()
400 aRef.Ref2.nRow = (SCROW) (nStartRow + nRowCount - 1); in lcl_AddRef()
[all …]
H A Daddruno.cxx120 … static uno::Reference<beans::XPropertySetInfo> aRef(new SfxItemPropertySetInfo( aPropertyMap )); in getPropertySetInfo() local
121 return aRef; in getPropertySetInfo()
134 … static uno::Reference<beans::XPropertySetInfo> aRef(new SfxItemPropertySetInfo( aPropertyMap )); in getPropertySetInfo() local
135 return aRef; in getPropertySetInfo()
/AOO41X/main/sc/source/core/data/
H A Dtable2.cxx576 ScSingleRefData aRef; in TransposeClip() local
577 aRef.nCol = nCol; in TransposeClip()
578 aRef.nRow = nRow; in TransposeClip()
579 aRef.nTab = nTab; in TransposeClip()
580 aRef.InitFlags(); // -> all absolute in TransposeClip()
581 aRef.SetFlag3D(sal_True); in TransposeClip()
582 aRef.CalcRelFromAbs( aDestPos ); in TransposeClip()
584 aArr.AddSingleReference( aRef ); in TransposeClip()
3066 ScRange aRef; in DoAutoOutline() local
3094 … if (((ScFormulaCell*)pCell)->HasRefListExpressibleAsOneReference( aRef )) in DoAutoOutline()
[all …]
H A Ddocumen4.cxx236 ScRefAddress aRef; in InsertTableOp() local
244 aRef.Set( rParam.aRefFormulaCell.GetAddress(), sal_True, sal_False, sal_False ); in InsertTableOp()
245 aForString += aRef.GetRefString(this, nTab1); in InsertTableOp()
249 aRef.Set( nCol1, nRow1, nTab1, sal_False, sal_True, sal_True ); in InsertTableOp()
250 aForString += aRef.GetRefString(this, nTab1); in InsertTableOp()
257 aRef.Set( rParam.aRefFormulaCell.GetAddress(), sal_False, sal_True, sal_False ); in InsertTableOp()
258 aForString += aRef.GetRefString(this, nTab1); in InsertTableOp()
262 aRef.Set( nCol1, nRow1, nTab1, sal_True, sal_False, sal_True ); in InsertTableOp()
263 aForString += aRef.GetRefString(this, nTab1); in InsertTableOp()
274 aRef.Set( nCol1, nRow1 + 1, nTab1, sal_False, sal_True, sal_True ); in InsertTableOp()
[all …]
H A Dcolumn3.cxx646 ScSingleRefData aRef; in CreateRefCell() local
647 aRef.nCol = nCol; in CreateRefCell()
648 aRef.nRow = pItems[nIndex].nRow; in CreateRefCell()
649 aRef.nTab = nTab; in CreateRefCell()
650 aRef.InitFlags(); // -> alles absolut in CreateRefCell()
651 aRef.SetFlag3D(sal_True); in CreateRefCell()
656 aRef.CalcRelFromAbs( rDestPos ); in CreateRefCell()
659 aArr.AddSingleReference( aRef ); in CreateRefCell()
722 ScSingleRefData aRef; in CopyFromClip() local
723 aRef.nCol = rColumn.nCol; in CopyFromClip()
[all …]
/AOO41X/main/svx/source/svdraw/
H A Dsvddrgmt.cxx1116 Point aRef(pH->GetPos()); in MoveSdrDrag() local
1117 long nWink=NormAngle360(GetAngle(aPnt-aRef)); in MoveSdrDrag()
1126 RotatePoint(aPnt,aRef,nSin,nCos); in MoveSdrDrag()
1131 if (nNeuWink==0 || nNeuWink==18000) aPnt.Y()=aRef.Y(); in MoveSdrDrag()
1132 if (nNeuWink==9000 || nNeuWink==27000) aPnt.X()=aRef.X(); in MoveSdrDrag()
1136 OrthoDistance8(aRef,aPnt,true); in MoveSdrDrag()
1814 Point aRef(DragStat().GetRef1()); in TakeSdrDragComment() local
1815 sal_Int32 nXDiv(aStart.X() - aRef.X()); in TakeSdrDragComment()
1820 sal_Int32 nYDiv(aStart.Y() - aRef.Y()); in TakeSdrDragComment()
1919 Point aRef(DragStat().GetRef1()); in MoveSdrDrag() local
[all …]
/AOO41X/main/starmath/source/
H A Drect.cxx553 Point aRef; in OrientedDist() local
557 aRef.X() = rPoint.X() >= aIC.X() ? GetItalicRight() : GetItalicLeft(); in OrientedDist()
558 aRef.Y() = rPoint.Y() >= aIC.Y() ? GetBottom() : GetTop(); in OrientedDist()
564 aRef.X() = GetItalicRight(); in OrientedDist()
566 aRef.X() = GetItalicLeft(); in OrientedDist()
568 aRef.X() = rPoint.X(); in OrientedDist()
571 aRef.Y() = GetBottom(); in OrientedDist()
573 aRef.Y() = GetTop(); in OrientedDist()
575 aRef.Y() = rPoint.Y(); in OrientedDist()
579 Point aDist (aRef - rPoint); in OrientedDist()
/AOO41X/main/vcl/source/gdi/
H A Doutdev4.cxx1227 Point aRef; in ImplCalcHatchValues() local
1234 aRef = ( !IsRefPoint() ? rRect.TopLeft() : GetRefPoint() ); in ImplCalcHatchValues()
1243 if( aRef.Y() <= rRect.Top() ) in ImplCalcHatchValues()
1244 nOffset = ( ( rRect.Top() - aRef.Y() ) % nDist ); in ImplCalcHatchValues()
1246 nOffset = ( nDist - ( ( aRef.Y() - rRect.Top() ) % nDist ) ); in ImplCalcHatchValues()
1258 if( aRef.X() <= rRect.Left() ) in ImplCalcHatchValues()
1259 nOffset = ( rRect.Left() - aRef.X() ) % nDist; in ImplCalcHatchValues()
1261 nOffset = nDist - ( ( aRef.X() - rRect.Left() ) % nDist ); in ImplCalcHatchValues()
1280 nPY = FRound( aRef.Y() - ( ( rPt1.X() - aRef.X() ) * fTan ) ); in ImplCalcHatchValues()
1287 nPY = FRound( aRef.Y() + ( ( rPt1.X() - aRef.X() ) * fTan ) ); in ImplCalcHatchValues()
[all …]
/AOO41X/main/sfx2/inc/sfx2/
H A Dfcontnr.hxx52 SvRefBaseRef aRef; member in SfxRefItem
57 { return ((SfxRefItem&)rL).aRef == aRef; } in operator ==()
59 { aRef = rValue; } in SfxRefItem()
60 const SvRefBaseRef& GetValue() const { return aRef; } in GetValue()
/AOO41X/main/sc/source/ui/docshell/
H A Dtablink.cxx220 SfxObjectShellLock aRef = pSrcShell; in Refresh() local
405 aRef->DoClose(); in Refresh()
554 aRef = pDocShell; in ScDocumentLoader()
580 if ( aRef.Is() ) in ~ScDocumentLoader()
581 aRef->DoClose(); in ~ScDocumentLoader()
588 if ( aRef.Is() ) in ReleaseDocRef()
595 aRef.Clear(); in ReleaseDocRef()
/AOO41X/main/sc/source/ui/dbgui/
H A Dpvfundlg.cxx241 DataPilotFieldReference aRef; in GetFieldRef() local
243 aRef.ReferenceType = maLbTypeWrp.GetControlValue(); in GetFieldRef()
244 aRef.ReferenceField = maLbBaseField.GetSelectEntry(); in GetFieldRef()
250 aRef.ReferenceItemType = DataPilotFieldReferenceItemType::PREVIOUS; in GetFieldRef()
253 aRef.ReferenceItemType = DataPilotFieldReferenceItemType::NEXT; in GetFieldRef()
257 aRef.ReferenceItemType = DataPilotFieldReferenceItemType::NAMED; in GetFieldRef()
259 aRef.ReferenceItemName = maLbBaseItem.GetSelectEntry(); in GetFieldRef()
263 return aRef; in GetFieldRef()
/AOO41X/main/writerfilter/source/doctok/
H A DWW8ListTable.cxx121 WW8PropertiesReference aRef(pSet); in resolveNoAuto() local
122 aRef.resolve(rHandler); in resolveNoAuto()
131 WW8PropertiesReference aRef(pSet); in resolveNoAuto() local
132 aRef.resolve(rHandler); in resolveNoAuto()
/AOO41X/main/sc/source/ui/app/
H A Dtransobj.cxx784 ScRange aRef; in StripRefs() local
795 while ( !bOut && aRefIter.GetNextRef( aRef ) ) in StripRefs()
797 if ( aRef.aStart.Tab() != nSrcTab || aRef.aEnd.Tab() != nSrcTab || in StripRefs()
798 aRef.aStart.Col() < nStartX || aRef.aEnd.Col() > nEndX || in StripRefs()
799 aRef.aStart.Row() < nStartY || aRef.aEnd.Row() > nEndY ) in StripRefs()
/AOO41X/main/sc/source/filter/inc/
H A Dlotrange.hxx130 LotusRange aRef( nCol, nRow ); in GetIndex() local
131 return GetIndex( aRef ); in GetIndex()
137 LotusRange aRef( nColS, nRowS, nColE, nRowE ); in GetIndex() local
138 return GetIndex( aRef ); in GetIndex()
/AOO41X/main/sc/source/ui/Accessibility/
H A DAccessibleCell.cxx417 ScRange aRef; in FillDependends() local
418 while ( !bFound && aIter.GetNextRef( aRef ) ) in FillDependends()
420 if (aRef.In(maCellAddress)) in FillDependends()
441 ScRange aRef; in FillPrecedents() local
442 while ( aIter.GetNextRef( aRef ) ) in FillPrecedents()
444 AddRelation( aRef, AccessibleRelationType::CONTROLLED_BY, pRelationSet); in FillPrecedents()
/AOO41X/main/oox/source/dump/
H A Dxlsbdumper.cxx628 OUStringBuffer aRef( CREATE_OUSTRING( "REF" ) ); in dumpTokenRefId() local
629 StringHelper::appendIndex( aRef, readTokenRefId() ); in dumpTokenRefId()
630 aRef.append( OOX_DUMP_TABSEP ); in dumpTokenRefId()
631 return aRef.makeStringAndClear(); in dumpTokenRefId()
685 OUString aRef = dumpTokenRefId(); in dumpNameXToken() local
687 mxStack->pushOperand( lclCreateName( aRef, nNameId ), rTokClass ); in dumpNameXToken()
712 OUString aRef = dumpTokenRefId(); in dumpRef3dToken() local
714 writeTokenAddress3dItem( "addr", aRef, aPos, bNameMode ); in dumpRef3dToken()
720 OUString aRef = dumpTokenRefId(); in dumpArea3dToken() local
722 writeTokenRange3dItem( "range", aRef, aRange, bNameMode ); in dumpArea3dToken()
[all …]
/AOO41X/main/sw/source/core/inc/
H A Dflyfrms.hxx180 Point aRef; //Relativ zu diesem Point wird die AbsPos berechnet. member in SwFlyInCntFrm
203 const Point &GetRefPoint() const { return aRef; } in GetRefPoint()
224 void AddRefOfst( long nOfst ) { aRef.Y() += nOfst; } in AddRefOfst()

12345