Searched refs:Error (Results 51 - 75 of 911) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewRecordIO.h21 #include "llvm/Support/Error.h"
63 Error beginRecord(Optional<uint32_t> MaxLength);
64 Error endRecord();
66 Error mapInteger(TypeIndex &TypeInd, const Twine &Comment = "");
80 template <typename T> Error mapObject(T &Value) {
86 return Error::success();
96 return Error::success();
99 template <typename T> Error mapInteger(T &Value, const Twine &Comment = "") {
104 return Error::success();
113 template <typename T> Error mapEnu
[all...]
H A DRecordSerialization.h19 #include "llvm/Support/Error.h"
46 inline Error consume(BinaryStreamReader &Reader) { return Error::success(); }
52 Error consume(BinaryStreamReader &Reader, APSInt &Num);
55 Error consume_numeric(BinaryStreamReader &Reader, uint64_t &Value);
58 Error consume(BinaryStreamReader &Reader, uint32_t &Item);
59 Error consume(BinaryStreamReader &Reader, int32_t &Item);
62 Error consume(BinaryStreamReader &Reader, StringRef &Item);
64 Error consume(StringRef &Data, APSInt &Num);
65 Error consum
[all...]
H A DTypeStreamMerger.h15 #include "llvm/Support/Error.h"
36 /// \returns Error::success() if the operation succeeded, otherwise an
38 Error mergeTypeRecords(MergingTypeTableBuilder &Dest,
61 /// \returns Error::success() if the operation succeeded, otherwise an
63 Error mergeIdRecords(MergingTypeTableBuilder &Dest, ArrayRef<TypeIndex> Types,
80 /// \returns Error::success() if the operation succeeded, otherwise an
82 Error mergeTypeAndIdRecords(MergingTypeTableBuilder &DestIds,
88 Error mergeTypeAndIdRecords(GlobalTypeTableBuilder &DestIds,
95 Error mergeTypeRecords(GlobalTypeTableBuilder &Dest,
101 Error mergeIdRecord
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamReader.h18 #include "llvm/Support/Error.h"
57 Error readLongestContiguousChunk(ArrayRef<uint8_t> &Buffer);
66 Error readBytes(ArrayRef<uint8_t> &Buffer, uint32_t Size);
75 template <typename T> Error readInteger(T &Dest) {
85 return Error::success();
89 template <typename T> Error readEnum(T &Dest) {
96 return Error::success();
103 Error readULEB128(uint64_t &Dest);
109 Error readSLEB128(int64_t &Dest);
117 Error readCStrin
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/
H A DTextAPIWriter.h23 static Error writeToStream(raw_ostream &os, const InterfaceFile &);
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DPass.h12 #include "llvm/Support/Error.h"
33 virtual llvm::Error perform(SimpleFile &mergedFile) = 0;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Initialization/
H A DSystemInitializer.h12 #include "llvm/Support/Error.h"
23 virtual llvm::Error Initialize() = 0;
H A DSystemInitializerCommon.h28 llvm::Error Initialize() override;
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSystemInitializerFull.h26 llvm::Error Initialize() override;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossExSubsection.cpp12 #include "llvm/Support/Error.h"
18 Error DebugCrossModuleExportsSubsectionRef::initialize(
29 Error DebugCrossModuleExportsSubsectionRef::initialize(BinaryStreamRef Stream) {
43 Error DebugCrossModuleExportsSubsection::commit(
51 return Error::success();
H A DRecordSerialization.cpp36 Error llvm::codeview::consume(BinaryStreamReader &Reader, APSInt &Num) {
46 return Error::success();
55 return Error::success();
62 return Error::success();
69 return Error::success();
76 return Error::success();
83 return Error::success();
90 return Error::success();
97 return Error::success();
104 Error llv
[all...]
H A DDebugSymbolRVASubsection.cpp22 Error DebugSymbolRVASubsectionRef::initialize(BinaryStreamReader &Reader) {
29 Error DebugSymbolRVASubsection::commit(BinaryStreamWriter &Writer) const {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolStream.cpp27 Error SymbolStream::reload() {
33 return Error::success();
41 Error SymbolStream::commit() { return Error::success(); }
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
H A DMicroOpQueueStage.h61 Error moveInstructions();
80 Error execute(InstRef &IR) override;
81 Error cycleStart() override;
82 Error cycleEnd() override;
H A DExecuteStage.h37 Error issueInstruction(InstRef &IR);
41 Error issueReadyInstructions();
44 Error handleInstructionEliminated(InstRef &IR);
71 Error cycleStart() override;
72 Error cycleEnd() override;
73 Error execute(InstRef &IR) override;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DDecompressor.h32 template <class T> Error resizeAndDecompress(T &Out) {
39 Error decompress(MutableArrayRef<char> Buffer);
56 Error consumeCompressedGnuHeader();
57 Error consumeCompressedZLibHeader(bool Is64Bit, bool IsLittleEndian);
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp23 Diagnostics::Context::Context(ConstructMatcherEnum, Diagnostics *Error, argument
26 : Error(Error) {
27 Error->pushContextFrame(CT_MatcherConstruct, MatcherRange) << MatcherName;
30 Diagnostics::Context::Context(MatcherArgEnum, Diagnostics *Error, argument
34 : Error(Error) {
35 Error->pushContextFrame(CT_MatcherArg, MatcherRange) << ArgNumber
39 Diagnostics::Context::~Context() { Error->ContextStack.pop_back(); }
41 Diagnostics::OverloadContext::OverloadContext(Diagnostics *Error) argument
65 addError(SourceRange Range, ErrorType Error) argument
203 const ErrorContent &Error = Errors[i]; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DOutputStyle.h12 #include "llvm/Support/Error.h"
22 virtual Error dump() = 0;
/freebsd-11-stable/usr.bin/clang/llvm-cxxdump/
H A DMakefile7 SRCS+= Error.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h21 #include "llvm/Support/Error.h"
54 function_ref<void(Error)> Warn);
55 void addRecord(NamedInstrProfRecord &&I, function_ref<void(Error)> Warn) {
61 function_ref<void(Error)> Warn);
67 Error writeText(raw_fd_ostream &OS);
79 Error setIsIRLevelProfile(bool IsIRLevel, bool WithCS) {
85 return Error::success();
97 return Error::success();
111 uint64_t Weight, function_ref<void(Error)> Warn);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DLua.h14 #include "llvm/Support/Error.h"
39 llvm::Error Run(llvm::StringRef buffer);
40 llvm::Error LoadModule(llvm::StringRef filename);
H A DLua.cpp17 llvm::Error Lua::Run(llvm::StringRef buffer) {
22 return llvm::Error::success();
24 llvm::Error e = llvm::make_error<llvm::StringError>(
32 llvm::Error Lua::LoadModule(llvm::StringRef filename) {
48 llvm::Error e = llvm::make_error<llvm::StringError>(
58 return llvm::Error::success();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.h17 #include "llvm/Support/Error.h"
26 class Error;
38 Error parseMetadata(bool ModuleLevel);
49 Error parseModuleMetadata() { return parseMetadata(true); }
52 Error parseFunctionMetadata() { return parseMetadata(false); }
71 Error parseMetadataAttachment(
75 Error parseMetadataKinds();
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DBuffer.h30 virtual Error allocate(size_t Size) = 0;
32 virtual Error commit() = 0;
45 Error allocate(size_t Size) override;
47 Error commit() override;
56 Error allocate(size_t Size) override;
58 Error commit() override;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DEHFrameSupport.h19 #include "llvm/Support/Error.h"
25 Error registerEHFrameSection(const void *EHFrameSectionAddr,
29 Error deregisterEHFrameSection(const void *EHFrameSectionAddr,
36 virtual Error registerEHFrames(JITTargetAddress EHFrameSectionAddr,
38 virtual Error deregisterEHFrames(JITTargetAddress EHFrameSectionAddr,
55 Error registerEHFrames(JITTargetAddress EHFrameSectionAddr,
62 Error deregisterEHFrames(JITTargetAddress EHFrameSectionAddr,

Completed in 148 milliseconds

1234567891011>>