Lines Matching refs:sqlite3Isdigit
11195 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04) macro
11203 # define sqlite3Isdigit(x) isdigit((unsigned char)(x)) macro
13309 if( !sqlite3Isdigit(*zDate) ){ in getDigits()
13391 if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){ in parseHhMmSs()
13394 while( sqlite3Isdigit(*zDate) ){ in parseHhMmSs()
13877 if( !sqlite3Isdigit(*z2) ) z2++; in parseModifier()
20911 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){ in sqlite3AtoF()
20918 while( z<zEnd && sqlite3Isdigit(*z) ) z+=incr, nDigits++, d++; in sqlite3AtoF()
20926 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){ in sqlite3AtoF()
20931 while( z<zEnd && sqlite3Isdigit(*z) ) z+=incr, nDigits++; in sqlite3AtoF()
20948 while( z<zEnd && sqlite3Isdigit(*z) ){ in sqlite3AtoF()
62951 assert( sqlite3Isdigit(zRawSql[1]) );
80487 needQuote = sqlite3Isdigit(zIdent[0]) || sqlite3KeywordCode(zIdent, j)!=TK_ID;
89992 if( sqlite3Isdigit(*z) ){
109502 if( !sqlite3Isdigit(z[1]) )
109518 for(i=0; sqlite3Isdigit(z[i]); i++){}
109522 while( sqlite3Isdigit(z[i]) ){ i++; }
109526 ( sqlite3Isdigit(z[i+1])
109527 || ((z[i+1]=='+' || z[i+1]=='-') && sqlite3Isdigit(z[i+2]))
109531 while( sqlite3Isdigit(z[i]) ){ i++; }
109548 for(i=1; sqlite3Isdigit(z[i]); i++){}
109552 for(i=1; sqlite3Isdigit(z[i]); i++){}