Home | History | Annotate | Download | only in dist

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.
76673 testcase( ExprHasProperty(pExpr, EP_TokenOnly) );
76677 && !ExprHasProperty(pExpr,EP_TokenOnly) ){
76918 assert( (pExpr->flags & (EP_Reduced|EP_TokenOnly))==0 );
77022 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
78868 assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
78938 if( !ExprHasProperty(p, EP_TokenOnly) ){
78961 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE;
78984 ** EXPR_TOKENONLYSIZE | EP_TokenOnly
78988 ** return value with EP_Reduced|EP_TokenOnly.
79004 assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 );
79008 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) );
79016 nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly;
79108 /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */
79109 pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static|EP_MemToken);
79110 pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly);
79119 if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){
79129 if( ExprHasProperty(pNew, EP_Reduced|EP_TokenOnly) ){
79139 if( !ExprHasProperty(p, EP_TokenOnly) ){
80946 tempX.flags = EP_IntValue|EP_TokenOnly;
81003 if( ExprHasProperty(pExpr, EP_TokenOnly) ){
81605 if( ExprHasProperty(pExpr, EP_TokenOnly) ){
82193 if( ALWAYS((combinedFlags & EP_TokenOnly)==0) ){
82387 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
82482 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
85810 if( ExprHasProperty(pExpr, EP_TokenOnly) ) break;
101772 assert( !ExprHasProperty(pEq, EP_TokenOnly|EP_Reduced) );
101808 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) );