Lines Matching refs:sqlite3Isdigit
21050 # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04) macro
21061 # define sqlite3Isdigit(x) isdigit((unsigned char)(x)) macro
24846 if( !sqlite3Isdigit(*zDate) ){ in getDigits()
24931 if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){ in parseHhMmSs()
24934 while( sqlite3Isdigit(*zDate) ){ in parseHhMmSs()
25731 if( !sqlite3Isdigit(*z2) ) z2++; in parseModifier()
35857 if( (bHex==0 && (!sqlite3Isdigit(pIn[-1]) || !sqlite3Isdigit(pIn[1]))) in sqlite3DequoteNumber()
36089 while( z<zEnd && sqlite3Isdigit(*z) ){ in sqlite3AtoF()
36095 while( z<zEnd && sqlite3Isdigit(*z) ){ z+=incr; d++; } in sqlite3AtoF()
36106 while( z<zEnd && sqlite3Isdigit(*z) ){ in sqlite3AtoF()
36136 while( z<zEnd && sqlite3Isdigit(*z) ){ in sqlite3AtoF()
36475 if( !sqlite3Isdigit(zNum[0]) ) return 0; in sqlite3GetInt32()
36660 for(i=0; sqlite3Isdigit(z[i]); i++){ in sqlite3GetUInt32()
94166 assert( sqlite3Isdigit(zRawSql[1]) );
124685 if( sqlite3Isdigit(zChar[0]) ){
125081 needQuote = sqlite3Isdigit(zIdent[0])
140748 if( sqlite3Isdigit(*z) ){
147151 for(j=nName-1; j>0 && sqlite3Isdigit(zName[j]); j--){}
179718 if( !(yymsp[0].minor.yy0.z[0]=='#' && sqlite3Isdigit(yymsp[0].minor.yy0.z[1])) ){
181772 if( !sqlite3Isdigit(z[1]) )
181803 if( sqlite3Isdigit(z[i])==0 ){
181815 if( sqlite3Isdigit(z[i])==0 ){
181825 ( sqlite3Isdigit(z[i+1])
181826 || ((z[i+1]=='+' || z[i+1]=='-') && sqlite3Isdigit(z[i+2]))
181831 if( sqlite3Isdigit(z[i])==0 ){
181855 for(i=1; sqlite3Isdigit(z[i]); i++){}
209234 if( sqlite3Isdigit(z[j]) ){
209274 if( !sqlite3Isdigit(z[j+1]) ) return j+1;
209283 if( sqlite3Isdigit(z[j]) ) continue;
209286 if( x==JSONB_FLOAT && (j==k-1 || !sqlite3Isdigit(z[j+1])) ){
209611 || (c=='0' && !sqlite3Isdigit(z[j+1])) /* Correct implementation */
209665 if( sqlite3Isdigit(z[i+1]) ){
209701 }else if( sqlite3Isdigit(z[i+1]) ){
209706 if( !sqlite3Isdigit(z[i+1]) ){
209730 if( sqlite3Isdigit(z[i+2]) ){
209746 if( sqlite3Isdigit(c) ) continue;
209757 if( ALWAYS(z[j-1]=='.') && ALWAYS(j-2>=i) && sqlite3Isdigit(z[j-2]) ){
209785 if( ALWAYS(z[j-1]=='.') && ALWAYS(j-2>=i) && sqlite3Isdigit(z[j-2]) ){
210096 if( zIn[k]=='.' && (k+1==sz || !sqlite3Isdigit(zIn[k+1])) ){
210591 *piOut = (n>2 && sqlite3Isdigit(z[2])) ? JSON_INVALID_CHAR : 0;
210914 while( sqlite3Isdigit(zPath[i]) ){
210922 if( zPath[2]=='-' && sqlite3Isdigit(zPath[3]) ){
210928 }while( sqlite3Isdigit(zPath[i]) );
211378 || (c!=0x7b && c!=0x5b && !sqlite3Isdigit(c))
217787 #ifdef sqlite3Isdigit
217790 # define safe_isdigit(x) sqlite3Isdigit(x)