Searched refs:HasError (Results 1 - 21 of 21) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorOr.h78 : HasError(true) {
82 ErrorOr(std::error_code EC) : HasError(true) {
90 : HasError(false) {
147 if (!HasError)
153 return !HasError;
160 return HasError ? *getErrorStorage() : std::error_code();
178 if (!Other.HasError) {
180 HasError = false;
184 HasError = true;
210 if (!Other.HasError) {
[all...]
H A DError.h456 : HasError(true)
477 : HasError(false)
517 if (!HasError)
526 Unchecked = HasError;
528 return !HasError;
545 return HasError && (*getErrorStorage())->template isA<ErrT>();
556 return HasError ? Error(std::move(*getErrorStorage())) : Error::success();
595 HasError = Other.HasError;
601 if (!HasError)
[all...]
H A DBinaryStreamArray.h192 assert(Array && !HasError);
197 assert(Array && !HasError);
236 HasError = true;
247 bool HasError{false};
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llc/
H A Dllc.cpp256 bool *HasError; member in struct:LLCDiagnosticHandler
257 LLCDiagnosticHandler(bool *HasErrorPtr) : HasError(HasErrorPtr) {}
260 *HasError = true;
276 bool *HasError = static_cast<bool *>(Context); local
278 *HasError = true;
331 bool HasError = false; local
333 std::make_unique<LLCDiagnosticHandler>(&HasError));
334 Context.setInlineAsmDiagnosticHandler(InlineAsmDiagHandler, &HasError);
610 auto HasError = local
611 ((const LLCDiagnosticHandler *)(Context.getDiagHandlerPtr()))->HasError;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFGdbIndex.h77 bool HasError = false; member in class:llvm::DWARFGdbIndex
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCOFF.cpp69 HasError = true;
H A DRuntimeDyldImpl.h318 bool HasError; member in class:llvm::RuntimeDyldImpl
467 ProcessAllSections(false), HasError(false) {
560 bool hasError() { return HasError; }
563 void clearError() { HasError = false; }
H A DRuntimeDyldMachO.cpp375 HasError = true;
H A DRuntimeDyld.cpp132 HasError = true;
H A DRuntimeDyldELF.cpp259 HasError = true;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h81 HasError = 1U << 0,
123 return (Flags & HasError) == HasError;
249 : Err(std::move(Err)), Flags(JITSymbolFlags::HasError) {}
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFGdbIndex.cpp99 if (HasError) {
198 HasError = HasContent && !parseImpl(Data);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp65 bool HasError = false; member in class:__anon1962::WasmWriter
127 HasError = true;
593 if (HasError)
H A DELFEmitter.cpp131 bool HasError = false; member in class:__anon1952::ELFState
683 HasError = true;
1343 if (!IsSection || HasError)
1414 if (State.HasError)
1434 if (State.HasError)
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h380 bool HasError = false; local
389 HasError = true;
396 if (!HasError) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.cpp1582 bool HasError = false; local
1611 return !HasError;
1658 HasError = true;
1660 return !HasError;
2102 bool HasError = !parseBracedList(/*ContinueOnSemicolons=*/true); local
2103 if (HasError) {
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h893 bool HasError; member in class:llvm::TreePattern
967 return HasError;
970 HasError = false;
H A DCodeGenDAGPatterns.cpp2684 isInputPattern(isInput), HasError(false),
2692 isInputPattern(isInput), HasError(false),
2699 : TheRecord(TheRec), CDP(cdp), isInputPattern(isInput), HasError(false),
2705 if (HasError)
2709 HasError = true;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp3425 bool HasError = false; local
3429 HasError = true;
3437 if (HasError) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCore.cpp1004 Symbols[Name].setFlags(Symbols[Name].getFlags() | JITSymbolFlags::HasError);
1254 Sym.setFlags(Sym.getFlags() | JITSymbolFlags::HasError);
1274 JITSymbolFlags::HasError);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp1048 bool HasError; local
1050 HasError);
1051 if (HasError) {
1084 bool HasError; local
1086 HasError);
1087 if (HasError) {

Completed in 249 milliseconds