Home
last modified time | relevance | path

Searched refs:xCond (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/ext/fts3/
H A Dfts3_porter.c273 int (*xCond)(const char*) /* Condition that must be true */ in stem()
278 if( xCond && !xCond(z) ) return 1; in stem()
/sqlite-3.40.0/ext/fts2/
H A Dfts2_porter.c274 int (*xCond)(const char*) /* Condition that must be true */ in stem()
279 if( xCond && !xCond(z) ) return 1; in stem()
/sqlite-3.40.0/ext/fts1/
H A Dfts1_porter.c272 int (*xCond)(const char*) /* Condition that must be true */ in stem()
277 if( xCond && !xCond(z) ) return 1; in stem()
/sqlite-3.40.0/ext/fts5/
H A Dmkportersteps.tcl178 set xCond [lindex $I 1] ;# Condition callback (or "")
185 set cond "${xCond}(aBuf, nBuf-$n)"
H A Dfts5_tokenize.c620 int (*xCond)(char *zStem, int nStem); member
640 if( p->xCond==0 || p->xCond(aBuf, nStem) ){