Lines Matching refs:rPos

2686 void ScDocument::PutCell( const ScAddress& rPos, ScBaseCell* pCell, sal_Bool bForceTab )  in PutCell()  argument
2688 SCTAB nTab = rPos.Tab(); in PutCell()
2700 pTab[nTab]->PutCell( rPos, pCell ); in PutCell()
2745 sal_uInt16 ScDocument::GetStringForFormula( const ScAddress& rPos, rtl::OUString& rString ) in GetStringForFormula() argument
2753 ScBaseCell* pCell = GetCell( rPos ); in GetStringForFormula()
2808 double ScDocument::GetValue( const ScAddress& rPos ) in GetValue() argument
2810 SCTAB nTab = rPos.Tab(); in GetValue()
2812 return pTab[nTab]->GetValue( rPos ); in GetValue()
2830 sal_uInt32 ScDocument::GetNumberFormat( const ScAddress& rPos ) const in GetNumberFormat()
2832 SCTAB nTab = rPos.Tab(); in GetNumberFormat()
2834 return pTab[nTab]->GetNumberFormat( rPos ); in GetNumberFormat()
2840 const ScAddress& rPos, const ScBaseCell* pCell ) const in GetNumberFormatInfo() argument
2842 SCTAB nTab = rPos.Tab(); in GetNumberFormatInfo()
2845 nIndex = pTab[nTab]->GetNumberFormat( rPos ); in GetNumberFormatInfo()
2870 CellType ScDocument::GetCellType( const ScAddress& rPos ) const in GetCellType()
2872 SCTAB nTab = rPos.Tab(); in GetCellType()
2874 return pTab[nTab]->GetCellType( rPos ); in GetCellType()
2902 ScBaseCell* ScDocument::GetCell( const ScAddress& rPos ) const in GetCell()
2904 SCTAB nTab = rPos.Tab(); in GetCell()
2906 return pTab[nTab]->GetCell( rPos ); in GetCell()
2963 ScPostIt* ScDocument::GetNote( const ScAddress& rPos ) in GetNote() argument
2965 ScTable* pTable = ValidTab( rPos.Tab() ) ? pTab[ rPos.Tab() ] : 0; in GetNote()
2966 return pTable ? pTable->GetNote( rPos.Col(), rPos.Row() ) : 0; in GetNote()
2970 void ScDocument::TakeNote( const ScAddress& rPos, ScPostIt*& rpNote ) in TakeNote() argument
2972 if( ValidTab( rPos.Tab() ) && pTab[ rPos.Tab() ] ) in TakeNote()
2973 pTab[ rPos.Tab() ]->TakeNote( rPos.Col(), rPos.Row(), rpNote ); in TakeNote()
2979 ScPostIt* ScDocument::ReleaseNote( const ScAddress& rPos ) in ReleaseNote() argument
2981 ScTable* pTable = ValidTab( rPos.Tab() ) ? pTab[ rPos.Tab() ] : 0; in ReleaseNote()
2982 return pTable ? pTable->ReleaseNote( rPos.Col(), rPos.Row() ) : 0; in ReleaseNote()
2986 ScPostIt* ScDocument::GetOrCreateNote( const ScAddress& rPos ) in GetOrCreateNote() argument
2988 ScPostIt* pNote = GetNote( rPos ); in GetOrCreateNote()
2991 pNote = new ScPostIt( *this, rPos, false ); in GetOrCreateNote()
2992 TakeNote( rPos, pNote ); in GetOrCreateNote()
2998 void ScDocument::DeleteNote( const ScAddress& rPos ) in DeleteNote() argument
3000 if( ValidTab( rPos.Tab() ) && pTab[ rPos.Tab() ] ) in DeleteNote()
3001 pTab[ rPos.Tab() ]->DeleteNote( rPos.Col(), rPos.Row() ); in DeleteNote()
3183 sal_uInt16 ScDocument::GetErrCode( const ScAddress& rPos ) const in GetErrCode()
3185 SCTAB nTab = rPos.Tab(); in GetErrCode()
3187 return pTab[nTab]->GetErrCode( rPos ); in GetErrCode()
4217 void ScDocument::SetPattern( const ScAddress& rPos, const ScPatternAttr& rAttr, in SetPattern() argument
4220 SCTAB nTab = rPos.Tab(); in SetPattern()
4222 pTab[nTab]->SetPattern( rPos, rAttr, bPutToPool ); in SetPattern()