• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/Heimdal-398.1.2/lib/sqlite/

Lines Matching refs:idxNum

5335   int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5396 ** ^The idxNum and idxPtr values are recorded and passed into the
5429 int idxNum; /* Number used to identify the index */
102110 sqlite3DebugPrintf(" idxNum=%d\n", p->idxNum);
102719 pIdxInfo->idxNum = 0;
104098 pVtabIdx->idxNum, pVtabIdx->idxStr);
104200 sqlite3VdbeAddOp2(v, OP_Integer, pVtabIdx->idxNum, iReg);
115445 pInfo->idxNum = FTS3_FULLSCAN_SEARCH;
115455 pInfo->idxNum = FTS3_DOCID_SEARCH;
115472 pInfo->idxNum = FTS3_FULLTEXT_SEARCH + pCons->iColumn;
116853 ** If idxNum==FTS3_FULLSCAN_SEARCH then do a full table scan against
116856 ** If idxNum==FTS3_DOCID_SEARCH then do a docid lookup for a single entry
116859 ** If idxNum>=FTS3_FULLTEXT_SEARCH then use the full text index. The
116861 ** number idxNum-FTS3_FULLTEXT_SEARCH, 0 indexed. argv[0] is the right-hand
116866 int idxNum, /* Strategy index */
116879 assert( idxNum>=0 && idxNum<=(FTS3_FULLTEXT_SEARCH+p->nColumn) );
116881 assert( (nVal==0)==(idxNum==FTS3_FULLSCAN_SEARCH) );
116895 pCsr->eSearch = (i16)idxNum;
116897 if( idxNum!=FTS3_DOCID_SEARCH && idxNum!=FTS3_FULLSCAN_SEARCH ){
116898 int iCol = idxNum-FTS3_FULLTEXT_SEARCH;
116932 if( idxNum==FTS3_FULLSCAN_SEARCH ){
116945 if( idxNum==FTS3_DOCID_SEARCH ){
119228 pInfo->idxNum = FTS4AUX_EQ_CONSTRAINT;
119232 pInfo->idxNum = 0;
119235 pInfo->idxNum += FTS4AUX_GE_CONSTRAINT;
119240 pInfo->idxNum += FTS4AUX_LE_CONSTRAINT;
119396 int idxNum, /* Strategy index */
119410 assert( idxNum==FTS4AUX_EQ_CONSTRAINT || idxNum==0
119411 || idxNum==FTS4AUX_LE_CONSTRAINT || idxNum==FTS4AUX_GE_CONSTRAINT
119412 || idxNum==(FTS4AUX_LE_CONSTRAINT|FTS4AUX_GE_CONSTRAINT)
119414 isScan = (idxNum!=FTS4AUX_EQ_CONSTRAINT);
119426 if( idxNum&(FTS4AUX_EQ_CONSTRAINT|FTS4AUX_GE_CONSTRAINT) ){
119434 if( idxNum&FTS4AUX_LE_CONSTRAINT ){
119435 int iIdx = (idxNum&FTS4AUX_GE_CONSTRAINT) ? 1 : 0;
127243 int iStrategy; /* Copy of idxNum search parameter */
128264 int idxNum, const char *idxStr,
128277 pCsr->iStrategy = idxNum;
128279 if( idxNum==1 ){
128354 ** idxNum idxStr Strategy
128403 pIdxInfo->idxNum = 1;
128436 pIdxInfo->idxNum = 2;