Lines Matching defs: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];
122013 if( pInfo->aConstraint[i].usable && pInfo->aConstraint[i].iColumn==0 ){
122014 int op = pInfo->aConstraint[i].op;
130376 int nConstraint; /* Number of entries in aConstraint */
130377 RtreeConstraint *aConstraint; /* Search constraints. */
130980 ** Free the RtreeCursor.aConstraint[] array and its contents.
130983 if( pCsr->aConstraint ){
130986 sqlite3_rtree_geometry *pGeom = pCsr->aConstraint[i].pGeom;
130992 sqlite3_free(pCsr->aConstraint);
130993 pCsr->aConstraint = 0;
131047 ** (excluded) by the constraints in the pCursor->aConstraint[]
131061 RtreeConstraint *p = &pCursor->aConstraint[ii];
131098 ** pCursor->aConstraint[] array. If so, set *pbEof to true before
131114 RtreeConstraint *p = &pCursor->aConstraint[ii];
131422 /* Normal case - r-tree scan. Set up the RtreeCursor.aConstraint array
131426 pCsr->aConstraint = sqlite3_malloc(sizeof(RtreeConstraint)*argc);
131428 if( !pCsr->aConstraint ){
131431 memset(pCsr->aConstraint, 0, sizeof(RtreeConstraint)*argc);
131435 RtreeConstraint *p = &pCsr->aConstraint[ii];
131527 struct sqlite3_index_constraint *p = &pIdxInfo->aConstraint[ii];