Lines Matching refs:EP_TokenOnly

9975 ** If the EP_Reduced and EP_TokenOnly flags are set when
9991 /* If the EP_TokenOnly flag is set in the Expr.flags mask, then no
10042 #define EP_TokenOnly 0x2000 /* Expr struct is EXPR_TOKENONLYSIZE bytes only */
10075 ** and an Expr struct with the EP_TokenOnly flag set.
69437 testcase( ExprHasProperty(pExpr, EP_TokenOnly) );
69441 && !ExprHasAnyProperty(pExpr,EP_TokenOnly) ){
69613 assert( (pDup->flags & (EP_Reduced|EP_TokenOnly))==0 );
69679 assert( ~ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
71287 assert( !ExprHasAnyProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
71355 if( !ExprHasAnyProperty(p, EP_TokenOnly) ){
71378 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE;
71401 ** EXPR_TOKENONLYSIZE | EP_TokenOnly
71405 ** return value with EP_Reduced|EP_TokenOnly.
71423 assert( !ExprHasAnyProperty(p, EP_TokenOnly|EP_Reduced) );
71430 nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly;
71524 /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */
71525 pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static);
71526 pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly);
71535 if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){
71545 if( ExprHasAnyProperty(pNew, EP_Reduced|EP_TokenOnly) ){
71556 if( !ExprHasAnyProperty(p, EP_TokenOnly) ){
73277 if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ){
74176 assert( !ExprHasAnyProperty(pA, EP_TokenOnly|EP_Reduced) );
74177 assert( !ExprHasAnyProperty(pB, EP_TokenOnly|EP_Reduced) );
74287 assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
74382 assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
76538 if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ) break;
90184 assert( !ExprHasAnyProperty(pEq, EP_TokenOnly|EP_Reduced) );
90220 assert( !ExprHasAnyProperty(p, EP_TokenOnly|EP_Reduced) );