Home | History | Annotate | Download | only in orig

Lines Matching defs:EP_TokenOnly

11342 ** If the EP_Reduced and EP_TokenOnly flags are set when
11358 /* If the EP_TokenOnly flag is set in the Expr.flags mask, then no
11410 #define EP_TokenOnly 0x004000 /* Expr struct EXPR_TOKENONLYSIZE bytes only */
11439 ** and an Expr struct with the EP_TokenOnly flag set.
76653 testcase( ExprHasProperty(pExpr, EP_TokenOnly) );
76657 && !ExprHasProperty(pExpr,EP_TokenOnly) ){
76898 assert( (pExpr->flags & (EP_Reduced|EP_TokenOnly))==0 );
77002 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
78848 assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
78918 if( !ExprHasProperty(p, EP_TokenOnly) ){
78941 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE;
78964 ** EXPR_TOKENONLYSIZE | EP_TokenOnly
78968 ** return value with EP_Reduced|EP_TokenOnly.
78984 assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 );
78988 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) );
78996 nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly;
79088 /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */
79089 pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static|EP_MemToken);
79090 pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly);
79099 if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){
79109 if( ExprHasProperty(pNew, EP_Reduced|EP_TokenOnly) ){
79119 if( !ExprHasProperty(p, EP_TokenOnly) ){
80926 tempX.flags = EP_IntValue|EP_TokenOnly;
80983 if( ExprHasProperty(pExpr, EP_TokenOnly) ){
81585 if( ExprHasProperty(pExpr, EP_TokenOnly) ){
82173 if( ALWAYS((combinedFlags & EP_TokenOnly)==0) ){
82367 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
82462 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
85790 if( ExprHasProperty(pExpr, EP_TokenOnly) ) break;
101752 assert( !ExprHasProperty(pEq, EP_TokenOnly|EP_Reduced) );
101788 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) );