Home
last modified time | relevance | path

Searched refs:Expr (Results 1 – 11 of 11) sorted by relevance

/titanic_41/usr/src/lib/libsqlite/src/
H A DsqliteInt.h238 typedef struct Expr Expr; typedef
684 struct Expr { struct
689 Expr *pLeft, *pRight; /* Left and right subnodes */ argument
728 Expr *pExpr; /* The list of expressions */
782 Expr *pOn; /* The ON clause of a join */
858 Expr *pWhere; /* The WHERE clause */
860 Expr *pHaving; /* The HAVING clause */
903 Expr *pExpr; /* The expression */
977 Expr *pWhen; /* The WHEN clause of the expresion (may be NULL) */
1033 Expr *pWhere; /* Valid for DELETE, UPDATE steps */
[all …]
H A Dexpr.c28 Expr *sqliteExpr(int op, Expr *pLeft, Expr *pRight, Token *pToken){ in sqliteExpr()
29 Expr *pNew; in sqliteExpr()
30 pNew = sqliteMalloc( sizeof(Expr) ); in sqliteExpr()
59 void sqliteExprSpan(Expr *pExpr, Token *pLeft, Token *pRight){ in sqliteExprSpan()
77 Expr *sqliteExprFunction(ExprList *pList, Token *pToken){ in sqliteExprFunction()
78 Expr *pNew; in sqliteExprFunction()
79 pNew = sqliteMalloc( sizeof(Expr) ); in sqliteExprFunction()
99 void sqliteExprDelete(Expr *p){ in sqliteExprDelete()
123 Expr *sqliteExprDup(Expr *p){ in sqliteExprDup()
124 Expr *pNew; in sqliteExprDup()
[all …]
H A Dselect.c30 Expr *pWhere, /* the WHERE clause */ in sqliteSelectNew()
32 Expr *pHaving, /* the HAVING clause */ in sqliteSelectNew()
158 Expr **ppExpr /* Add the equality term to this expression */ in addWhereTerm()
161 Expr *pE1a, *pE1b, *pE1c; in addWhereTerm()
162 Expr *pE2a, *pE2b, *pE2c; in addWhereTerm()
163 Expr *pE; in addWhereTerm()
197 static void setJoinExpr(Expr *p){ in setJoinExpr()
670 Expr *p = pEList->a[i].pExpr; in generateColumnTypes()
718 Expr *p; in generateColumnNames()
809 Expr *p, *pR; in sqliteResultSetOfSelect()
[all …]
H A Dwhere.c29 Expr *p; /* Pointer to the subexpression */
69 static int exprSplit(int nSlot, ExprInfo *aSlot, Expr *pExpr){ in exprSplit()
125 static int exprTableUsage(ExprMaskSet *pMaskSet, Expr *p){ in exprTableUsage()
174 Expr *pExpr = pInfo->p; in exprAnalyze()
232 Expr *p; in findSortingIndex()
299 static void disableTerm(WhereLevel *pLevel, Expr **ppExpr){ in disableTerm()
300 Expr *pExpr = *ppExpr; in disableTerm()
386 Expr *pWhere, /* The WHERE clause */ in sqliteWhereBegin()
754 Expr *pX = aExpr[k].p; in sqliteWhereBegin()
789 Expr *pX = aExpr[k].p; in sqliteWhereBegin()
[all …]
H A Dparse.y337 Expr *pRight = sqliteExpr(TK_ALL, 0, 0, 0);
338 Expr *pLeft = sqliteExpr(TK_ID, 0, 0, &X);
422 %type on_opt {Expr*}
437 %type sortitem {Expr*}
466 %type having_opt {Expr*}
485 %type where_opt {Expr*}
535 %type expr {Expr*}
543 Expr *temp1 = sqliteExpr(TK_ID, 0, 0, &X);
544 Expr *temp2 = sqliteExpr(TK_ID, 0, 0, &Y);
548 Expr *temp1 = sqliteExpr(TK_ID, 0, 0, &X);
[all …]
H A Dtrigger.c52 Expr *pWhen, /* WHEN clause */ in sqliteBeginTrigger()
256 Expr *pNew = sqliteExprDup(p->pWhere); in sqlitePersistTriggerStep()
330 Expr *pWhere, /* The WHERE clause */ in sqliteTriggerUpdateStep()
351 TriggerStep *sqliteTriggerDeleteStep(Token *pTableName, Expr *pWhere){ in sqliteTriggerDeleteStep()
725 Expr * whenExpr; in sqliteCodeRowTrigger()
H A Dupdate.c33 Expr *pWhere, /* The WHERE clause. May be null */ in sqliteUpdate()
53 Expr *pRecnoExpr; /* Expression defining the new record number */ in sqliteUpdate()
H A Dauth.c108 Expr *pExpr, /* The expression to check authorization on */ in sqliteAuthRead()
H A Dattach.c268 Expr *pExpr /* The expression to be fixed to one database */ in sqliteFixExpr()
H A Ddelete.c62 Expr *pWhere /* The WHERE clause. May be null */ in sqliteDeleteFrom()
/titanic_41/usr/src/tools/cscope-fast/
H A Dcgrep.c100 typedef struct Expr { struct
106 struct Expr *l; /* pointer to Left child (or ccl count) */ argument
107 struct Expr *r; /* pointer to Right child (or ccl mask) */ argument
108 struct Expr *parent; /* pointer to Parent */ argument
109 } Expr; typedef
138 Expr *root; /* Pointer to root (EOP) expression */
139 Expr **ptr; /* Pointer to array of ptrs to lit expressions. */
242 void epr(Expr *e, uchar_t *res);
254 static BOOL match(Expr *e, int a);
255 static BOOL first_lit(Positionset *fpos, Expr *e);
[all …]