Home | History | Annotate | Download | only in dist

Lines Matching defs:idxNum

5432   int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5493 ** ^The idxNum and idxPtr values are recorded and passed into the
5538 int idxNum; /* Number used to identify the index */
110592 int idxNum; /* Index number */
112448 sqlite3DebugPrintf(" idxNum=%d\n", p->idxNum);
113779 pLoop->u.vtab.idxNum, pLoop->u.vtab.idxStr);
113888 sqlite3VdbeAddOp2(v, OP_Integer, pLoop->u.vtab.idxNum, iReg);
114713 p->u.vtab.idxNum, p->u.vtab.idxStr, p->u.vtab.omitMask);
114715 z = sqlite3_mprintf("(%d,%x)", p->u.vtab.idxNum, p->u.vtab.omitMask);
115789 pIdxInfo->idxNum = 0;
115845 pNew->u.vtab.idxNum = pIdxInfo->idxNum;
126881 ** The lower 16-bits of the sqlite3_index_info.idxNum value set by
128362 pInfo->idxNum = FTS3_FULLSCAN_SEARCH;
128374 pInfo->idxNum = FTS3_FULLSCAN_SEARCH;
128386 pInfo->idxNum = FTS3_DOCID_SEARCH;
128403 pInfo->idxNum = FTS3_FULLTEXT_SEARCH + pCons->iColumn;
128436 pInfo->idxNum |= FTS3_HAVE_LANGID;
128440 pInfo->idxNum |= FTS3_HAVE_DOCID_GE;
128444 pInfo->idxNum |= FTS3_HAVE_DOCID_LE;
129924 ** If idxNum==FTS3_FULLSCAN_SEARCH then do a full table scan against
129927 ** If idxNum==FTS3_DOCID_SEARCH then do a docid lookup for a single entry
129930 ** If idxNum>=FTS3_FULLTEXT_SEARCH then use the full text index. The
129932 ** number idxNum-FTS3_FULLTEXT_SEARCH, 0 indexed. argv[0] is the right-hand
129937 int idxNum, /* Strategy index */
129957 eSearch = (idxNum & 0x0000FFFF);
129964 if( idxNum & FTS3_HAVE_LANGID ) pLangid = apVal[iIdx++];
129965 if( idxNum & FTS3_HAVE_DOCID_GE ) pDocidGe = apVal[iIdx++];
129966 if( idxNum & FTS3_HAVE_DOCID_LE ) pDocidLe = apVal[iIdx++];
132857 pInfo->idxNum = FTS4AUX_EQ_CONSTRAINT;
132861 pInfo->idxNum = 0;
132864 pInfo->idxNum += FTS4AUX_GE_CONSTRAINT;
132869 pInfo->idxNum += FTS4AUX_LE_CONSTRAINT;
133029 int idxNum, /* Strategy index */
133050 assert( idxNum==FTS4AUX_EQ_CONSTRAINT || idxNum==0
133051 || idxNum==FTS4AUX_LE_CONSTRAINT || idxNum==FTS4AUX_GE_CONSTRAINT
133052 || idxNum==(FTS4AUX_LE_CONSTRAINT|FTS4AUX_GE_CONSTRAINT)
133055 if( idxNum==FTS4AUX_EQ_CONSTRAINT ){
133059 if( idxNum & FTS4AUX_GE_CONSTRAINT ){
133062 if( idxNum & FTS4AUX_LE_CONSTRAINT ){
136520 pInfo->idxNum = 1;
136528 pInfo->idxNum = 0;
136609 int idxNum, /* Strategy index */
136621 if( idxNum==1 ){
144903 int iStrategy; /* Copy of idxNum search parameter */
146201 int idxNum, const char *idxStr,
146219 pCsr->iStrategy = idxNum;
146220 if( idxNum==1 ){
146318 ** idxNum idxStr Strategy
146368 pIdxInfo->idxNum = 1;
146403 pIdxInfo->idxNum = 2;