Lines Matching refs:sqlite3Isdigit
19281 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04) macro
19290 # define sqlite3Isdigit(x) isdigit((unsigned char)(x)) macro
21786 if( !sqlite3Isdigit(*zDate) ){ in getDigits()
21870 if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){ in parseHhMmSs()
21873 while( sqlite3Isdigit(*zDate) ){ in parseHhMmSs()
22454 if( !sqlite3Isdigit(*z2) ) z2++; in parseModifier()
31582 while( z<zEnd && sqlite3Isdigit(*z) ){
31588 while( z<zEnd && sqlite3Isdigit(*z) ){ z+=incr; d++; }
31599 while( z<zEnd && sqlite3Isdigit(*z) ){
31629 while( z<zEnd && sqlite3Isdigit(*z) ){
31936 if( !sqlite3Isdigit(zNum[0]) ) return 0;
84944 assert( sqlite3Isdigit(zRawSql[1]) );
111430 if( sqlite3Isdigit(zChar[0]) ){
111811 needQuote = sqlite3Isdigit(zIdent[0])
125393 if( sqlite3Isdigit(*z) ){
130855 for(j=nName-1; j>0 && sqlite3Isdigit(zName[j]); j--){}
157421 if( !(yymsp[0].minor.yy0.z[0]=='#' && sqlite3Isdigit(yymsp[0].minor.yy0.z[1])) ){
159328 if( !sqlite3Isdigit(z[1]) )
159349 for(i=0; sqlite3Isdigit(z[i]); i++){}
159353 while( sqlite3Isdigit(z[i]) ){ i++; }
159357 ( sqlite3Isdigit(z[i+1])
159358 || ((z[i+1]=='+' || z[i+1]=='-') && sqlite3Isdigit(z[i+2]))
159362 while( sqlite3Isdigit(z[i]) ){ i++; }
159379 for(i=1; sqlite3Isdigit(z[i]); i++){}
184607 #ifdef sqlite3Isdigit
184610 # define safe_isdigit(x) sqlite3Isdigit(x)
191573 #ifdef sqlite3Isdigit
191576 # define safe_isdigit(x) sqlite3Isdigit(x)