Lines Matching refs:p

847         ScToken* p = static_cast<ScToken*>(pCode->GetNextReferenceRPN());  in GetFormula()  local
848 if( p ) in GetFormula()
855 ScSingleRefData& rRef = p->GetSingleRef(); in GetFormula()
1182 DebugElement( ScFormulaCell* p ) { push(p); } in Interpret() argument
1204 #define erDEBUGDOT_OUT( p ) (DebugDot::out(p)) in Interpret() argument
1205 #define erDEBUGDOT_ELEMENT_PUSH( p ) (DebugElement::push(p)) in Interpret() argument
1208 #define erDEBUGDOT_OUT( p ) in Interpret()
1209 #define erDEBUGDOT_ELEMENT_PUSH( p ) in Interpret()
1486 RecursionCounter( ScRecursionHelper& r, ScFormulaCell* p ) : rRec(r) in InterpretTail() argument
1490 rRec.GetRecursionInIterationStack().push( p); in InterpretTail()
1538 ScInterpreter* p = new ScInterpreter( this, pDocument, aPos, *pCode ); in InterpretTail() local
1539 StackCleaner aStackCleaner( pDocument, p); in InterpretTail()
1558 p->Interpret(); in InterpretTail()
1569 if (p->IsReferenceFunc() && p->GetLastStackRefToken()) in InterpretTail()
1570 pValidRefToken = static_cast<ScToken*>(p->GetLastStackRefToken()->Clone()); in InterpretTail()
1578 if( p->GetError() && pCode->IsHyperLink()) in InterpretTail()
1581 if( p->GetError() && p->GetError() != errCircularReference) in InterpretTail()
1591 if ((bIsValue && p->GetResultType() == svDouble && fabs( in InterpretTail()
1592 p->GetNumResult() - aResult.GetDouble()) <= in InterpretTail()
1594 (!bIsValue && p->GetResultType() == svString && in InterpretTail()
1595 p->GetStringResult() == aResult.GetString())) in InterpretTail()
1614 if( p->GetError() != nOldErrCode ) in InterpretTail()
1622 if( nFormatType != p->GetRetFormatType() ) in InterpretTail()
1624 nFormatType = p->GetRetFormatType(); in InterpretTail()
1627 if( nFormatIndex != p->GetRetFormatIndex() ) in InterpretTail()
1629 nFormatIndex = p->GetRetFormatIndex(); in InterpretTail()
1642 ScFormulaResult aNewResult( p->GetResultToken()); in InterpretTail()
1662 aResult.SetToken( p->GetResultToken() ); in InterpretTail()
1666 ScFormulaResult aNewResult( p->GetResultToken()); in InterpretTail()
1690 if ( aResult.IsValue() && !p->GetError() in InterpretTail()
1805 const ScHint* p = PTR_CAST( ScHint, &rHint ); in Notify() local
1806 sal_uLong nHint = (p ? p->GetId() : 0); in Notify()
2005 sal_Bool lcl_ScDetectiveRefIter_SkipRef( ScToken* p ) in lcl_ScDetectiveRefIter_SkipRef() argument
2007 ScSingleRefData& rRef1 = p->GetSingleRef(); in lcl_ScDetectiveRefIter_SkipRef()
2011 if ( p->GetType() == svDoubleRef ) in lcl_ScDetectiveRefIter_SkipRef()
2013 ScSingleRefData& rRef2 = p->GetDoubleRef().Ref2; in lcl_ScDetectiveRefIter_SkipRef()
2025 ScToken* p = static_cast<ScToken*>(pCode->GetNextReferenceRPN()); in GetNextRef() local
2026 if (p) in GetNextRef()
2027 p->CalcAbsIfRel( aPos ); in GetNextRef()
2029 while ( p && lcl_ScDetectiveRefIter_SkipRef( p ) ) in GetNextRef()
2031 p = static_cast<ScToken*>(pCode->GetNextReferenceRPN()); in GetNextRef()
2032 if (p) in GetNextRef()
2033 p->CalcAbsIfRel( aPos ); in GetNextRef()
2036 if( p ) in GetNextRef()
2038 SingleDoubleRefProvider aProv( *p ); in GetNextRef()