Home
last modified time | relevance | path

Searched refs:isDelim (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/ext/fts1/
H A Dfts1_tokenizer1.c47 static int isDelim(simple_tokenizer *t, unsigned char c){ in isDelim() function
163 while( c->iOffset<c->nBytes && isDelim(t, p[c->iOffset]) ){ in simpleNext()
169 while( c->iOffset<c->nBytes && !isDelim(t, p[c->iOffset]) ){ in simpleNext()
H A Dfts1_porter.c572 #define isDelim(C) (((ch=C)&0x80)==0 && (ch<0x30 || !isIdChar[ch-0x30])) macro
593 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ in porterNext()
599 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ in porterNext()
/sqlite-3.40.0/ext/fts3/
H A Dfts3_porter.c588 #define isDelim(C) (((ch=C)&0x80)==0 && (ch<0x30 || !porterIdChar[ch-0x30])) macro
609 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ in porterNext()
615 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ in porterNext()
/sqlite-3.40.0/ext/fts2/
H A Dfts2_porter.c573 #define isDelim(C) (((ch=C)&0x80)==0 && (ch<0x30 || !porterIdChar[ch-0x30])) macro
594 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ in porterNext()
600 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ in porterNext()