Home
last modified time | relevance | path

Searched refs:ContentOrErr (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Delf2yaml.cpp421 auto ContentOrErr = Obj.getSectionContents(Shdr); in dumpContentSection() local
422 if (!ContentOrErr) in dumpContentSection()
423 return errorToErrorCode(ContentOrErr.takeError()); in dumpContentSection()
424 S->Content = yaml::BinaryRef(ContentOrErr.get()); in dumpContentSection()
498 auto ContentOrErr = Obj.getSectionContents(Shdr); in dumpMipsABIFlags() local
499 if (!ContentOrErr) in dumpMipsABIFlags()
500 return errorToErrorCode(ContentOrErr.takeError()); in dumpMipsABIFlags()
503 ContentOrErr.get().data()); in dumpMipsABIFlags()
/external/llvm/tools/obj2yaml/
Delf2yaml.cpp331 ErrorOr<ArrayRef<uint8_t>> ContentOrErr = Obj.getSectionContents(Shdr); in dumpContentSection() local
332 if (std::error_code EC = ContentOrErr.getError()) in dumpContentSection()
334 S->Content = yaml::BinaryRef(ContentOrErr.get()); in dumpContentSection()
405 ErrorOr<ArrayRef<uint8_t>> ContentOrErr = Obj.getSectionContents(Shdr); in dumpMipsABIFlags() local
406 if (std::error_code EC = ContentOrErr.getError()) in dumpMipsABIFlags()
410 ContentOrErr.get().data()); in dumpMipsABIFlags()