Home | History | Annotate | Download | only in AST

Lines Matching refs:Failed

16 //    'false' return value indicates that constant folding has failed, and any
19 // * An evaluated result, valid only if constant folding has not failed.
26 // (under the C++11 / C++1y rules only, at the moment), or, if folding failed
1965 return handler.failed();
1972 return handler.failed();
1984 return handler.failed();
2014 return handler.failed();
2047 return handler.failed();
2069 return handler.failed();
2080 return handler.failed();
2100 return handler.failed();
2126 bool failed() { return false; }
2176 bool failed() { return false; }
2554 bool failed() { return false; }
2669 bool failed() { return false; }
2966 /// Evaluation failed.
3000 // evaluation failed.
6097 bool Failed;
6099 EvalResult() : Failed(false) { }
6103 Failed = RHS.Failed;
6104 RHS.Failed = false;
6156 if (PrevResult.Failed) return false;
6188 Result.Failed = !Evaluate(Result.Val, Info, E);
6189 if (Result.Failed)
6210 if (LHSResult.Failed)
6241 if (LHSResult.Failed && !Info.keepEvaluatingAfterFailure())
6251 if (RHSResult.Failed)
6284 if (LHSResult.Failed || RHSResult.Failed)
6384 Result.Failed = !VisitBinOp(job.LHSResult, RHS, Bop, Result.Val);