Lines Matching refs:pStr
74 xub_StrLen ImplStringLen( const sal_Char* pStr ) in DBG_NAMEEX()
76 const sal_Char* pTempStr = pStr; in DBG_NAMEEX()
79 return (xub_StrLen)(pTempStr-pStr); in DBG_NAMEEX()
84 xub_StrLen ImplStringLen( const sal_Unicode* pStr ) in ImplStringLen() argument
86 const sal_Unicode* pTempStr = pStr; in ImplStringLen()
89 return (xub_StrLen)(pTempStr-pStr); in ImplStringLen()
193 const sal_Char* pStr = mpData->maStr; in IsLowerAscii() local
196 if ( (*pStr >= 65) && (*pStr <= 90) ) in IsLowerAscii()
199 ++pStr, in IsLowerAscii()
214 const sal_Char* pStr = mpData->maStr; in IsUpperAscii() local
217 if ( (*pStr >= 97) && (*pStr <= 122) ) in IsUpperAscii()
220 ++pStr, in IsUpperAscii()
235 const sal_Char* pStr = mpData->maStr; in IsAlphaAscii() local
238 if ( !(((*pStr >= 97) && (*pStr <= 122)) || in IsAlphaAscii()
239 ((*pStr >= 65) && (*pStr <= 90))) ) in IsAlphaAscii()
242 ++pStr, in IsAlphaAscii()
257 const sal_Char* pStr = mpData->maStr; in IsNumericAscii() local
260 if ( !((*pStr >= 48) && (*pStr <= 57)) ) in IsNumericAscii()
263 ++pStr, in IsNumericAscii()
278 const sal_Char* pStr = mpData->maStr; in IsAlphaNumericAscii() local
281 if ( !(((*pStr >= 97) && (*pStr <= 122)) || in IsAlphaNumericAscii()
282 ((*pStr >= 65) && (*pStr <= 90)) || in IsAlphaNumericAscii()
283 ((*pStr >= 48) && (*pStr <= 57))) ) in IsAlphaNumericAscii()
286 ++pStr, in IsAlphaNumericAscii()