Home
last modified time | relevance | path

Searched refs:aAdr (Results 1 – 22 of 22) sorted by relevance

/trunk/main/sc/source/core/tool/
H A Dinterpr1.cxx405 ScAddress aAdr; in JumpMatrix() local
406 PopSingleRef( aAdr ); in JumpMatrix()
415 ScBaseCell* pCell = GetCell( aAdr ); in JumpMatrix()
420 double fVal = GetCellValue( aAdr, pCell); in JumpMatrix()
460 ScAddress aAdr( aRange.aStart); in JumpMatrix() local
461 sal_uLong nCol = (sal_uLong)aAdr.Col() + nC; in JumpMatrix()
462 sal_uLong nRow = (sal_uLong)aAdr.Row() + nR; in JumpMatrix()
480 aAdr.SetCol( static_cast<SCCOL>(nCol) ); in JumpMatrix()
481 aAdr.SetRow( static_cast<SCROW>(nRow) ); in JumpMatrix()
482 ScBaseCell* pCell = GetCell( aAdr ); in JumpMatrix()
[all …]
H A Dinterpr4.cxx561 ScAddress aAdr; in CreateDoubleArr() local
564 aAdr.SetTab( nTab ); in CreateDoubleArr()
568 aAdr.SetRow( nRow ); in CreateDoubleArr()
572 aAdr.SetCol( nCol ); in CreateDoubleArr()
573 ScBaseCell* pCell = pDok->GetCell( aAdr ); in CreateDoubleArr()
582 nVal = GetValueCellValue( aAdr, (ScValueCell*)pCell ); in CreateDoubleArr()
747 ScAddress aAdr; in CreateCellArr() local
750 aAdr.SetTab( nTab ); in CreateCellArr()
754 aAdr.SetRow( nRow ); in CreateCellArr()
758 aAdr.SetCol( nCol ); in CreateCellArr()
[all …]
H A Dinterpr3.cxx2293 ScAddress aAdr; in ScZTest() local
2294 PopSingleRef( aAdr ); in ScZTest()
2295 ScBaseCell* pCell = GetCell( aAdr ); in ScZTest()
2298 fVal = GetCellValue( aAdr, pCell ); in ScZTest()
2729 ScAddress aAdr; in ScHarMean() local
2750 PopSingleRef( aAdr ); in ScHarMean()
2751 ScBaseCell* pCell = GetCell( aAdr ); in ScHarMean()
2754 double x = GetCellValue( aAdr, pCell ); in ScHarMean()
2849 ScAddress aAdr; in ScGeoMean() local
2871 PopSingleRef( aAdr ); in ScGeoMean()
[all …]
H A Dinterpr5.cxx391 ScAddress aAdr( nThisCol, nThisRow, nTab1); in CreateMatrixFromDoubleRef() local
392 double fVal = GetCellValue( aAdr, pCell); in CreateMatrixFromDoubleRef()
453 ScAddress aAdr; in GetMatrix() local
454 PopSingleRef( aAdr ); in GetMatrix()
458 ScBaseCell* pCell = GetCell( aAdr ); in GetMatrix()
462 pMat->PutDouble(GetCellValue(aAdr, pCell), 0); in GetMatrix()
540 ScAddress aAdr; in ScMatValue() local
541 PopSingleRef( aAdr ); in ScMatValue()
542 ScBaseCell* pCell = GetCell( aAdr ); in ScMatValue()
571 ScAddress aAdr( sal::static_int_cast<SCCOL>( nCol1 + nR ), in ScMatValue() local
[all …]
H A Dinterpr2.cxx653 ScAddress aAdr; in ScNPV() local
654 PopSingleRef( aAdr ); in ScNPV()
655 ScBaseCell* pCell = GetCell( aAdr ); in ScNPV()
658 double nCellVal = GetCellValue( aAdr, pCell ); in ScNPV()
2582 ScAddress aAdr; in ScHyperLink() local
2583 if ( !PopDoubleRefOrSingleRef( aAdr ) ) in ScHyperLink()
2585 ScBaseCell* pCell = GetCell( aAdr ); in ScHyperLink()
2595 fVal = GetCellValue( aAdr, pCell ); in ScHyperLink()
H A Dcompiler.cxx3275 ScAddress aAdr; in IsColRowName() local
3279 aAdr = aOne; // upper left takes precedence in IsColRowName()
3285 aAdr = aTwo; // directly right in IsColRowName()
3287 aAdr = aOne; in IsColRowName()
3296 aAdr = aOne; in IsColRowName()
3298 aAdr = aTwo; in IsColRowName()
3303 aAdr = aOne; in IsColRowName()
3304 aRef.InitAddress( aAdr ); in IsColRowName()
3515 ScAddress aAdr; in AutoCorrectParsedSymbol() local
3516 bOk &= ((aAdr.Parse( aRef[j], pDoc, aDetails ) & nMask) == nMask); in AutoCorrectParsedSymbol()
H A Daddress.cxx1416 ScAddress aAdr; in ParseAny() local
1417 nRet = aAdr.Parse( r, pDoc, rDetails ); in ParseAny()
1419 aStart = aEnd = aAdr; in ParseAny()
1970 aAdr.Format( aString, nFlags, pDoc, rDetails ); in GetRefString()
/trunk/main/sc/inc/
H A Daddress.hxx681 ScAddress aAdr; member in ScRefAddress
690 aAdr(nCol, nRow, nTab), in ScRefAddress()
695 aAdr(rAdr), in ScRefAddress()
699 aAdr(rRef.aAdr), bRelCol(rRef.bRelCol), bRelRow(rRef.bRelRow), in ScRefAddress()
718 inline const ScAddress& GetAddress() const { return aAdr; } in GetAddress()
719 inline SCCOL Col() const { return aAdr.Col(); } in Col()
720 inline SCROW Row() const { return aAdr.Row(); } in Row()
721 inline SCTAB Tab() const { return aAdr.Tab(); } in Tab()
733 aAdr = rRef.aAdr; in operator =()
743 aAdr = rAdr; in Set()
[all …]
/trunk/main/sc/source/core/data/
H A Dcell2.cxx527 ScAddress aAdr( aOrg ); in GetMatrixEdge() local
528 aAdr.IncCol(); in GetMatrixEdge()
532 pCell = pDocument->GetCell( aAdr ); in GetMatrixEdge()
538 aAdr.IncCol(); in GetMatrixEdge()
543 aAdr = aOrg; in GetMatrixEdge()
544 aAdr.IncRow(); in GetMatrixEdge()
548 pCell = pDocument->GetCell( aAdr ); in GetMatrixEdge()
554 aAdr.IncRow(); in GetMatrixEdge()
873 ScAddress aAdr( rRef.nCol, rRef.nRow, rRef.nTab ); in UpdateReference() local
874 ScRangePair* pR = pColList->Find( aAdr ); in UpdateReference()
[all …]
H A Dtable6.cxx151 ScAddress aAdr( nCol, nRow, nTab ); in SearchCell() local
153 pUndoDoc->PutCell( aAdr, pUndoCell); in SearchCell()
226 ScAddress aAdr( nCol, nRow, nTab ); in SearchCell() local
227 ScFormulaCell* pFCell = new ScFormulaCell( pDocument, aAdr, in SearchCell()
H A Dcolumn.cxx1137 ScAddress aAdr( nCol, 0, nTab ); in InsertRow() local
1138 ScHint aHint( SC_HINT_DATACHANGED, aAdr, NULL ); // only areas (ScBaseCell* == NULL) in InsertRow()
1581 ScAddress aAdr( nCol, 0, nTab ); in MoveTo() local
1582 ScHint aHint( SC_HINT_DYING, aAdr, NULL ); // areas only in MoveTo()
H A Dcolumn3.cxx319 ScAddress aAdr( nCol, 0, nTab ); in DeleteRow() local
320 ScHint aHint( SC_HINT_DATACHANGED, aAdr, NULL ); // only areas (ScBaseCell* == NULL) in DeleteRow()
/trunk/main/sc/source/ui/unoobj/
H A Dnotesuno.cxx190 table::CellAddress aAdr; in getPosition() local
191 aAdr.Sheet = aCellPos.Tab(); in getPosition()
192 aAdr.Column = aCellPos.Col(); in getPosition()
193 aAdr.Row = aCellPos.Row(); in getPosition()
194 return aAdr; in getPosition()
H A Dviewuno.cxx267 table::CellRangeAddress aAdr; in getVisibleRange() local
285 aAdr.Sheet = pViewData->GetTabNo(); in getVisibleRange()
286 aAdr.StartColumn = pViewData->GetPosX( eWhichH ); in getVisibleRange()
287 aAdr.StartRow = pViewData->GetPosY( eWhichV ); in getVisibleRange()
288 aAdr.EndColumn = aAdr.StartColumn + nVisX - 1; in getVisibleRange()
289 aAdr.EndRow = aAdr.StartRow + nVisY - 1; in getVisibleRange()
291 return aAdr; in getVisibleRange()
303 table::CellRangeAddress aAdr(getVisibleRange()); //! Hilfsfunktion mit ScRange? in getReferredCells() local
304 ScRange aRange( (SCCOL)aAdr.StartColumn, (SCROW)aAdr.StartRow, aAdr.Sheet, in getReferredCells()
305 (SCCOL)aAdr.EndColumn, (SCROW)aAdr.EndRow, aAdr.Sheet ); in getReferredCells()
H A Dfuncuno.cxx540 ScAddress aAdr; in callFunction() local
541 ScCompiler aCompiler(pDoc,aAdr); in callFunction()
H A Dchart2uno.cxx2538 ScAddress aAdr(nCol, nRow, nTab); in BuildDataCache() local
2539 ScBaseCell* pCell = m_pDocument->GetCell(aAdr); in BuildDataCache()
H A Dcellsuno.cxx6550 table::CellAddress aAdr; in getCellAddress() local
6551 aAdr.Sheet = aCellPos.Tab(); in getCellAddress()
6552 aAdr.Column = aCellPos.Col(); in getCellAddress()
6553 aAdr.Row = aCellPos.Row(); in getCellAddress()
6554 return aAdr; in getCellAddress()
/trunk/main/sc/source/ui/miscdlgs/
H A Dsolvrdlg.cxx161 ScAddress aAdr = rRef.aStart; in SetReference() local
162 sal_uInt16 nFmt = ( aAdr.Tab() == nCurTab ) in SetReference()
166 aAdr.Format( aStr, nFmt, pDocP, pDocP->GetAddressConvention() ); in SetReference()
170 theFormulaCell = aAdr; in SetReference()
172 theVariableCell = aAdr; in SetReference()
H A Dsimpref.cxx132 ScAddress aAdr = rRef.aStart; in SetReference() local
133 aAdr.Format( aRefStr, SCA_ABS_3D, pDocP, pDocP->GetAddressConvention() ); in SetReference()
H A Doptsolver.cxx498 ScAddress aAdr = rRef.aStart; in SetReference() local
501 aNewRef.aEnd = aAdr; in SetReference()
508 sal_uInt16 nFmt = ( aAdr.Tab() == mnCurTab ) ? SCA_ABS : SCA_ABS_3D; in SetReference()
510 aAdr.Format( aStr, nFmt, pDocP, pDocP->GetAddressConvention() ); in SetReference()
/trunk/main/sc/workben/
H A Dtest.cxx304 CellAddress aAdr; in lcl_OutputNames() local
305 aAdr.Sheet = nTab; in lcl_OutputNames()
306 aAdr.Column = nCol; in lcl_OutputNames()
307 aAdr.Row = nRow; in lcl_OutputNames()
315 XCellRef xCell = xDoc->getCell(aAdr); in lcl_OutputNames()
318 ++aAdr.Row; in lcl_OutputNames()
323 xCell = xDoc->getCell(aAdr); in lcl_OutputNames()
328 ++aAdr.Row; in lcl_OutputNames()
/trunk/main/sc/source/ui/view/
H A Dcellsh1.cxx926 ScAddress aAdr( nFillCol, nFillRow, 0 ); in ExecuteEdit() local
927 aAdr.Format( aAdrStr, SCR_ABS, pDoc, pDoc->GetAddressConvention() ); in ExecuteEdit()