Home
last modified time | relevance | path

Searched defs:Fts3Expr (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts3/
Dfts3Int.h103 typedef struct Fts3Expr Fts3Expr; typedef
248 struct Fts3Expr { struct
251 Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */ argument
252 Fts3Expr *pLeft; /* Left operand */ argument
253 Fts3Expr *pRight; /* Right operand */ argument
254 Fts3Phrase *pPhrase; /* Valid if eType==FTSQUERY_PHRASE */
256 int isLoaded; /* True if aDoclist/nDoclist are initialized. */
257 char *aDoclist; /* Buffer containing doclist */
258 int nDoclist; /* Size of aDoclist in bytes */
260 sqlite3_int64 iCurrent;
[all …]
Dfts3_snippet.c141 int (*x)(Fts3Expr*,int,void*), /* Callback function to invoke for phrases */ in fts3ExprIterate2()
172 int (*x)(Fts3Expr*,int,void*), /* Callback function to invoke for phrases */ in fts3ExprIterate()