Searched defs:sqlite3Isdigit (Results 1 - 1 of 1) sorted by relevance

/external/sqlite/dist/
H A Dsqlite3.c9981 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04) macro
9989 # define sqlite3Isdigit(x) isdigit((unsigned char)(x)) macro
11060 if( !sqlite3Isdigit(*zDate) ){
11148 if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){
11151 while( sqlite3Isdigit(*zDate) ){
11585 if( !sqlite3Isdigit(*z2) ) z2++;
18708 if( !sqlite3Isdigit(*z) ){
18713 while( sqlite3Isdigit(*z) ){ z += incr; }
18716 if( !sqlite3Isdigit(*z) ) return 0;
18717 while( sqlite3Isdigit(*
[all...]

Completed in 202 milliseconds