Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Result

111     /// Incrementing invalid iterator is allowed and will result in invalid
465 // Retrieve result at first, or the map might be updated.
466 TryResult Result = evaluateAsBooleanConditionNoCache(S);
467 CachedBoolEvals[S] = Result; // update or insert
468 return Result;
520 // We can't evaluate the LHS; however, sometimes the result
531 bool Result;
532 if (E->EvaluateAsBooleanCondition(Result, *Context))
533 return Result;
789 // may be a no-return destructor which changes the CFG. As a result, buffer
2588 Expr::EvalResult result;
2589 bool b = tryEvaluate(Terminator->getCond(), result);
2591 b ? &result : 0);