Home
last modified time | relevance | path

Searched refs:EP_Leaf (Results 1 – 7 of 7) sorted by relevance

/sqlite-3.40.0/src/
H A Dwalker.c71 if( !ExprHasProperty(pExpr,(EP_TokenOnly|EP_Leaf)) ){ in walkExpr()
H A Dresolve.c674 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 Dexpr.c863 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 Dwhereexpr.c1762 }else if( ExprHasProperty(p, EP_TokenOnly|EP_Leaf) ){ in sqlite3WhereExprUsageNN()
H A DsqliteInt.h2918 #define EP_Leaf 0x800000 /* Expr.pLeft, .pRight, .u.pSelect all NULL */ macro
H A Dparse.y1056 p->flags = EP_Leaf;
H A Dselect.c4798 ExprClearProperty(pExpr, EP_Leaf); in propagateConstantExprRewriteOne()