Home | History | Annotate | Download | only in dist

Lines Matching refs:aConstraint

5544 ** ^(The aConstraint[] array records WHERE clause constraints of the form:
5549 ** stored in aConstraint[].op using one of the
5552 ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the
5559 ** ^The aConstraint[] array only reports WHERE clause terms that are
5567 ** the right-hand side of the corresponding aConstraint[] is evaluated
5588 int nConstraint; /* Number of entries in aConstraint */
5594 } *aConstraint; /* Table of WHERE clause constraints */
5616 ** [sqlite3_index_info].aConstraint[].op field. Each value represents
104328 p->aConstraint[i].iColumn,
104329 p->aConstraint[i].iTermOffset,
104330 p->aConstraint[i].op,
104331 p->aConstraint[i].usable);
104779 *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint = pIdxCons;
104852 if( !p->aConstraint[i].usable && p->aConstraintUsage[i].argvIndex>0 ){
104929 /* Set the aConstraint[].usable fields and initialize all
104932 ** aConstraint[].usable is true for constraints where the right-hand
104949 pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint;
104975 pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint;
106434 const struct sqlite3_index_constraint *aConstraint =
106435 pVtabIdx->aConstraint;
106442 int iTerm = aConstraint[k].iTermOffset;
106456 int iTerm = aConstraint[j].iTermOffset;
118077 struct sqlite3_index_constraint *pCons = &pInfo->aConstraint[i];
122011 if( pInfo->aConstraint[i].usable && pInfo->aConstraint[i].iColumn==0 ){
122012 int op = pInfo->aConstraint[i].op;
130374 int nConstraint; /* Number of entries in aConstraint */
130375 RtreeConstraint *aConstraint; /* Search constraints. */
130978 ** Free the RtreeCursor.aConstraint[] array and its contents.
130981 if( pCsr->aConstraint ){
130984 sqlite3_rtree_geometry *pGeom = pCsr->aConstraint[i].pGeom;
130990 sqlite3_free(pCsr->aConstraint);
130991 pCsr->aConstraint = 0;
131045 ** (excluded) by the constraints in the pCursor->aConstraint[]
131059 RtreeConstraint *p = &pCursor->aConstraint[ii];
131096 ** pCursor->aConstraint[] array. If so, set *pbEof to true before
131112 RtreeConstraint *p = &pCursor->aConstraint[ii];
131420 /* Normal case - r-tree scan. Set up the RtreeCursor.aConstraint array
131424 pCsr->aConstraint = sqlite3_malloc(sizeof(RtreeConstraint)*argc);
131426 if( !pCsr->aConstraint ){
131429 memset(pCsr->aConstraint, 0, sizeof(RtreeConstraint)*argc);
131433 RtreeConstraint *p = &pCsr->aConstraint[ii];
131525 struct sqlite3_index_constraint *p = &pIdxInfo->aConstraint[ii];