| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | ErrorOr.h | 78 : HasError(true) { in HasError() function 89 : HasError(false) { in HasError() function 140 if (!HasError) in ~ErrorOr() 146 return !HasError; 171 if (!Other.HasError) { in copyConstruct() 173 HasError = false; in copyConstruct() 177 HasError = true; in copyConstruct() 203 if (!Other.HasError) { in moveConstruct() 205 HasError = false; in moveConstruct() 209 HasError = true; in moveConstruct() [all …]
|
| H A D | Error.h | 497 : HasError(true) in Expected() 517 : HasError(false) in HasError() function 556 if (!HasError) in ~Expected() 565 Unchecked = HasError; 567 return !HasError; 644 HasError = Other.HasError; in moveConstruct() 650 if (!HasError) in moveConstruct() 685 assert(HasError && "Cannot get error when a value exists!"); in getErrorStorage() 690 assert(HasError && "Cannot get error when a value exists!"); in getErrorStorage() 704 if (HasError) { in fatalUncheckedExpected() [all …]
|
| H A D | BinaryStreamArray.h | 198 assert(Array && !HasError); 237 HasError = true; in markError() 248 bool HasError{false};
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | error.h | 202 Expected(Error Err) : HasError(true), Unchecked(true) { in Expected() 211 : HasError(false), Unchecked(true) { in HasError() function 245 if (!HasError) in ~Expected() 254 Unchecked = HasError; 255 return !HasError; 313 HasError = Other.HasError; in moveConstruct() 317 if (!HasError) in moveConstruct() 342 assert(!HasError && "Cannot get value when an error exists!"); in getStorage() 352 assert(HasError && "Cannot get error when a value exists!"); in getErrorStorage() 357 assert(HasError && "Cannot get error when a value exists!"); in getErrorStorage() [all …]
|
| H A D | simple_packed_serialization.h | 536 bool HasError = false; member 558 if (BSE.HasError) in fromSPSSerializable() 586 size_t Size = SPSArgList<bool>::size(BSE.HasError); in size() 587 if (BSE.HasError) in size() 594 if (!SPSArgList<bool>::serialize(OB, BSE.HasError)) in serialize() 596 if (BSE.HasError) in serialize() 604 if (!SPSArgList<bool>::deserialize(IB, BSE.HasError)) in deserialize() 607 if (!BSE.HasError) in deserialize() 658 assert(BSE.HasError && "Cannot serialize expected from a success value"); in size() 665 assert(BSE.HasError && "Cannot serialize expected from a success value"); in serialize()
|
| H A D | executor_symbol_def.h | 34 HasError = 1U << 0, enumerator
|
| /freebsd-14.2/contrib/llvm-project/clang/tools/clang-repl/ |
| H A D | ClangRepl.cpp | 69 static int checkDiagErrors(const clang::CompilerInstance *CI, bool HasError) { in checkDiagErrors() argument 81 return (Errs || HasError) ? EXIT_FAILURE : EXIT_SUCCESS; in checkDiagErrors() 222 bool HasError = false; in main() local 245 HasError = true; in main() 250 HasError = true; in main() 254 HasError = true; in main() 267 return checkDiagErrors(Interp->getCompilerInstance(), HasError); in main()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | GOFFEmitter.cpp | 181 HasError = true; in reportError() 186 : GW(OS), Doc(Doc), ErrHandler(ErrHandler), HasError(false) {} in GOFFState() 200 bool HasError; member in __anonc29a6f1b0111::GOFFState 260 if (HasError) in writeObject()
|
| H A D | WasmEmitter.cpp | 66 bool HasError = false; member in __anon8a5d3df10111::WasmWriter 128 HasError = true; in reportError() 644 if (HasError) in writeWasm()
|
| H A D | ELFEmitter.cpp | 209 bool HasError = false; member in __anone0ba05900111::ELFState 1137 HasError = true; in reportError() 1886 if (HasError) in buildSectionIndex() 1974 if (State.HasError) in writeELF() 1987 if (State.HasError) in writeELF() 2021 if (State.HasError) in writeELF()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | SimplePackedSerialization.h | 603 bool HasError = false; member 625 if (BSE.HasError) in fromSPSSerializable() 653 size_t Size = SPSArgList<bool>::size(BSE.HasError); in size() 654 if (BSE.HasError) in size() 661 if (!SPSArgList<bool>::serialize(OB, BSE.HasError)) in serialize() 663 if (BSE.HasError) in serialize() 671 if (!SPSArgList<bool>::deserialize(IB, BSE.HasError)) in deserialize() 674 if (!BSE.HasError) in deserialize() 725 assert(BSE.HasError && "Cannot serialize expected from a success value"); in size() 732 assert(BSE.HasError && "Cannot serialize expected from a success value"); in serialize()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
| H A D | JITSymbol.h | 81 HasError = 1U << 0, enumerator 125 return (Flags & HasError) == HasError; in hasError() 277 : Err(std::move(Err)), Flags(JITSymbolFlags::HasError) {} in JITSymbol()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldImpl.h | 317 bool HasError; variable 462 ProcessAllSections(false), HasError(false) { in RuntimeDyldImpl() 568 bool hasError() { return HasError; } in hasError() 571 void clearError() { HasError = false; } in clearError()
|
| H A D | RuntimeDyldCOFF.cpp | 70 HasError = true; in loadObject()
|
| H A D | RuntimeDyldMachO.cpp | 375 HasError = true; in loadObject()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFGdbIndex.cpp | 100 if (HasError) { in dump() 200 HasError = HasContent && !parseImpl(Data); in parse()
|
| /freebsd-14.2/contrib/llvm-project/lldb/tools/lldb-server/ |
| H A D | lldb-gdbserver.cpp | 349 bool HasError = false; in main_gdbserver() local 353 HasError = true; in main_gdbserver() 359 if (HasError) { in main_gdbserver()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFGdbIndex.h | 77 bool HasError = false; variable
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheck.cpp | 1983 if (!HasError) { in printMatch() 1985 return ErrorReported::reportedOrSuccess(HasError); in printMatch() 1987 return ErrorReported::reportedOrSuccess(HasError); in printMatch() 2007 return ErrorReported::reportedOrSuccess(HasError); in printMatch() 2038 return ErrorReported::reportedOrSuccess(HasError); in printMatch() 2050 bool HasError = ExpectedMatch; in printNoMatch() local 2059 HasError = HasPatternError = true; in printNoMatch() 2070 if (!HasError) { in printNoMatch() 2072 return ErrorReported::reportedOrSuccess(HasError); in printNoMatch() 2097 return ErrorReported::reportedOrSuccess(HasError); in printNoMatch() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-symbolizer/ |
| H A D | llvm-symbolizer.cpp | 380 bool HasError = false; in parseOptions() local 384 HasError = true; in parseOptions() 386 if (HasError) in parseOptions()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 463 bool HasError = false; in ProcessNumericUCNEscape() local 493 HasError = true; in ProcessNumericUCNEscape() 538 return !HasError; in ProcessNumericUCNEscape() 652 bool HasError; in ProcessUCNEscape() local 658 HasError = !ProcessNamedUCNEscape(ThisTokBegin, ThisTokBuf, ThisTokEnd, in ProcessUCNEscape() 661 HasError = in ProcessUCNEscape() 666 if (HasError) in ProcessUCNEscape()
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DirectiveEmitter.cpp | 123 bool HasError = false; in HasDuplicateClauses() local 130 HasError = true; in HasDuplicateClauses() 133 return HasError; in HasDuplicateClauses()
|
| H A D | CodeGenDAGPatterns.h | 901 bool HasError; variable 975 return HasError; in hasError() 978 HasError = false; in resetError()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseOpenMP.cpp | 1505 bool HasError = false; in parseOpenMPAppendArgs() local 1523 HasError = true; in parseOpenMPAppendArgs() 1532 HasError = true; in parseOpenMPAppendArgs() 1537 HasError = T.consumeClose() || HasError; in parseOpenMPAppendArgs() 1538 return HasError; in parseOpenMPAppendArgs() 3568 bool HasError = false; in ParseOMPInteropInfo() local 3596 HasError = true; in ParseOMPInteropInfo() 3608 HasError = true; in ParseOMPInteropInfo() 3618 HasError = true; in ParseOMPInteropInfo() 3629 HasError = true; in ParseOMPInteropInfo() [all …]
|
| H A D | ParseExpr.cpp | 1972 bool HasError = false; in ParsePostfixExpressionSuffix() local 1992 HasError = true; in ParsePostfixExpressionSuffix() 1999 HasError = true; in ParsePostfixExpressionSuffix() 2042 if (!LHS.isInvalid() && !HasError && !Length.isInvalid() && in ParsePostfixExpressionSuffix() 3878 bool HasError = false; in ParseAvailabilityCheckExpr() local 3882 HasError = true; in ParseAvailabilityCheckExpr() 3890 if (HasError) { in ParseAvailabilityCheckExpr()
|