Lines Matching refs:pStr
59 sal_Bool match(const sal_Unicode* pWild, const sal_Unicode* pStr, const sal_Unicode cEscape) in match() argument
69 if ( *pStr == 0 ) in match()
75 if ( rtl_ascii_toUpperCase(*pWild) != rtl_ascii_toUpperCase(*pStr) ) in match()
90 if ( *pStr == 0 ) in match()
92 while ( *pStr && *pStr != *pWild ) in match()
99 pStr++; in match()
100 if ( *pStr == 0 ) in match()
107 if ( *pStr != 0 ) in match()
108 pStr++; in match()
114 return ( *pStr == 0 ) && ( *pWild == 0 ); in match()
310 const sal_Unicode* pStr = rName.getStr(); in isValidSQLName() local
311 if (*pStr > 127 || isdigit(*pStr)) in isValidSQLName()
314 for (; *pStr; ++pStr ) in isValidSQLName()
315 if(!isCharOk(*pStr,_rSpecials)) in isValidSQLName()
340 const sal_Unicode* pStr = rName.getStr(); in convertName2SQLName() local
342 sal_Bool bValid(*pStr < 128 && !isdigit(*pStr)); in convertName2SQLName()
343 for (sal_Int32 i=0; bValid && i < nLength; ++pStr,++i ) in convertName2SQLName()
344 if(!isCharOk(*pStr,_rSpecials)) in convertName2SQLName()
346 aNewName = aNewName.replace(*pStr,'_'); in convertName2SQLName()
347 pStr = aNewName.getStr() + i; in convertName2SQLName()