isDelim 119112 third_party/sqlite/amalgamation/sqlite3.c #define isDelim(C) (((ch=C)&0x80)==0 && (ch<0x30 || !porterIdChar[ch-0x30])) isDelim 572 third_party/sqlite/src/ext/fts1/fts1_porter.c #define isDelim(C) (((ch=C)&0x80)==0 && (ch<0x30 || !isIdChar[ch-0x30])) isDelim 47 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c static int isDelim(simple_tokenizer *t, unsigned char c){ isDelim 570 third_party/sqlite/src/ext/fts2/fts2_porter.c #define isDelim(C) (((ch=C)&0x80)==0 && (ch<0x30 || !porterIdChar[ch-0x30])) isDelim 573 third_party/sqlite/src/ext/fts3/fts3_porter.c #define isDelim(C) (((ch=C)&0x80)==0 && (ch<0x30 || !porterIdChar[ch-0x30]))