Lines Matching refs:p

143     register const sal_Unicode* p = pStr;  in GetStrLen()  local
144 while ( *p ) in GetStrLen()
145 p++; in GetStrLen()
146 return sal::static_int_cast<xub_StrLen>( p - pStr ); in GetStrLen()
329 ScRawToken* p; in Clone() local
332 p = (ScRawToken*) new ScDoubleRawToken; in Clone()
333 p->eOp = eOp; in Clone()
334 p->eType = eType; in Clone()
335 p->nValue = nValue; in Clone()
375 p = (ScRawToken*) new sal_uInt8[ n ]; in Clone()
376 memcpy( p, this, n * sizeof(sal_uInt8) ); in Clone()
378 p->nRefCnt = 0; in Clone()
379 p->bRaw = sal_False; in Clone()
380 return p; in Clone()
664 const ScRefList* p = pt[i]->GetRefList(); in ExtendRangeReference() local
665 if (!p->size()) in ExtendRangeReference()
667 ScRefList::const_iterator it( p->begin()); in ExtendRangeReference()
668 ScRefList::const_iterator end( p->end()); in ExtendRangeReference()
1092 const ScMatrixFormulaCellToken* p = dynamic_cast<const ScMatrixFormulaCellToken*>(&r); in operator ==() local
1093 return p && ScMatrixCellResultToken::operator==( r ) && in operator ==()
1094 nCols == p->nCols && nRows == p->nRows; in operator ==()
1100 const ScMatrixCellResultToken* p = dynamic_cast<const ScMatrixCellResultToken*>(&r); in Assign() local
1101 if (p) in Assign()
1102 ScMatrixCellResultToken::Assign( *p); in Assign()
1339 ScTokenArray* p = new ScTokenArray(); in Clone() local
1340 p->nLen = nLen; in Clone()
1341 p->nRPN = nRPN; in Clone()
1342 p->nRefs = nRefs; in Clone()
1343 p->nMode = nMode; in Clone()
1344 p->nError = nError; in Clone()
1345 p->bHyperLink = bHyperLink; in Clone()
1349 pp = p->pCode = new FormulaToken*[ nLen ]; in Clone()
1359 pp = p->pRPN = new FormulaToken*[ nRPN ]; in Clone()
1378 *pp = p->pCode[ nIdx ]; in Clone()
1385 return p; in Clone()
1591 FormulaTokenRef p = ScToken::ExtendRangeReference( *p1, *p3, rPos, true); in MergeRangeReference() local
1592 if (p) in MergeRangeReference()
1594 p->IncRef(); in MergeRangeReference()
1599 pCode[ nLen-1 ] = p; in MergeRangeReference()
1628 FormulaToken* ScTokenArray::AddMatrix( ScMatrix* p ) in AddMatrix() argument
1630 return Add( new ScMatrixToken( p ) ); in AddMatrix()
1700 FormulaToken* p = pRPN[nParam]; in GetAdjacentExtendOfOuterFuncRefs() local
1701 switch ( p->GetType() ) in GetAdjacentExtendOfOuterFuncRefs()
1705 ScSingleRefData& rRef = static_cast<ScToken*>(p)->GetSingleRef(); in GetAdjacentExtendOfOuterFuncRefs()
1748 ScComplexRefData& rRef = static_cast<ScToken*>(p)->GetDoubleRef(); in GetAdjacentExtendOfOuterFuncRefs()