| /sqlite-3.40.0/src/ |
| H A D | parse.y | 1165 A = sqlite3PExpr(pParse, TK_VECTOR, 0, 0); 1236 A = sqlite3PExpr(pParse,TK_IS,A,Y); 1240 A = sqlite3PExpr(pParse,TK_ISNOT,A,Y); 1244 A = sqlite3PExpr(pParse,TK_IS,A,Y); 1248 A = sqlite3PExpr(pParse,TK_ISNOT,A,Y); 1273 A = sqlite3PExpr(pParse, TK_BETWEEN, A, 0); 1306 A = sqlite3PExpr(pParse, TK_IN, A, 0); 1329 A = sqlite3PExpr(pParse, TK_IN, A, 0); 1337 A = sqlite3PExpr(pParse, TK_IN, A, 0); 1350 A = sqlite3PExpr(pParse, TK_CASE, X, 0); [all …]
|
| H A D | fkey.c | 596 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight); in fkScanChildren() 621 pNe = sqlite3PExpr(pParse, TK_NE, pLeft, pRight); in fkScanChildren() 630 pEq = sqlite3PExpr(pParse, TK_IS, pLeft, pRight); in fkScanChildren() 633 pNe = sqlite3PExpr(pParse, TK_NOT, pAll, 0); in fkScanChildren() 1260 pEq = sqlite3PExpr(pParse, TK_EQ, in fkActionTrigger() 1261 sqlite3PExpr(pParse, TK_DOT, in fkActionTrigger() 1274 pEq = sqlite3PExpr(pParse, TK_IS, in fkActionTrigger() 1275 sqlite3PExpr(pParse, TK_DOT, in fkActionTrigger() 1278 sqlite3PExpr(pParse, TK_DOT, in fkActionTrigger() 1288 pNew = sqlite3PExpr(pParse, TK_DOT, in fkActionTrigger() [all …]
|
| H A D | whereexpr.c | 879 pNew = sqlite3PExpr(pParse, TK_IN, pDup, 0); in exprAnalyzeOrTerm() 1239 pNewExpr = sqlite3PExpr(pParse, ops[i], in exprAnalyze() 1278 pNewExpr = sqlite3PExpr(pParse, TK_GT, in exprAnalyze() 1365 pNewExpr1 = sqlite3PExpr(pParse, TK_GE, in exprAnalyze() 1373 pNewExpr2 = sqlite3PExpr(pParse, TK_LT, in exprAnalyze() 1412 pNew = sqlite3PExpr(pParse, pExpr->op, pLeft, pRight); in exprAnalyze() 1473 pNewExpr = sqlite3PExpr(pParse, TK_MATCH, in exprAnalyze() 1568 pNew = sqlite3PExpr(pParse, TK_MATCH, 0, pVal); in whereAddLimitExpr() 1573 pNew = sqlite3PExpr(pParse, TK_MATCH, 0, pVal); in whereAddLimitExpr() 1839 pRhs = sqlite3PExpr(pParse, TK_UPLUS, in sqlite3WhereTabFuncArgs() [all …]
|
| H A D | delete.c | 220 pLhs = sqlite3PExpr(pParse, TK_ROW, 0, 0); in sqlite3LimitWhere() 222 pParse, 0, sqlite3PExpr(pParse, TK_ROW, 0, 0) in sqlite3LimitWhere() 236 pLhs = sqlite3PExpr(pParse, TK_VECTOR, 0, 0); in sqlite3LimitWhere() 263 pInClause = sqlite3PExpr(pParse, TK_IN, pLhs, 0); in sqlite3LimitWhere()
|
| H A D | update.c | 144 Expr *pRet = sqlite3PExpr(pParse, TK_ROW, 0, 0); in exprRowColumn() 250 pList = sqlite3ExprListAppend(pParse, 0, sqlite3PExpr(pParse,TK_ROW,0,0)); in updateFromSelect() 253 pGrp = sqlite3ExprListAppend(pParse, 0, sqlite3PExpr(pParse,TK_ROW,0,0)); in updateFromSelect() 1225 pRow = sqlite3PExpr(pParse, TK_ROW, 0, 0); in updateVirtualTable()
|
| H A D | select.c | 602 pEq = sqlite3PExpr(pParse, TK_EQ, pE1, pE2); in sqlite3ProcessJoin() 1056 Expr *pNew = sqlite3PExpr(pParse, TK_COLUMN, 0, 0); in selectExprDefer() 4610 pParent->pWhere = sqlite3PExpr(pParse, TK_AND, pWhere, pParent->pWhere); in flattenSubquery() 6006 pExpr = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight); in selectExpander() 6012 pExpr = sqlite3PExpr(pParse, TK_DOT, pLeft, pExpr); in selectExpander() 6587 pTerm = sqlite3PExpr(pParse, TK_SELECT, 0, 0); in countOfViewOptimization() 6592 pExpr = sqlite3PExpr(pParse, TK_PLUS, pTerm, pExpr); in countOfViewOptimization()
|
| H A D | expr.c | 517 pRet = sqlite3PExpr(pParse, TK_SELECT_COLUMN, 0, 0); in sqlite3ExprForVectorField() 944 Expr *sqlite3PExpr( in sqlite3PExpr() function 1059 return sqlite3PExpr(pParse, TK_AND, pLeft, pRight); in sqlite3ExprAnd() 3333 pLimit = sqlite3PExpr(pParse, TK_NE, in sqlite3CodeSubselect() 3341 pSel->pLimit = sqlite3PExpr(pParse, TK_LIMIT, pLimit, 0); in sqlite3CodeSubselect()
|
| H A D | wherecode.c | 1497 pCompare = sqlite3PExpr(pParse, TK_EQ, 0, 0); in sqlite3WhereCodeOneLoopStart() 2249 pAndExpr = sqlite3PExpr(pParse, TK_AND|0x10000, 0, pAndExpr); in sqlite3WhereCodeOneLoopStart()
|
| H A D | sqliteInt.h | 4582 Expr *sqlite3PExpr(Parse*, int, Expr*, Expr*);
|