WhereTerm        10234 third_party/sqlite/amalgamation/sqlite3.c     struct WhereTerm *pTerm;       /* WHERE clause term for OR-search */
WhereTerm        97747 third_party/sqlite/amalgamation/sqlite3.c typedef struct WhereTerm WhereTerm;
WhereTerm        97792 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *a;            /* Each a[] describes a term of the WHERE cluase */
WhereTerm        97794 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm aStatic[1];    /* Initial static space for a[] */
WhereTerm        97796 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm aStatic[8];    /* Initial static space for a[] */
WhereTerm        97952 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *a;
WhereTerm        97989 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm;
WhereTerm        97993 third_party/sqlite/amalgamation/sqlite3.c     WhereTerm *pOld = pWC->a;
WhereTerm        98220 third_party/sqlite/amalgamation/sqlite3.c static WhereTerm *findTerm(
WhereTerm        98228 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm;
WhereTerm        98504 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm = &pWC->a[idxTerm];    /* The term to be analyzed */
WhereTerm        98509 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pOrTerm;       /* A Sub-term within the pOrWc */
WhereTerm        98545 third_party/sqlite/amalgamation/sqlite3.c         WhereTerm *pAndTerm;
WhereTerm        98573 third_party/sqlite/amalgamation/sqlite3.c         WhereTerm *pOther = &pOrWc->a[pOrTerm->iParent];
WhereTerm        98754 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm;                /* The term to be analyzed */
WhereTerm        98807 third_party/sqlite/amalgamation/sqlite3.c       WhereTerm *pNew;
WhereTerm        98961 third_party/sqlite/amalgamation/sqlite3.c     WhereTerm *pNewTerm;
WhereTerm        99006 third_party/sqlite/amalgamation/sqlite3.c     WhereTerm *pNewTerm;
WhereTerm        99287 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm * const pWCEnd = &pWC->a[pWC->nTerm];        /* End of pWC->a[] */
WhereTerm        99288 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm;                 /* A single term of the WHERE clause */
WhereTerm        99303 third_party/sqlite/amalgamation/sqlite3.c       WhereTerm * const pOrWCEnd = &pOrWC->a[pOrWC->nTerm];
WhereTerm        99304 third_party/sqlite/amalgamation/sqlite3.c       WhereTerm *pOrTerm;
WhereTerm        99366 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm,              /* WHERE clause term to check */
WhereTerm        99399 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm;           /* A single term of the WHERE clause */
WhereTerm        99400 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pWCEnd;          /* End of pWC->a[] */
WhereTerm        99460 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm;           /* A single term of the WHERE clause */
WhereTerm        99461 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pWCEnd;          /* End of pWC->a[] */
WhereTerm        99617 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm;
WhereTerm        99782 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm;
WhereTerm        100100 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pLower,   /* Lower bound on the range. ex: "x>123" Might be NULL */
WhereTerm        100101 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pUpper,   /* Upper bound on the range. ex: "x<455" Might be NULL */
WhereTerm        100488 third_party/sqlite/amalgamation/sqlite3.c     WhereTerm *pTerm;             /* A single term of the WHERE clause */
WhereTerm        100490 third_party/sqlite/amalgamation/sqlite3.c     WhereTerm *pFirstTerm = 0;    /* First term matching the index */
WhereTerm        100523 third_party/sqlite/amalgamation/sqlite3.c         WhereTerm *pTop = findTerm(pWC, iCur, j, notReady, WO_LT|WO_LE, pIdx);
WhereTerm        100524 third_party/sqlite/amalgamation/sqlite3.c         WhereTerm *pBtm = findTerm(pWC, iCur, j, notReady, WO_GT|WO_GE, pIdx);
WhereTerm        100852 third_party/sqlite/amalgamation/sqlite3.c static void disableTerm(WhereLevel *pLevel, WhereTerm *pTerm){
WhereTerm        100859 third_party/sqlite/amalgamation/sqlite3.c       WhereTerm *pOther = &pTerm->pWC->a[pTerm->iParent];
WhereTerm        100920 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm,   /* The term of the WHERE clause to be coded */
WhereTerm        101023 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm;             /* A single constraint term */
WhereTerm        101256 third_party/sqlite/amalgamation/sqlite3.c   WhereTerm *pTerm;               /* A WHERE clause term */
WhereTerm        101368 third_party/sqlite/amalgamation/sqlite3.c     WhereTerm *pStart, *pEnd;
WhereTerm        101490 third_party/sqlite/amalgamation/sqlite3.c     WhereTerm *pRangeStart = 0;  /* Inequality constraint at range start */
WhereTerm        101491 third_party/sqlite/amalgamation/sqlite3.c     WhereTerm *pRangeEnd = 0;    /* Inequality constraint at range end */
WhereTerm        101552 third_party/sqlite/amalgamation/sqlite3.c       SWAP(WhereTerm *, pRangeEnd, pRangeStart);
WhereTerm        101780 third_party/sqlite/amalgamation/sqlite3.c       WhereTerm *pOrTerm = &pOrWc->a[ii];
WhereTerm        1889 third_party/sqlite/src/src/sqliteInt.h     struct WhereTerm *pTerm;       /* WHERE clause term for OR-search */
WhereTerm          93 third_party/sqlite/src/src/where.c typedef struct WhereTerm WhereTerm;
WhereTerm         138 third_party/sqlite/src/src/where.c   WhereTerm *a;            /* Each a[] describes a term of the WHERE cluase */
WhereTerm         140 third_party/sqlite/src/src/where.c   WhereTerm aStatic[1];    /* Initial static space for a[] */
WhereTerm         142 third_party/sqlite/src/src/where.c   WhereTerm aStatic[8];    /* Initial static space for a[] */
WhereTerm         298 third_party/sqlite/src/src/where.c   WhereTerm *a;
WhereTerm         335 third_party/sqlite/src/src/where.c   WhereTerm *pTerm;
WhereTerm         339 third_party/sqlite/src/src/where.c     WhereTerm *pOld = pWC->a;
WhereTerm         566 third_party/sqlite/src/src/where.c static WhereTerm *findTerm(
WhereTerm         574 third_party/sqlite/src/src/where.c   WhereTerm *pTerm;
WhereTerm         850 third_party/sqlite/src/src/where.c   WhereTerm *pTerm = &pWC->a[idxTerm];    /* The term to be analyzed */
WhereTerm         855 third_party/sqlite/src/src/where.c   WhereTerm *pOrTerm;       /* A Sub-term within the pOrWc */
WhereTerm         891 third_party/sqlite/src/src/where.c         WhereTerm *pAndTerm;
WhereTerm         919 third_party/sqlite/src/src/where.c         WhereTerm *pOther = &pOrWc->a[pOrTerm->iParent];
WhereTerm        1100 third_party/sqlite/src/src/where.c   WhereTerm *pTerm;                /* The term to be analyzed */
WhereTerm        1153 third_party/sqlite/src/src/where.c       WhereTerm *pNew;
WhereTerm        1307 third_party/sqlite/src/src/where.c     WhereTerm *pNewTerm;
WhereTerm        1352 third_party/sqlite/src/src/where.c     WhereTerm *pNewTerm;
WhereTerm        1633 third_party/sqlite/src/src/where.c   WhereTerm * const pWCEnd = &pWC->a[pWC->nTerm];        /* End of pWC->a[] */
WhereTerm        1634 third_party/sqlite/src/src/where.c   WhereTerm *pTerm;                 /* A single term of the WHERE clause */
WhereTerm        1649 third_party/sqlite/src/src/where.c       WhereTerm * const pOrWCEnd = &pOrWC->a[pOrWC->nTerm];
WhereTerm        1650 third_party/sqlite/src/src/where.c       WhereTerm *pOrTerm;
WhereTerm        1712 third_party/sqlite/src/src/where.c   WhereTerm *pTerm,              /* WHERE clause term to check */
WhereTerm        1745 third_party/sqlite/src/src/where.c   WhereTerm *pTerm;           /* A single term of the WHERE clause */
WhereTerm        1746 third_party/sqlite/src/src/where.c   WhereTerm *pWCEnd;          /* End of pWC->a[] */
WhereTerm        1806 third_party/sqlite/src/src/where.c   WhereTerm *pTerm;           /* A single term of the WHERE clause */
WhereTerm        1807 third_party/sqlite/src/src/where.c   WhereTerm *pWCEnd;          /* End of pWC->a[] */
WhereTerm        1963 third_party/sqlite/src/src/where.c   WhereTerm *pTerm;
WhereTerm        2128 third_party/sqlite/src/src/where.c   WhereTerm *pTerm;
WhereTerm        2446 third_party/sqlite/src/src/where.c   WhereTerm *pLower,   /* Lower bound on the range. ex: "x>123" Might be NULL */
WhereTerm        2447 third_party/sqlite/src/src/where.c   WhereTerm *pUpper,   /* Upper bound on the range. ex: "x<455" Might be NULL */
WhereTerm        2834 third_party/sqlite/src/src/where.c     WhereTerm *pTerm;             /* A single term of the WHERE clause */
WhereTerm        2836 third_party/sqlite/src/src/where.c     WhereTerm *pFirstTerm = 0;    /* First term matching the index */
WhereTerm        2869 third_party/sqlite/src/src/where.c         WhereTerm *pTop = findTerm(pWC, iCur, j, notReady, WO_LT|WO_LE, pIdx);
WhereTerm        2870 third_party/sqlite/src/src/where.c         WhereTerm *pBtm = findTerm(pWC, iCur, j, notReady, WO_GT|WO_GE, pIdx);
WhereTerm        3198 third_party/sqlite/src/src/where.c static void disableTerm(WhereLevel *pLevel, WhereTerm *pTerm){
WhereTerm        3205 third_party/sqlite/src/src/where.c       WhereTerm *pOther = &pTerm->pWC->a[pTerm->iParent];
WhereTerm        3266 third_party/sqlite/src/src/where.c   WhereTerm *pTerm,   /* The term of the WHERE clause to be coded */
WhereTerm        3369 third_party/sqlite/src/src/where.c   WhereTerm *pTerm;             /* A single constraint term */
WhereTerm        3602 third_party/sqlite/src/src/where.c   WhereTerm *pTerm;               /* A WHERE clause term */
WhereTerm        3714 third_party/sqlite/src/src/where.c     WhereTerm *pStart, *pEnd;
WhereTerm        3836 third_party/sqlite/src/src/where.c     WhereTerm *pRangeStart = 0;  /* Inequality constraint at range start */
WhereTerm        3837 third_party/sqlite/src/src/where.c     WhereTerm *pRangeEnd = 0;    /* Inequality constraint at range end */
WhereTerm        3898 third_party/sqlite/src/src/where.c       SWAP(WhereTerm *, pRangeEnd, pRangeStart);
WhereTerm        4126 third_party/sqlite/src/src/where.c       WhereTerm *pOrTerm = &pOrWc->a[ii];