Searched refs:Expected (Results 151 - 175 of 598) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFConfig.cpp19 static Expected<NewSymbolInfo> parseNewSymbolInfo(StringRef FlagValue,
101 Expected<ELFCopyConfig> parseConfig(const CopyConfig &Config) {
120 Expected<elf::NewSymbolInfo> NSI = parseNewSymbolInfo(
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h166 static Expected<JITSymbolFlags>
239 using GetAddressFtor = unique_function<Expected<JITTargetAddress>()>;
313 Expected<JITTargetAddress> getAddress() {
347 using OnResolvedFunction = unique_function<void(Expected<LookupResult>)>;
362 virtual Expected<LookupSet>
379 Expected<LookupSet> getResponsibilitySet(const LookupSet &Symbols) final;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp34 using llvm::Expected;
37 template <> Expected<bool> python::As<bool>(Expected<PythonObject> &&obj) {
44 Expected<long long> python::As<long long>(Expected<PythonObject> &&obj) {
51 Expected<std::string> python::As<std::string>(Expected<PythonObject> &&obj) {
314 Expected<PythonString> PythonString::FromUTF8(llvm::StringRef string) {
371 Expected<llvm::StringRef> PythonString::AsUTF8() const {
681 Expected<PythonObjec
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h108 llvm::Expected<llvm::StringRef>
122 virtual llvm::Expected<std::vector<SVR4LibraryInfo>>
277 virtual llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
299 virtual llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
449 virtual llvm::Expected<llvm::ArrayRef<uint8_t>>
473 llvm::Expected<SoftwareBreakpoint>
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DSupportHelpers.h30 ExpectedHolder(ErrorHolder Err, Expected<T> &Exp)
33 Expected<T> &Exp;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DInstrumentationMap.h34 Expected<InstrumentationMap> loadInstrumentationMap(StringRef Filename);
83 friend Expected<InstrumentationMap> loadInstrumentationMap(StringRef);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DJITSymbol.cpp39 Expected<JITSymbolFlags>
110 Expected<JITSymbolResolver::LookupSet>
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStream.h91 Expected<StringRef> getECName(uint32_t NI) const;
100 Expected<std::unique_ptr<msf::MappedBlockStream>>
H A DModuleDebugStream.h67 Expected<codeview::DebugChecksumsSubsectionRef>
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DExecutionDriver.cpp294 Expected<std::string> BugDriver::executeProgram(const Module &Program,
346 Expected<int> RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile,
381 Expected<std::string>
387 Expected<std::string>
393 Expected<CC::FileType> FT =
416 Expected<std::string> Result = executeProgramSafely(*Program, Filename);
439 Expected<bool> BugDriver::diffProgram(const Module &Program,
444 Expected<std::string> Output =
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DLayer.h151 static Expected<std::unique_ptr<BasicObjectLayerMaterializationUnit>>
173 Expected<SymbolFlagsMap> getObjectSymbolFlags(ExecutionSession &ES,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DFunctionImport.h105 std::function<Expected<std::unique_ptr<Module>>(StringRef Identifier)>;
112 Expected<bool> importFunctions(Module &M, const ImportMapTy &ImportList);
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/
H A DErrorHandler.h142 template <class T> T check(Expected<T> e) {
156 T check2(Expected<T> e, llvm::function_ref<std::string()> prefix) {
H A DLLVM.h37 template <typename T> class Expected;
73 using llvm::Expected;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DEvalEmitter.h42 llvm::Expected<bool> interpretExpr(const Expr *E);
43 llvm::Expected<bool> interpretDecl(const VarDecl *VD);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp71 static Expected<std::unique_ptr<MemoryBuffer>> openBitcodeFile(StringRef Path) {
73 Expected<std::unique_ptr<MemoryBuffer>> MemBufOrErr =
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCheck.cpp28 Expected<uint64_t> NumericVariableUse::eval() const {
36 Expected<uint64_t> BinaryOperation::eval() const {
37 Expected<uint64_t> LeftOp = LeftOperand->eval();
38 Expected<uint64_t> RightOp = RightOperand->eval();
54 Expected<std::string> NumericSubstitution::getResult() const {
55 Expected<uint64_t> EvaluatedValue = ExpressionASTPointer->eval();
61 Expected<std::string> StringSubstitution::getResult() const {
63 Expected<StringRef> VarVal = Context->getPatternVarValue(FromStr);
71 Expected<Pattern::VariableProperties>
114 Expected<NumericVariabl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp320 Expected<bool> RawCoverageMappingDummyChecker::isDummy() {
351 Expected<StringRef> DataOrErr = Section.getContents();
376 static Expected<bool> isCoverageMappingDummy(uint64_t Hash, StringRef Mapping) {
395 virtual Expected<const char *> readFunctionRecords(const char *Buf,
399 static Expected<std::unique_ptr<CovMapFuncRecordReader>>
445 Expected<bool> OldIsDummyExpected = isCoverageMappingDummy(
451 Expected<bool> NewIsDummyExpected =
473 Expected<const char *> readFunctionRecords(const char *Buf,
534 Expected<std::unique_ptr<CovMapFuncRecordReader>> CovMapFuncRecordReader::get(
572 Expected<st
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp113 static Expected<std::shared_ptr<YAMLChecksumsSubsection>>
127 static Expected<std::shared_ptr<YAMLLinesSubsection>>
143 static Expected<std::shared_ptr<YAMLInlineeLinesSubsection>>
159 static Expected<std::shared_ptr<YAMLCrossModuleExportsSubsection>>
173 static Expected<std::shared_ptr<YAMLCrossModuleImportsSubsection>>
187 static Expected<std::shared_ptr<YAMLSymbolsSubsection>>
201 static Expected<std::shared_ptr<YAMLStringTableSubsection>>
215 static Expected<std::shared_ptr<YAMLFrameDataSubsection>>
230 static Expected<std::shared_ptr<YAMLCoffSymbolRVASubsection>>
540 static Expected<SourceFileChecksumEntr
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DDebugTypes.h54 llvm::Expected<llvm::pdb::NativeSession *>
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFile.h283 llvm::Expected<std::unique_ptr<NormalizedFile>>
295 llvm::Expected<std::unique_ptr<NormalizedFile>>
312 llvm::Expected<std::unique_ptr<lld::File>>
317 llvm::Expected<std::unique_ptr<NormalizedFile>>
H A DWriterMachO.cpp32 llvm::Expected<std::unique_ptr<NormalizedFile>> nFile =
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DMonitoringProcessLauncher.cpp56 llvm::Expected<HostThread> maybe_thread =
H A DThreadLauncher.cpp24 llvm::Expected<HostThread> ThreadLauncher::LaunchThread(
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugStringTableSubsection.h42 Expected<StringRef> getString(uint32_t Offset) const;

Completed in 305 milliseconds

1234567891011>>