HomeSort by relevance Sort by last modified time
    Searched refs:pDoclist (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 211 DocList *pDoclist;
216 static void readerInit(DocListReader *r, DocList *pDoclist){
217 r->pDoclist = pDoclist;
218 if( pDoclist!=NULL ){
219 r->p = pDoclist->pData;
225 return pReader->p >= docListEnd(pReader->pDoclist);
249 int iType = pReader->pDoclist->iType;
278 if( pReader->pDoclist->iType >= DL_POSITIONS ){
429 if( m->in.pDoclist!=NULL )
    [all...]
fts1.c 368 DocList *pDoclist; /* The document list we are stepping through */
375 ** Initialize the DocListReader r to point to the beginning of pDoclist.
377 static void readerInit(DocListReader *r, DocList *pDoclist){
378 r->pDoclist = pDoclist;
379 if( pDoclist!=NULL ){
380 r->p = pDoclist->pData;
391 return pReader->pDoclist==0 || (pReader->p >= docListEnd(pReader->pDoclist));
411 if( pReader->pDoclist->iType>=DL_POSITIONS )
    [all...]

Completed in 30 milliseconds