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.cxx407 ScAddress aAdr; in JumpMatrix() local
408 PopSingleRef( aAdr ); in JumpMatrix()
417 ScBaseCell* pCell = GetCell( aAdr ); in JumpMatrix()
422 double fVal = GetCellValue( aAdr, pCell); in JumpMatrix()
462 ScAddress aAdr( aRange.aStart); in JumpMatrix() local
463 sal_uLong nCol = (sal_uLong)aAdr.Col() + nC; in JumpMatrix()
464 sal_uLong nRow = (sal_uLong)aAdr.Row() + nR; in JumpMatrix()
482 aAdr.SetCol( static_cast<SCCOL>(nCol) ); in JumpMatrix()
483 aAdr.SetRow( static_cast<SCROW>(nRow) ); in JumpMatrix()
484 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.cxx2295 ScAddress aAdr; in ScZTest() local
2296 PopSingleRef( aAdr ); in ScZTest()
2297 ScBaseCell* pCell = GetCell( aAdr ); in ScZTest()
2300 fVal = GetCellValue( aAdr, pCell ); in ScZTest()
2731 ScAddress aAdr; in ScHarMean() local
2752 PopSingleRef( aAdr ); in ScHarMean()
2753 ScBaseCell* pCell = GetCell( aAdr ); in ScHarMean()
2756 double x = GetCellValue( aAdr, pCell ); in ScHarMean()
2851 ScAddress aAdr; in ScGeoMean() local
2873 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.cxx654 ScAddress aAdr; in ScNPV() local
655 PopSingleRef( aAdr ); in ScNPV()
656 ScBaseCell* pCell = GetCell( aAdr ); in ScNPV()
659 double nCellVal = GetCellValue( aAdr, pCell ); in ScNPV()
2583 ScAddress aAdr; in ScHyperLink() local
2584 if ( !PopDoubleRefOrSingleRef( aAdr ) ) in ScHyperLink()
2586 ScBaseCell* pCell = GetCell( aAdr ); in ScHyperLink()
2596 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.cxx195 table::CellAddress aAdr; in getPosition() local
196 aAdr.Sheet = aCellPos.Tab(); in getPosition()
197 aAdr.Column = aCellPos.Col(); in getPosition()
198 aAdr.Row = aCellPos.Row(); in getPosition()
199 return aAdr; in getPosition()
H A Dviewuno.cxx271 table::CellRangeAddress aAdr; in getVisibleRange() local
289 aAdr.Sheet = pViewData->GetTabNo(); in getVisibleRange()
290 aAdr.StartColumn = pViewData->GetPosX( eWhichH ); in getVisibleRange()
291 aAdr.StartRow = pViewData->GetPosY( eWhichV ); in getVisibleRange()
292 aAdr.EndColumn = aAdr.StartColumn + nVisX - 1; in getVisibleRange()
293 aAdr.EndRow = aAdr.StartRow + nVisY - 1; in getVisibleRange()
295 return aAdr; in getVisibleRange()
308 table::CellRangeAddress aAdr(getVisibleRange()); //! Hilfsfunktion mit ScRange? in getReferredCells() local
309 ScRange aRange( (SCCOL)aAdr.StartColumn, (SCROW)aAdr.StartRow, aAdr.Sheet, in getReferredCells()
310 (SCCOL)aAdr.EndColumn, (SCROW)aAdr.EndRow, aAdr.Sheet ); in getReferredCells()
H A Dfuncuno.cxx550 ScAddress aAdr; in callFunction() local
551 ScCompiler aCompiler(pDoc,aAdr); in callFunction()
H A Dchart2uno.cxx2561 ScAddress aAdr(nCol, nRow, nTab); in BuildDataCache() local
2562 ScBaseCell* pCell = m_pDocument->GetCell(aAdr); in BuildDataCache()
H A Dcellsuno.cxx6664 table::CellAddress aAdr; in getCellAddress() local
6665 aAdr.Sheet = aCellPos.Tab(); in getCellAddress()
6666 aAdr.Column = aCellPos.Col(); in getCellAddress()
6667 aAdr.Row = aCellPos.Row(); in getCellAddress()
6668 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()