HomeSort by relevance Sort by last modified time
    Searched refs:getSectionName (Results 1 - 25 of 39) sorted by null

1 2

  /external/llvm/include/llvm/MC/
MCSectionMachO.h 49 StringRef getSectionName() const {
57 return StringRef(getSegmentName().str() + getSectionName().str() + "_begin");
61 return StringRef(getSegmentName().str() + getSectionName().str() + "_end");
MCSectionCOFF.h 62 StringRef getSectionName() const { return SectionName; }
MCSectionELF.h 65 StringRef getSectionName() const { return SectionName; }
  /external/llvm/lib/MC/
MCSectionCOFF.cpp 45 OS << '\t' << getSectionName() << '\n';
49 OS << "\t.section\t" << getSectionName() << ",\"";
MCSectionELF.cpp 63 OS << '\t' << getSectionName();
71 printName(OS, getSectionName());
MCSectionMachO.cpp 93 OS << "\t.section\t" << getSegmentName() << ',' << getSectionName();
ELFObjectWriter.cpp     [all...]
MCContext.cpp 241 ELFUniquingMap.erase(SectionGroupPair(Section->getSectionName(), GroupName));
MCWin64EH.cpp 226 StringRef name = COFFSection->getSectionName();
WinCOFFObjectWriter.cpp 348 COFFSection *coff_section = createSection(Sec.getSectionName());
349 COFFSymbol *coff_symbol = createSymbol(Sec.getSectionName());
886 MCSec.getSectionName());
    [all...]
  /frameworks/av/camera/tests/
VendorTagDescriptorTests.cpp 119 EXPECT_STREQ(vDesc->getSectionName(tag), vOps->get_section_name(vOps, tag));
163 EXPECT_STREQ(vDescOriginal->getSectionName(tag), vDescParceled->getSectionName(tag));
188 EXPECT_EQ(VENDOR_SECTION_NAME_ERR, vDesc->getSectionName(BAD_TAG));
200 EXPECT_EQ(VENDOR_SECTION_NAME_ERR, vDesc->getSectionName(BAD_TAG));
  /frameworks/av/include/camera/
VendorTagDescriptor.h 54 const char* getSectionName(uint32_t tag) const;
  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSectionHeader.hxx 28 return owner->getSectionName(getNameIndex());
  /hardware/libhardware/modules/camera/
VendorTags.h 34 const char* getSectionName(const vendor_tag_ops_t* ops, uint32_t tag);
VendorTags.cpp 159 const char* VendorTags::getSectionName(const vendor_tag_ops_t* ops, uint32_t tag)
CameraHAL.cpp 139 return gVendorTags.getSectionName(ops, tag);
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 347 (SMO.getSectionName() == "__eh_frame" ||
348 SMO.getSectionName() == "__ustring")) ||
350 (SMO.getSectionName() == "__cfstring" ||
351 SMO.getSectionName() == "__objc_classrefs" ||
352 SMO.getSectionName() == "__objc_catlist")));
538 if (SecELF->getSectionName() == ".eh_frame")
  /external/llvm/tools/obj2yaml/
elf2yaml.cpp 147 NameOrErr = Obj.getSectionName(Shdr);
185 ErrorOr<StringRef> NameOrErr = Obj.getSectionName(Shdr);
192 NameOrErr = Obj.getSectionName(LinkSection);
210 ErrorOr<StringRef> NameOrErr = Obj.getSectionName(InfoSection);
  /frameworks/rs/cpu_ref/linkloader/include/
ELFObject.h 72 char const *getSectionName(size_t i) const;
  /external/llvm/include/llvm/Object/
COFF.h 379 std::error_code getSectionName(DataRefImpl Sec,
464 std::error_code getSectionName(const coff_section *Sec, StringRef &Res) const;
ObjectFile.h 244 virtual std::error_code getSectionName(DataRefImpl Sec,
415 return OwningObject->getSectionName(SectionPimpl, Result);
ELF.h 420 ErrorOr<StringRef> getSectionName(const Elf_Shdr *Section) const;
904 return getSectionName(ContainingSec);
915 ELFFile<ELFT>::getSectionName(const Elf_Shdr *Section) const {
    [all...]
ELFObjectFile.h 79 std::error_code getSectionName(DataRefImpl Sec,
380 std::error_code ELFObjectFile<ELFT>::getSectionName(DataRefImpl Sec,
382 ErrorOr<StringRef> Name = EF.getSectionName(&*toELFShdrIter(Sec));
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h 515 if (ErrorOr<StringRef> Name = ELF->getSectionName(EHT))
539 if (ErrorOr<StringRef> SectionName = ELF->getSectionName(IT))
  /frameworks/av/camera/
VendorTagDescriptor.cpp 267 const char* VendorTagDescriptor::getSectionName(uint32_t tag) const {
438 return sGlobalVendorTagDescriptor->getSectionName(tag);

Completed in 413 milliseconds

1 2