Home | History | Annotate | Download | only in dist

Lines Matching defs:eSearch

126833   i16 eSearch;                    /* Search strategy (see below) */
126862 ** The Fts3Cursor.eSearch member is always set to one of the following.
126863 ** Actualy, Fts3Cursor.eSearch can be greater than or equal to
126864 ** FTS3_FULLTEXT_SEARCH. If so, then Fts3Cursor.eSearch - 2 is the index
126871 ** Fts3Cursor.eSearch will be set to FTS3_FULLTEXT_SEARCH+1. (+0 for a,
126874 ** then eSearch would be set to FTS3_FULLTEXT_SEARCH+4.
126882 ** the xBestIndex() method contains the Fts3Cursor.eSearch value described
129877 if( pCsr->eSearch==FTS3_DOCID_SEARCH || pCsr->eSearch==FTS3_FULLSCAN_SEARCH ){
129944 int eSearch;
129957 eSearch = (idxNum & 0x0000FFFF);
129958 assert( eSearch>=0 && eSearch<=(FTS3_FULLTEXT_SEARCH+p->nColumn) );
129963 if( eSearch!=FTS3_FULLSCAN_SEARCH ) pCons = apVal[iIdx++];
129984 pCsr->eSearch = (i16)eSearch;
129986 if( eSearch!=FTS3_DOCID_SEARCH && eSearch!=FTS3_FULLSCAN_SEARCH ){
129987 int iCol = eSearch-FTS3_FULLTEXT_SEARCH;
130018 if( eSearch==FTS3_FULLSCAN_SEARCH ){
130029 }else if( eSearch==FTS3_DOCID_SEARCH ){