Searched defs:Fts3Expr (Results 1 – 2 of 2) sorted by relevance
103 typedef struct Fts3Expr Fts3Expr; typedef248 struct Fts3Expr { struct251 Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */ argument252 Fts3Expr *pLeft; /* Left operand */ argument253 Fts3Expr *pRight; /* Right operand */ argument254 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 …]
141 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()