Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3Isdigit

10646 # define sqlite3Isdigit(x)   (sqlite3CtypeMap[(unsigned char)(x)]&0x04)
10654 # define sqlite3Isdigit(x) isdigit((unsigned char)(x))
12720 if( !sqlite3Isdigit(*zDate) ){
12802 if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){
12805 while( sqlite3Isdigit(*zDate) ){
13239 if( !sqlite3Isdigit(*z2) ) z2++;
20248 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
20255 while( z<zEnd && sqlite3Isdigit(*z) ) z+=incr, nDigits++, d++;
20263 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
20268 while( z<zEnd && sqlite3Isdigit(*z) ) z+=incr, nDigits++;
20285 while( z<zEnd && sqlite3Isdigit(*z) ){
59861 assert( sqlite3Isdigit(zRawSql[1]) );
76169 needQuote = sqlite3Isdigit(zIdent[0]) || sqlite3KeywordCode(zIdent, j)!=TK_ID;
85506 if( sqlite3Isdigit(*z) ){
104164 if( !sqlite3Isdigit(z[1]) )
104180 for(i=0; sqlite3Isdigit(z[i]); i++){}
104184 while( sqlite3Isdigit(z[i]) ){ i++; }
104188 ( sqlite3Isdigit(z[i+1])
104189 || ((z[i+1]=='+' || z[i+1]=='-') && sqlite3Isdigit(z[i+2]))
104193 while( sqlite3Isdigit(z[i]) ){ i++; }
104210 for(i=1; sqlite3Isdigit(z[i]); i++){}
104214 for(i=1; sqlite3Isdigit(z[i]); i++){}