Lines Matching defs:IdChar
129960 ** IdChar(X) will be true. Otherwise it is false.
129975 #define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0)
129993 #define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40]))
129996 /* Make the IdChar function accessible from ctime.c */
129998 SQLITE_PRIVATE int sqlite3IsIdChar(u8 c){ return IdChar(c); }
130191 while( IdChar(z[i]) ){
130218 if( IdChar(c) ){
130258 if( !IdChar(*z) ){
130261 for(i=1; IdChar(z[i]); i++){}
130449 #define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0)
130453 #define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40]))
130623 if( IdChar((u8)*zSql) ){
130626 for(nId=1; IdChar(zSql[nId]); nId++){}