Searched refs:EP_Leaf (Results 1 – 7 of 7) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | walker.c | 71 if( !ExprHasProperty(pExpr,(EP_TokenOnly|EP_Leaf)) ){ in walkExpr()
|
| H A D | resolve.c | 674 if( ExprHasProperty(pExpr,EP_Leaf) ){ in lookupName() 675 ExprClearProperty(pExpr,EP_Leaf); in lookupName() 708 if( !ExprHasProperty(pExpr,(EP_TokenOnly|EP_Leaf)) ){ in lookupName() 713 ExprSetProperty(pExpr, EP_Leaf); in lookupName()
|
| H A D | expr.c | 863 pNew->flags |= EP_IntValue|EP_Leaf|(iValue?EP_IsTrue:EP_IsFalse); in sqlite3ExprAlloc() 1225 if( ExprHasProperty(p, EP_Leaf) && !ExprHasProperty(p, EP_TokenOnly) ){ in sqlite3ExprDeleteNN() 1232 if( !ExprHasProperty(p, (EP_TokenOnly|EP_Leaf)) ){ in sqlite3ExprDeleteNN() 1476 if( 0==((p->flags|pNew->flags) & (EP_TokenOnly|EP_Leaf)) ){ in exprDup() 1488 if( !ExprHasProperty(pNew, EP_TokenOnly|EP_Leaf) ){ in exprDup() 1504 if( !ExprHasProperty(p, EP_TokenOnly|EP_Leaf) ){ in exprDup() 4115 && !ExprHasProperty(pExpr, EP_Leaf) in sqlite3ExprCodeTarget()
|
| H A D | whereexpr.c | 1762 }else if( ExprHasProperty(p, EP_TokenOnly|EP_Leaf) ){ in sqlite3WhereExprUsageNN()
|
| H A D | sqliteInt.h | 2918 #define EP_Leaf 0x800000 /* Expr.pLeft, .pRight, .u.pSelect all NULL */ macro
|
| H A D | parse.y | 1056 p->flags = EP_Leaf;
|
| H A D | select.c | 4798 ExprClearProperty(pExpr, EP_Leaf); in propagateConstantExprRewriteOne()
|