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

/external/chromium_org/third_party/sqlite/src/src/
H A DsqliteInt.h2544 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04) macro
2552 # define sqlite3Isdigit(x) isdigit((unsigned char)(x)) macro
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c10904 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04) macro
10912 # define sqlite3Isdigit(x) isdigit((unsigned char)(x)) macro
12982 if( !sqlite3Isdigit(*zDate) ){
13064 if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){
13067 while( sqlite3Isdigit(*zDate) ){
13501 if( !sqlite3Isdigit(*z2) ) z2++;
20531 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
20538 while( z<zEnd && sqlite3Isdigit(*z) ) z+=incr, nDigits++, d++;
20546 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
20551 while( z<zEnd && sqlite3Isdigit(*
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c11452 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04) macro
11460 # define sqlite3Isdigit(x) isdigit((unsigned char)(x)) macro
13640 if( !sqlite3Isdigit(*zDate) ){
13722 if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){
13725 while( sqlite3Isdigit(*zDate) ){
14213 if( !sqlite3Isdigit(*z2) ) z2++;
21341 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
21348 while( z<zEnd && sqlite3Isdigit(*z) ) z+=incr, nDigits++, d++;
21356 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
21361 while( z<zEnd && sqlite3Isdigit(*
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11452 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04) macro
11460 # define sqlite3Isdigit(x) isdigit((unsigned char)(x)) macro
13640 if( !sqlite3Isdigit(*zDate) ){
13722 if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){
13725 while( sqlite3Isdigit(*zDate) ){
14213 if( !sqlite3Isdigit(*z2) ) z2++;
21341 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
21348 while( z<zEnd && sqlite3Isdigit(*z) ) z+=incr, nDigits++, d++;
21356 while( z<zEnd && sqlite3Isdigit(*z) && s<((LARGEST_INT64-9)/10) ){
21361 while( z<zEnd && sqlite3Isdigit(*
[all...]

Completed in 491 milliseconds