Lines Matching refs:Error
34 InternalError // Encountered an error trying to run the predicate
46 std::string &Error) = 0;
52 bool reduceList(std::vector<ElTy> &TheList, std::string &Error) {
55 switch (doTest(TheList, empty, Error)) {
60 break; // there's definitely an error, but we need to narrow it down
64 llvm_unreachable("bugpoint ListReducer internal error: "
71 assert(!Error.empty());
105 if (doTest(ShuffledList, empty, Error) == KeepPrefix) {
124 switch (doTest(Prefix, Suffix, Error)) {
149 return true; // Error was set by doTest.
151 assert(Error.empty() && "doTest did not return InternalError for error");
186 if (doTest(EmptyList, TestList, Error) == KeepSuffix) {
192 if (!Error.empty())