Home
last modified time | relevance | path

Searched refs:EP_TokenOnly (Results 1 – 8 of 8) sorted by relevance

/sqlite-3.40.0/src/
H A Dwalker.c66 testcase( ExprHasProperty(pExpr, EP_TokenOnly) ); in walkExpr()
71 if( !ExprHasProperty(pExpr,(EP_TokenOnly|EP_Leaf)) ){ in walkExpr()
H A Dexpr.c1232 if( !ExprHasProperty(p, (EP_TokenOnly|EP_Leaf)) ){ in sqlite3ExprDeleteNN()
1349 assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 ); in dupedExprStructSize()
1357 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) ); in dupedExprStructSize()
1364 nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly; in dupedExprStructSize()
1462 pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static); in exprDup()
1463 pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly); in exprDup()
1488 if( !ExprHasProperty(pNew, EP_TokenOnly|EP_Leaf) ){ in exprDup()
1504 if( !ExprHasProperty(p, EP_TokenOnly|EP_Leaf) ){ in exprDup()
4389 tempX.flags = EP_IntValue|EP_TokenOnly; in sqlite3ExprCodeTarget()
4470 assert( !ExprHasProperty(pExpr, EP_TokenOnly) ); in sqlite3ExprCodeTarget()
[all …]
H A Dvdbemem.c1474 assert( (p->flags & EP_TokenOnly)==0 ); in valueFromFunction()
1577 assert( (pExpr->flags & EP_TokenOnly)==0 || pCtx==0 ); in valueFromExpr()
H A Dresolve.c257 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); in lookupName()
708 if( !ExprHasProperty(pExpr,(EP_TokenOnly|EP_Leaf)) ){ in lookupName()
H A Dtreeview.c667 if( ExprHasProperty(pExpr, EP_TokenOnly) ){ in sqlite3TreeViewExpr()
H A Dwhereexpr.c1762 }else if( ExprHasProperty(p, EP_TokenOnly|EP_Leaf) ){ in sqlite3WhereExprUsageNN()
H A DsqliteInt.h2911 #define EP_TokenOnly 0x010000 /* Expr struct EXPR_TOKENONLYSIZE bytes only */ macro
H A Dselect.c411 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) ); in sqlite3SetJoinExpr()
606 assert( !ExprHasProperty(pEq, EP_TokenOnly|EP_Reduced) ); in sqlite3ProcessJoin()