Lines Matching refs:p

100 	const char* p = pStart;  in ImpScan()  local
107 while( *p &&( *p == ' ' || *p == '\t' ) ) p++; in ImpScan()
109 if( *p == '-' ) in ImpScan()
110 p++, bMinus = sal_True; in ImpScan()
111 if( isdigit( *p ) ||( (*p == cNonIntntlComma || *p == cIntntlComma || in ImpScan()
112 *p == cIntntl1000) && isdigit( *(p+1 ) ) ) ) in ImpScan()
126 while( strchr( pSearchStr, *p ) && *p ) in ImpScan()
129 if( bOnlyIntntl && *p == cIntntl1000 ) in ImpScan()
131 p++; in ImpScan()
136 if( *p == cNonIntntlComma || *p == cIntntlComma ) in ImpScan()
139 p++; in ImpScan()
145 else if( strchr( "DdEe", *p ) ) in ImpScan()
149 p++; continue; in ImpScan()
151 if( toupper( *p ) == 'D' ) in ImpScan()
153 *q++ = 'E'; p++; in ImpScan()
155 if( *p == '+' ) in ImpScan()
156 p++; in ImpScan()
158 if( *p == '-' ) in ImpScan()
159 *q++ = *p++; in ImpScan()
163 *q++ = *p++; in ImpScan()
188 if( strchr( "%!&#", *p ) && *p ) p++; in ImpScan()
191 else if( *p == '&' ) in ImpScan()
193 p++; in ImpScan()
198 char xch = *p++; in ImpScan()
207 while( isalnum( *p ) ) in ImpScan()
209 char ch = sal::static_int_cast< char >( toupper( *p ) ); in ImpScan()
210 p++; in ImpScan()
223 if( *p == '&' ) p++; in ImpScan()
234 *pLen = (sal_uInt16) ( p - pStart ); in ImpScan()
393 char cBuf[ 40 ], *p = cBuf; in ImpCvtNum() local
402 *p++ = '-'; in ImpCvtNum()
405 myftoa( nNum, p, nPrec,( nNum &&( nNum < 1E-1 || nNum >= dMaxNumWithoutExp ) ) ? 4:0, in ImpCvtNum()
408 for( p = cBuf; *p &&( *p != 'E' ); p++ ) {} in ImpCvtNum()
409 q = p; p--; in ImpCvtNum()
410 while( nPrec && *p == '0' ) nPrec--, p--; in ImpCvtNum()
411 if( *p == cDecimalSep ) p--; in ImpCvtNum()
412 while( *q ) *++p = *q++; in ImpCvtNum()
413 *++p = 0; in ImpCvtNum()
503 char * p; in printfmtnum() local
555 p = cBuf; in printfmtnum()
556 if( bSign ) *p++ = bNeg ? '-' : '+'; in printfmtnum()
557 myftoa( nNum, p, nPrec, nExpDig, bPoint, sal_False ); in printfmtnum()
812 sal_Unicode* p = rRes.AllocBuffer( 2 ); in Format() local
813 *p++ = '0'; in Format()
814 *p = sal_Unicode( '0' + nMin ); in Format()