Lines Matching refs:Result
49 std::error_code getAddress(uint64_t &Result) const;
50 std::error_code getOffset(uint64_t &Result) const;
52 std::error_code getType(uint64_t &Result) const;
57 std::error_code getHidden(bool &Result) const;
62 std::error_code getTypeName(SmallVectorImpl<char> &Result) const;
68 std::error_code getValueString(SmallVectorImpl<char> &Result) const;
95 std::error_code getName(StringRef &Result) const;
96 std::error_code getAddress(uint64_t &Result) const;
97 std::error_code getSize(uint64_t &Result) const;
98 std::error_code getContents(StringRef &Result) const;
101 std::error_code getAlignment(uint64_t &Result) const;
104 std::error_code isText(bool &Result) const;
105 std::error_code isData(bool &Result) const;
106 std::error_code isBSS(bool &Result) const;
107 std::error_code isRequiredForExecution(bool &Result) const;
108 std::error_code isVirtual(bool &Result) const;
109 std::error_code isZeroInit(bool &Result) const;
110 std::error_code isReadOnlyData(bool &Result) const;
112 std::error_code containsSymbol(SymbolRef S, bool &Result) const;
144 std::error_code getName(StringRef &Result) const;
147 std::error_code getAddress(uint64_t &Result) const;
149 std::error_code getAlignment(uint32_t &Result) const;
150 std::error_code getSize(uint64_t &Result) const;
151 std::error_code getType(SymbolRef::Type &Result) const;
155 std::error_code getSection(section_iterator &Result) const;
193 std::error_code getNext(LibraryRef &Result) const;
196 std::error_code getPath(StringRef &Result) const;
268 bool &Result) const = 0;
285 SmallVectorImpl<char> &Result) const = 0;
288 SmallVectorImpl<char> &Result) const = 0;
290 bool &Result) const { in getRelocationHidden() argument
291 Result = false; in getRelocationHidden()
362 inline std::error_code SymbolRef::getName(StringRef &Result) const { in getName() argument
363 return getObject()->getSymbolName(getRawDataRefImpl(), Result); in getName()
366 inline std::error_code SymbolRef::getAddress(uint64_t &Result) const { in getAddress() argument
367 return getObject()->getSymbolAddress(getRawDataRefImpl(), Result); in getAddress()
370 inline std::error_code SymbolRef::getAlignment(uint32_t &Result) const { in getAlignment() argument
371 return getObject()->getSymbolAlignment(getRawDataRefImpl(), Result); in getAlignment()
374 inline std::error_code SymbolRef::getSize(uint64_t &Result) const { in getSize() argument
375 return getObject()->getSymbolSize(getRawDataRefImpl(), Result); in getSize()
378 inline std::error_code SymbolRef::getSection(section_iterator &Result) const { in getSection() argument
379 return getObject()->getSymbolSection(getRawDataRefImpl(), Result); in getSection()
382 inline std::error_code SymbolRef::getType(SymbolRef::Type &Result) const { in getType() argument
383 return getObject()->getSymbolType(getRawDataRefImpl(), Result); in getType()
414 inline std::error_code SectionRef::getName(StringRef &Result) const { in getName() argument
415 return OwningObject->getSectionName(SectionPimpl, Result); in getName()
418 inline std::error_code SectionRef::getAddress(uint64_t &Result) const { in getAddress() argument
419 return OwningObject->getSectionAddress(SectionPimpl, Result); in getAddress()
422 inline std::error_code SectionRef::getSize(uint64_t &Result) const { in getSize() argument
423 return OwningObject->getSectionSize(SectionPimpl, Result); in getSize()
426 inline std::error_code SectionRef::getContents(StringRef &Result) const { in getContents() argument
427 return OwningObject->getSectionContents(SectionPimpl, Result); in getContents()
430 inline std::error_code SectionRef::getAlignment(uint64_t &Result) const { in getAlignment() argument
431 return OwningObject->getSectionAlignment(SectionPimpl, Result); in getAlignment()
434 inline std::error_code SectionRef::isText(bool &Result) const { in isText() argument
435 return OwningObject->isSectionText(SectionPimpl, Result); in isText()
438 inline std::error_code SectionRef::isData(bool &Result) const { in isData() argument
439 return OwningObject->isSectionData(SectionPimpl, Result); in isData()
442 inline std::error_code SectionRef::isBSS(bool &Result) const { in isBSS() argument
443 return OwningObject->isSectionBSS(SectionPimpl, Result); in isBSS()
446 inline std::error_code SectionRef::isRequiredForExecution(bool &Result) const { in isRequiredForExecution() argument
447 return OwningObject->isSectionRequiredForExecution(SectionPimpl, Result); in isRequiredForExecution()
450 inline std::error_code SectionRef::isVirtual(bool &Result) const { in isVirtual() argument
451 return OwningObject->isSectionVirtual(SectionPimpl, Result); in isVirtual()
454 inline std::error_code SectionRef::isZeroInit(bool &Result) const { in isZeroInit() argument
455 return OwningObject->isSectionZeroInit(SectionPimpl, Result); in isZeroInit()
458 inline std::error_code SectionRef::isReadOnlyData(bool &Result) const { in isReadOnlyData() argument
459 return OwningObject->isSectionReadOnlyData(SectionPimpl, Result); in isReadOnlyData()
463 bool &Result) const { in containsSymbol() argument
465 S.getRawDataRefImpl(), Result); in containsSymbol()
498 inline std::error_code RelocationRef::getAddress(uint64_t &Result) const { in getAddress() argument
499 return OwningObject->getRelocationAddress(RelocationPimpl, Result); in getAddress()
502 inline std::error_code RelocationRef::getOffset(uint64_t &Result) const { in getOffset() argument
503 return OwningObject->getRelocationOffset(RelocationPimpl, Result); in getOffset()
510 inline std::error_code RelocationRef::getType(uint64_t &Result) const { in getType() argument
511 return OwningObject->getRelocationType(RelocationPimpl, Result); in getType()
515 RelocationRef::getTypeName(SmallVectorImpl<char> &Result) const { in getTypeName() argument
516 return OwningObject->getRelocationTypeName(RelocationPimpl, Result); in getTypeName()
520 RelocationRef::getValueString(SmallVectorImpl<char> &Result) const { in getValueString() argument
521 return OwningObject->getRelocationValueString(RelocationPimpl, Result); in getValueString()
524 inline std::error_code RelocationRef::getHidden(bool &Result) const { in getHidden() argument
525 return OwningObject->getRelocationHidden(RelocationPimpl, Result); in getHidden()
549 inline std::error_code LibraryRef::getNext(LibraryRef &Result) const { in getNext() argument
550 return OwningObject->getLibraryNext(LibraryPimpl, Result); in getNext()
553 inline std::error_code LibraryRef::getPath(StringRef &Result) const { in getPath() argument
554 return OwningObject->getLibraryPath(LibraryPimpl, Result); in getPath()