Searched refs:iColumn (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1.c306 static void addPos(DocList *d, int iColumn, int iPos){ argument
309 if( iColumn!=d->iLastColumn ){
310 assert( iColumn>d->iLastColumn );
312 appendVarint(d, iColumn);
313 d->iLastColumn = iColumn;
322 static void docListAddPos(DocList *d, int iColumn, int iPos){ argument
324 addPos(d, iColumn, iPos);
336 int iColumn, /* Column the inserted term is part of */
342 addPos(d, iColumn, iPos);
420 static int readPosition(DocListReader *pReader, int *iColumn){ argument
334 docListAddPosOffset( DocList *d, int iColumn, int iPos, int iStartOffset, int iEndOffset ) argument
459 int iColumn; local
536 int iPos, iColumn; local
565 int iPos, iColumn; local
954 short int iColumn; /* Column of the index that must match this term */ member in struct:QueryTerm
1112 int iColumn; /* Column being searched */ member in struct:fulltext_cursor
1390 term_select_all( fulltext_vtab *v, int iColumn, const char *pTerm, int nTerm, DocList *out ) argument
2211 snippetOffsetsOfColumn( Query *pQuery, Snippet *pSnippet, int iColumn, const char *zDoc, int nDoc ) argument
2286 int iColumn, i; local
2587 docListOfTerm( fulltext_vtab *v, int iColumn, QueryTerm *pQTerm, DocList **ppResult ) argument
2775 fulltextQuery( fulltext_vtab *v, int iColumn, const char *zInput, int nInput, DocList **pResult, Query *pQuery ) argument
2970 buildTerms(fulltext_vtab *v, fts1Hash *terms, sqlite_int64 iDocid, const char *zText, int iColumn) argument
[all...]
H A Dfulltext.c949 if( pConstraint->iColumn==0 &&
/external/chromium_org/third_party/sqlite/src/src/
H A Dexpr.c50 int j = pExpr->iColumn;
106 int j = p->iColumn;
557 pExpr->iColumn = (ynVar)(++pParse->nVar);
563 pExpr->iColumn = (ynVar)i;
585 pExpr->iColumn = pE->iColumn;
590 pExpr->iColumn = (ynVar)(++pParse->nVar);
1311 return p->iColumn<0
1444 int iCol = pExpr->iColumn; /* Index of column <column> */
1524 if( pX->pLeft->iColumn<
2154 sqlite3ExprCodeGetColumn( Parse *pParse, Table *pTab, int iColumn, int iTable, int iReg ) argument
[all...]
H A Dresolve.c113 ** pExpr->iColumn Set to the column number within the table.
199 pExpr->iColumn = j==pTab->iPKey ? -1 : (i16)j;
271 pExpr->iColumn = (i16)iCol;
284 pExpr->iColumn = -1; /* IMP: R-44911-55124 */
370 if( pExpr->iColumn>=0 && pMatch!=0 ){
371 int n = pExpr->iColumn;
416 p->iColumn = -1;
418 p->iColumn = (ynVar)iCol;
474 pExpr->iColumn = -1;
1113 ** Expr.iColumn Th
[all...]
H A Dtest_tclvar.c232 if( pCons->iColumn==0 && pCons->usable
244 if( pCons->iColumn==0 && pCons->usable
H A Dwhere.c562 ** where X is a reference to the iColumn of table iCur and <op> is one of
569 int iColumn, /* Column number of LHS */
581 && pTerm->u.leftColumn==iColumn
591 idxaff = pIdx->pTable->aCol[iColumn].affinity;
602 for(j=0; pIdx->aiColumn[j]!=iColumn; j++){
670 assert( pLeft->iColumn!=(-1) ); /* Because IPK never has AFF_TEXT */
679 int iCol = pRight->iColumn;
702 sqlite3VdbeSetVarmask(v, pRight->iColumn); /* IMP: R-23257-02778 */
961 int iColumn = -1; /* Column index on lhs of IN operator */ local
967 ** will be recorded in iCursor and iColumn
566 findTerm( WhereClause *pWC, int iCur, int iColumn, Bitmask notReady, u32 op, Index *pIdx ) argument
1457 int iColumn; /* The i-th column of the index. -1 for rowid */ local
[all...]
H A Dtest_stat.c178 && pIdxInfo->aOrderBy[0].iColumn==0
182 && pIdxInfo->aOrderBy[0].iColumn==0
184 && pIdxInfo->aOrderBy[1].iColumn==1
H A Dauth.c167 iCol = pExpr->iColumn;
H A Dtest_fuzzer.c760 && pConstraint->iColumn==0
768 && pConstraint->iColumn==1
783 && pIdxInfo->aOrderBy[0].iColumn==1
H A Dsqlite.h.in4629 ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the
4667 int iColumn; /* Column on left-hand side of constraint */
4674 int iColumn; /* Column number */
H A Dselect.c999 int iCol = pExpr->iColumn; /* Index of column in pTab */
1176 int iCol = p->iColumn;
1253 int iCol = pColExpr->iColumn;
2480 ** a column in table number iTable with a copy of the iColumn-th
2499 if( pExpr->iColumn<0 ){
2503 assert( pEList!=0 && pExpr->iColumn<pEList->nExpr );
2505 pNew = sqlite3ExprDup(db, pEList->a[pExpr->iColumn].pExpr, 0);
4093 pCol->pTab, pCol->iColumn, pCol->iTable, r1);
H A DsqliteInt.h1519 ** pointer to this structure. The Expr.iColumn field is the index in
1538 int iColumn; /* Column number within the source table */ member in struct:AggInfo::AggInfo_col
1603 ** Expr.iColumn is the column number for the specific column. If the
1612 ** If the expression is a subquery then Expr.iColumn holds an integer
1667 ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid. member in struct:Expr
2194 int iColumn; /* Table column number */ member in struct:Parse::yColCache
H A Dfkey.c535 pRight->iColumn = -1;
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c909 int iColumn; /* the last column read */ member in struct:PLReader
920 return pReader->iColumn;
948 n = getVarint32Safe(pReader->pData+nTotal, &pReader->iColumn,
994 pReader->iColumn = 0;
1030 int iColumn; /* the last column written */ member in struct:PLWriter
1039 static void plwAdd(PLWriter *pWriter, int iColumn, int iPos, argument
1041 /* Worst-case space for POS_COLUMN, iColumn, iPosDelta,
1052 if( iColumn!=pWriter->iColumn ){
1054 n += putVarint(c+n, iColumn);
1155 dlcAddPos(DLCollector *pCollector, int iColumn, int iPos, int iStartOffset, int iEndOffset) argument
1186 docListTrim(DocListType iType, const char *pData, int nData, int iColumn, DocListType iOutType, DataBuffer *out) argument
1873 short int iColumn; /* Column of the index that must match this term */ member in struct:QueryTerm
2070 int iColumn; /* Column being searched */ member in struct:fulltext_cursor
3254 snippetOffsetsOfColumn( Query *pQuery, Snippet *pSnippet, int iColumn, const char *zDoc, int nDoc ) argument
3331 int iColumn, i; local
3624 docListOfTerm( fulltext_vtab *v, int iColumn, QueryTerm *pQTerm, DataBuffer *pResult ) argument
3844 fulltextQuery( fulltext_vtab *v, int iColumn, const char *zInput, int nInput, DataBuffer *pResult, Query *pQuery ) argument
4110 buildTerms(fulltext_vtab *v, sqlite_int64 iDocid, const char *zText, int iColumn) argument
6079 termSelect(fulltext_vtab *v, int iColumn, const char *pTerm, int nTerm, int isPrefix, DocListType iType, DataBuffer *out) argument
6916 int iColumn = plrColumn(&plReader); local
6919 dlrDocid(&dlReader), iColumn); local
6926 sqlite3_snprintf(sizeof(buf), buf, "] %d[", iColumn); local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3Int.h230 int iColumn; /* Index of column this phrase must match */ member in struct:Fts3Phrase
H A Dfts3_expr.c135 int iCol, /* Value for Fts3Phrase.iColumn */
165 pRet->pPhrase->iColumn = iCol;
287 p->pPhrase->iColumn = pParse->iDefaultCol;
803 "%zPHRASE %d %d", zBuf, pPhrase->iColumn, pPhrase->isNot);
H A Dfts3_aux.c147 && pInfo->aOrderBy[0].iColumn==0
155 if( pInfo->aConstraint[i].usable && pInfo->aConstraint[i].iColumn==0 ){
H A Dfts3.c1069 && (pCons->iColumn<0 || pCons->iColumn==p->nColumn+1 )
1086 && pCons->iColumn>=0 && pCons->iColumn<=p->nColumn
1088 pInfo->idxNum = FTS3_FULLTEXT_SEARCH + pCons->iColumn;
2247 int iColumn, /* Column to query (or -ve for all columns) */
2264 | (iColumn<p->nColumn ? FTS3_SEGMENT_COLUMN_FILTER : 0);
2265 filter.iCol = iColumn;
2340 int iCol = pExpr->pPhrase->iColumn;
2400 int iCol = pPhrase->iColumn;
2244 fts3TermSelect( Fts3Table *p, Fts3PhraseToken *pTok, int iColumn, int isReqPos, int *pnOut, char **ppOut ) argument
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h4634 ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the
4672 int iColumn; /* Column on left-hand side of constraint */ member in struct:sqlite3_index_info::sqlite3_index_constraint
4679 int iColumn; /* Column number */ member in struct:sqlite3_index_info::sqlite3_index_orderby
H A Dsqlite3.c5177 ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the
5215 int iColumn; /* Column on left-hand side of constraint */ member in struct:sqlite3_index_info::sqlite3_index_constraint
5222 int iColumn; /* Column number */ member in struct:sqlite3_index_info::sqlite3_index_orderby
9864 ** pointer to this structure. The Expr.iColumn field is the index in
9883 int iColumn; /* Column number within the source table */ member in struct:AggInfo::AggInfo_col
9948 ** Expr.iColumn is the column number for the specific column. If the
9957 ** If the expression is a subquery then Expr.iColumn holds an integer
10012 ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid. member in struct:Expr
10539 int iColumn; /* Table column number */ member in struct:Parse::yColCache
72891 sqlite3ExprCodeGetColumn( Parse *pParse, Table *pTab, int iColumn, int iTable, int iReg ) argument
98220 findTerm( WhereClause *pWC, int iCur, int iColumn, Bitmask notReady, u32 op, Index *pIdx ) argument
98615 int iColumn = -1; /* Column index on lhs of IN operator */ local
99111 int iColumn; /* The i-th column of the index. -1 for rowid */ local
113210 int iColumn; /* Index of column this phrase must match */ member in struct:Fts3Phrase
115305 fts3TermSelect( Fts3Table *p, Fts3PhraseToken *pTok, int iColumn, int isReqPos, int *pnOut, char **ppOut ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.h5358 ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the
5408 int iColumn; /* Column on left-hand side of constraint */ member in struct:sqlite3_index_info::sqlite3_index_constraint
5415 int iColumn; /* Column number */ member in struct:sqlite3_index_info::sqlite3_index_orderby
H A Dsqlite3.c5473 ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the
5523 int iColumn; /* Column on left-hand side of constraint */ member in struct:sqlite3_index_info::sqlite3_index_constraint
5530 int iColumn; /* Column number */ member in struct:sqlite3_index_info::sqlite3_index_orderby
11231 ** pointer to this structure. The Expr.iColumn field is the index in
11252 int iColumn; /* Column number within the source table */ member in struct:AggInfo::AggInfo_col
11315 ** Expr.iColumn is the column number for the specific column. If the
11324 ** If the expression is a subquery then Expr.iColumn holds an integer
11382 ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid. member in struct:Expr
11938 i16 iColumn; /* Table column number */ member in struct:Parse::yColCache
80598 sqlite3ExprCodeGetColumn( Parse *pParse, Table *pTab, int iColumn, int iTable, int iReg, u8 p5 ) argument
111337 int iColumn; /* The column on the LHS of the term. -1 for IPK */ local
111425 whereScanInit( WhereScan *pScan, WhereClause *pWC, int iCur, int iColumn, u32 opMask, Index *pIdx ) argument
111480 findTerm( WhereClause *pWC, int iCur, int iColumn, Bitmask notReady, u32 op, Index *pIdx ) argument
111853 int iColumn = -1; /* Column index on lhs of IN operator */ local
116037 int iColumn; /* A column number within table iCur */ local
126910 int iColumn; /* Index of column this phrase must match */ member in struct:Fts3Phrase
129771 fts3TermSelect( Fts3Table *p, Fts3PhraseToken *pTok, int iColumn, int *pnOut, char **ppOut ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.h5358 ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the
5408 int iColumn; /* Column on left-hand side of constraint */ member in struct:sqlite3_index_info::sqlite3_index_constraint
5415 int iColumn; /* Column number */ member in struct:sqlite3_index_info::sqlite3_index_orderby
H A Dsqlite3.c5473 ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the
5523 int iColumn; /* Column on left-hand side of constraint */ member in struct:sqlite3_index_info::sqlite3_index_constraint
5530 int iColumn; /* Column number */ member in struct:sqlite3_index_info::sqlite3_index_orderby
11231 ** pointer to this structure. The Expr.iColumn field is the index in
11252 int iColumn; /* Column number within the source table */ member in struct:AggInfo::AggInfo_col
11315 ** Expr.iColumn is the column number for the specific column. If the
11324 ** If the expression is a subquery then Expr.iColumn holds an integer
11382 ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid. member in struct:Expr
11938 i16 iColumn; /* Table column number */ member in struct:Parse::yColCache
80618 sqlite3ExprCodeGetColumn( Parse *pParse, Table *pTab, int iColumn, int iTable, int iReg, u8 p5 ) argument
111357 int iColumn; /* The column on the LHS of the term. -1 for IPK */ local
111445 whereScanInit( WhereScan *pScan, WhereClause *pWC, int iCur, int iColumn, u32 opMask, Index *pIdx ) argument
111500 findTerm( WhereClause *pWC, int iCur, int iColumn, Bitmask notReady, u32 op, Index *pIdx ) argument
111873 int iColumn = -1; /* Column index on lhs of IN operator */ local
116057 int iColumn; /* A column number within table iCur */ local
126930 int iColumn; /* Index of column this phrase must match */ member in struct:Fts3Phrase
129791 fts3TermSelect( Fts3Table *p, Fts3PhraseToken *pTok, int iColumn, int *pnOut, char **ppOut ) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c1367 if( p->usable && p->iColumn==0 && p->op==SQLITE_INDEX_CONSTRAINT_EQ ){
1387 if( p->usable && (p->iColumn>0 || p->op==SQLITE_INDEX_CONSTRAINT_MATCH) ){
1401 zIdxStr[iIdx++] = p->iColumn - 1 + 'a';

Completed in 8608 milliseconds