Lines Matching refs:EP_Reduced

18160 ** If the EP_Reduced and EP_TokenOnly flags are set when
18161 ** an Expr object is truncated. When EP_Reduced is set, then all
18165 ** allocated, regardless of whether or not EP_Reduced is set.
18195 /* If the EP_Reduced flag is set in the Expr.flags mask, then no
18247 #define EP_Reduced 0x002000 /* Expr struct EXPR_REDUCEDSIZE bytes only */
18306 ** struct, an Expr struct with the EP_Reduced flag set in Expr.flags
98449 testcase( ExprHasProperty(pExpr, EP_Reduced) );
98728 assert( (pExpr->flags & (EP_Reduced|EP_TokenOnly))==0 );
98885 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
99768 assert( !ExprHasProperty(pExpr, EP_Reduced) );
101706 assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
101774 assert( p->op!=TK_FUNCTION || ExprHasProperty(p, EP_TokenOnly|EP_Reduced)
101846 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE;
101867 ** EXPR_REDUCEDSIZE | EP_Reduced
101872 ** return value with EP_Reduced|EP_TokenOnly.
101888 assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 );
101896 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) );
101901 nSize = EXPR_REDUCEDSIZE | EP_Reduced;
101990 assert( ExprHasProperty(p, EP_Reduced)==0 );
102000 /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */
102001 pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static|EP_MemToken);
102002 pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly);
102025 if( ExprHasProperty(pNew, EP_Reduced|EP_TokenOnly|EP_WinFunc) ){
103559 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
105976 && ALWAYS((combinedFlags & EP_Reduced)==0)
106438 if( ALWAYS(!ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced))
106536 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
106631 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
131510 assert( !ExprHasProperty(pEq, EP_TokenOnly|EP_Reduced) );
131546 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) );