Lines Matching refs:p

1627         const sal_Char* p = aStr.GetBuffer();  in LoadString()  local
1628 const sal_Char* const pEnd = p + aStr.Len(); in LoadString()
1630 while ( p < pEnd ) in LoadString()
1632 if ( *p == cStream ) in LoadString()
1635 *pUni = ByteString::ConvertToUnicode( *p, eStream ); in LoadString()
1636 p++; in LoadString()
3518 const sal_Unicode* p = sStr.GetBuffer() + nPoint; in ImpGetNumberOutput() local
3519 while ( *++p == '0' ) in ImpGetNumberOutput()
3521 if ( !*p ) in ImpGetNumberOutput()
3569 const sal_Unicode* p = p1 + rStr.Len(); in ImpGetNumberOutput() local
3570 while ( p1 < p-- ) in ImpGetNumberOutput()
3572 const sal_Unicode c = *p; in ImpGetNumberOutput()
3738 const sal_Unicode* p = p1 + rStr.Len(); in ImpNumberFillWithThousands() local
3739 while ( p1 < p-- ) in ImpNumberFillWithThousands()
3746 switch (*p) in ImpNumberFillWithThousands()
3861 const sal_Unicode* p = p1 + rStr.Len(); in ImpNumberFill() local
3862 while ( p1 < p-- ) in ImpNumberFill()
3868 switch (*p) in ImpNumberFill()
3948 const sal_Unicode* p = rInfo.sStrArray[i].GetBuffer(); in GetNumForInfo() local
3949 while ( *p == '#' ) in GetNumForInfo()
3950 p++; in GetNumForInfo()
3951 while ( *p++ == '0' ) in GetNumForInfo()
4366 sal_Unicode* p = aStr.AllocBuffer( 2 ); in ImpGetNatNumString() local
4367 *p++ = '0'; in ImpGetNatNumString()
4368 *p = sal_Unicode( '0' + nVal ); in ImpGetNatNumString()
4432 const sal_Unicode* p = pBeg; in HasStringNegativeSign() local
4435 if ( *p == '-' ) in HasStringNegativeSign()
4437 } while ( *p == ' ' && ++p < pEnd ); in HasStringNegativeSign()
4438 p = pEnd - 1; in HasStringNegativeSign()
4441 if ( *p == '-' ) in HasStringNegativeSign()
4443 } while ( *p == ' ' && pBeg < --p ); in HasStringNegativeSign()
4504 const sal_Unicode* p = rStr.GetBuffer(); in EraseComment() local
4509 while ( !bFound && *p ) in EraseComment()
4511 switch ( *p ) in EraseComment()
4525 p - rStr.GetBuffer()); in EraseComment()
4529 if ( bEscaped && *p != '\\' ) in EraseComment()
4531 ++p; in EraseComment()
4546 const sal_Unicode* p = p0; in IsInQuote() local
4549 while ( p <= p1 ) in IsInQuote()
4551 if ( *p == cQuote ) in IsInQuote()
4553 if ( p == p0 ) in IsInQuote()
4557 if ( *(p-1) != cEscIn ) in IsInQuote()
4562 if ( *(p-1) != cEscOut ) in IsInQuote()
4566 p++; in IsInQuote()
4586 const sal_Unicode* p = p0 + nPos; in GetQuoteEnd() local
4588 while ( p < p1 ) in GetQuoteEnd()
4590 if ( *p == cQuote && p > p0 && *(p-1) != cEscIn ) in GetQuoteEnd()
4591 return sal::static_int_cast< xub_StrLen >(p - p0); in GetQuoteEnd()
4592 p++; in GetQuoteEnd()