Searched refs:pWC (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dwhere.c51 ** WhereTerm.pWC->a[WhereTerm.idx] == WhereTerm
96 int iParent; /* Disable pWC->a[iParent] when this term disabled */
106 WhereClause *pWC; /* The clause this term is part of */ member in struct:WhereTerm
261 WhereClause *pWC, /* The WhereClause to be initialized */
265 pWC->pParse = pParse;
266 pWC->pMaskSet = pMaskSet;
267 pWC->nTerm = 0;
268 pWC->nSlot = ArraySize(pWC->aStatic);
269 pWC
260 whereClauseInit( WhereClause *pWC, Parse *pParse, WhereMaskSet *pMaskSet ) argument
296 whereClauseClear(WhereClause *pWC) argument
334 whereClauseInsert(WhereClause *pWC, Expr *p, u8 wtFlags) argument
380 whereSplit(WhereClause *pWC, Expr *pExpr, int op) argument
566 findTerm( WhereClause *pWC, int iCur, int iColumn, Bitmask notReady, u32 op, Index *pIdx ) argument
843 exprAnalyzeOrTerm( SrcList *pSrc, WhereClause *pWC, int idxTerm ) argument
1095 exprAnalyze( SrcList *pSrc, WhereClause *pWC, int idxTerm ) argument
1621 bestOrClauseIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, WhereCost *pCost ) argument
1735 bestAutomaticIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, WhereCost *pCost ) argument
1798 constructAutomaticIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, WhereLevel *pLevel ) argument
1952 allocateIndexInfo( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, ExprList *pOrderBy ) argument
2114 bestVirtualIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, WhereCost *pCost, sqlite3_index_info **ppIdxInfo ) argument
2685 bestBtreeIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, WhereCost *pCost ) argument
3148 bestIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, WhereCost *pCost ) argument
3357 codeAllEqualityTerms( Parse *pParse, WhereLevel *pLevel, WhereClause *pWC, Bitmask notReady, int nExtraReg, char **pzAff ) argument
3601 WhereClause *pWC; /* Decomposition of the entire WHERE clause */ local
4380 WhereClause *pWC; /* Decomposition of the WHERE clause */ local
[all...]
H A DsqliteInt.h1969 struct WhereClause *pWC; /* Decomposition of the WHERE clause */ member in struct:WhereInfo
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c10314 struct WhereClause *pWC; /* Decomposition of the WHERE clause */ member in struct:WhereInfo
97760 WhereClause *pWC; /* The clause this term is part of */ member in struct:WhereTerm
97914 whereClauseInit( WhereClause *pWC, Parse *pParse, WhereMaskSet *pMaskSet ) argument
97950 whereClauseClear(WhereClause *pWC) argument
97988 whereClauseInsert(WhereClause *pWC, Expr *p, u8 wtFlags) argument
98034 whereSplit(WhereClause *pWC, Expr *pExpr, int op) argument
98220 findTerm( WhereClause *pWC, int iCur, int iColumn, Bitmask notReady, u32 op, Index *pIdx ) argument
98497 exprAnalyzeOrTerm( SrcList *pSrc, WhereClause *pWC, int idxTerm ) argument
98749 exprAnalyze( SrcList *pSrc, WhereClause *pWC, int idxTerm ) argument
99275 bestOrClauseIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, WhereCost *pCost ) argument
99389 bestAutomaticIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, WhereCost *pCost ) argument
99452 constructAutomaticIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, WhereLevel *pLevel ) argument
99606 allocateIndexInfo( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, ExprList *pOrderBy ) argument
99768 bestVirtualIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, WhereCost *pCost, sqlite3_index_info **ppIdxInfo ) argument
100339 bestBtreeIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, WhereCost *pCost ) argument
100802 bestIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, WhereCost *pCost ) argument
101011 codeAllEqualityTerms( Parse *pParse, WhereLevel *pLevel, WhereClause *pWC, Bitmask notReady, int nExtraReg, char **pzAff ) argument
101255 WhereClause *pWC; /* Decomposition of the entire WHERE clause */ local
102034 WhereClause *pWC; /* Decomposition of the WHERE clause */ local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c110705 WhereClause *pWC; /* The clause this term is part of */ member in struct:WhereTerm
110732 WhereClause *pWC; /* WhereClause currently being scanned */ member in struct:WhereScan
110822 WhereClause *pWC; /* WHERE clause terms */ member in struct:WhereLoopBuilder
111027 whereClauseInit( WhereClause *pWC, WhereInfo *pWInfo ) argument
111061 whereClauseClear(WhereClause *pWC) argument
111099 whereClauseInsert(WhereClause *pWC, Expr *p, u8 wtFlags) argument
111150 whereSplit(WhereClause *pWC, Expr *pExpr, u8 op) argument
111339 WhereClause *pWC; /* Shorthand for pScan->pWC */ 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
111735 exprAnalyzeOrTerm( SrcList *pSrc, WhereClause *pWC, int idxTerm ) argument
111984 exprAnalyze( SrcList *pSrc, WhereClause *pWC, int idxTerm ) argument
112326 isDistinctRedundant( Parse *pParse, SrcList *pTabList, WhereClause *pWC, ExprList *pDistinct ) argument
112468 constructAutomaticIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, WhereLevel *pLevel ) argument
112626 allocateIndexInfo( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, ExprList *pOrderBy ) argument
113787 WhereClause *pWC; /* Decomposition of the entire WHERE clause */ local
114668 whereLoopPrint(WhereLoop *p, WhereClause *pWC) argument
115104 whereLoopOutputAdjust(WhereClause *pWC, WhereLoop *pLoop) argument
115449 whereUsablePartialIndex(int iTab, WhereClause *pWC, Expr *pWhere) argument
115511 WhereClause *pWC; /* The parsed WHERE clause */ local
115691 WhereClause *pWC; /* The WHERE clause */ local
115855 WhereClause *pWC; local
116692 WhereClause *pWC; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c110725 WhereClause *pWC; /* The clause this term is part of */ member in struct:WhereTerm
110752 WhereClause *pWC; /* WhereClause currently being scanned */ member in struct:WhereScan
110842 WhereClause *pWC; /* WHERE clause terms */ member in struct:WhereLoopBuilder
111047 whereClauseInit( WhereClause *pWC, WhereInfo *pWInfo ) argument
111081 whereClauseClear(WhereClause *pWC) argument
111119 whereClauseInsert(WhereClause *pWC, Expr *p, u8 wtFlags) argument
111170 whereSplit(WhereClause *pWC, Expr *pExpr, u8 op) argument
111359 WhereClause *pWC; /* Shorthand for pScan->pWC */ 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
111755 exprAnalyzeOrTerm( SrcList *pSrc, WhereClause *pWC, int idxTerm ) argument
112004 exprAnalyze( SrcList *pSrc, WhereClause *pWC, int idxTerm ) argument
112346 isDistinctRedundant( Parse *pParse, SrcList *pTabList, WhereClause *pWC, ExprList *pDistinct ) argument
112488 constructAutomaticIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, WhereLevel *pLevel ) argument
112646 allocateIndexInfo( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, ExprList *pOrderBy ) argument
113807 WhereClause *pWC; /* Decomposition of the entire WHERE clause */ local
114688 whereLoopPrint(WhereLoop *p, WhereClause *pWC) argument
115124 whereLoopOutputAdjust(WhereClause *pWC, WhereLoop *pLoop) argument
115469 whereUsablePartialIndex(int iTab, WhereClause *pWC, Expr *pWhere) argument
115531 WhereClause *pWC; /* The parsed WHERE clause */ local
115711 WhereClause *pWC; /* The WHERE clause */ local
115875 WhereClause *pWC; local
116712 WhereClause *pWC; local
[all...]

Completed in 786 milliseconds