HomeSort by relevance Sort by last modified time
    Searched defs:SectionName (Results 76 - 87 of 87) sorted by null

1 2 34

  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCContext.h 182 std::string SectionName;
186 ELFSectionKey(StringRef SectionName, StringRef GroupName,
188 : SectionName(SectionName), GroupName(GroupName), UniqueID(UniqueID) {
192 if (SectionName != Other.SectionName)
193 return SectionName < Other.SectionName;
201 std::string SectionName;
206 COFFSectionKey(StringRef SectionName, StringRef GroupName
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
MachO.h 105 // checked entries are to be used with the segmentName(), sectionName() and
119 StringRef sectionName(int32_t SegIndex, uint64_t SegOffset);
126 StringRef SectionName;
153 StringRef sectionName() const;
203 StringRef sectionName() const;
404 return BindRebaseSectionTable->sectionName(SegIndex, SegOffset);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 124 StringRef SectionName;
125 Sec.getName(SectionName);
126 if (SectionName != "") {
798 StringRef SectionName;
799 if (auto EC = Section.getName(SectionName))
802 if (SectionName == ".got"
803 || SectionName == ".toc"
804 || SectionName == ".tocbss"
805 || SectionName == ".plt") {
    [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 431 StringRef SectionName;
432 MachO->getSectionName(Ref, SectionName);
434 outs() << "(" << SegmentName << "," << SectionName << ") ";
863 StringRef SectionName;
864 Obj.getSectionName(Ref, SectionName);
866 if (SegmentName == "__TEXT" && SectionName == "__text")
868 if (SegmentName == "__DATA" && SectionName == "__data")
870 if (SegmentName == "__DATA" && SectionName == "__bss")
941 StringRef SectionName
    [all...]
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 94 void printCodeViewSymbolSection(StringRef SectionName, const SectionRef &Section);
95 void printCodeViewTypeSection(StringRef SectionName, const SectionRef &Section);
700 StringRef SectionName;
701 error(S.getName(SectionName));
702 if (SectionName == ".debug$T")
703 printCodeViewTypeSection(SectionName, S);
706 StringRef SectionName;
707 error(S.getName(SectionName));
708 if (SectionName == ".debug$S")
709 printCodeViewSymbolSection(SectionName, S)
    [all...]
ELFDumper.cpp 713 StringRef &SectionName, unsigned &SectionIndex) {
716 SectionName = "Undefined";
718 SectionName = "Processor Specific";
720 SectionName = "Operating System Specific";
722 SectionName = "Absolute";
724 SectionName = "Common";
726 SectionName = "Reserved";
733 SectionName = unwrapOrError(Obj.getSectionName(Sec));
    [all...]
  /external/v8/src/wasm/
module-decoder.cc 33 const char* SectionName(WasmSectionCode code) {
197 TRACE("Section: %s\n", SectionName(section_code_));
680 SectionName(section_iter.section_code()));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
ELFObjectWriter.cpp 687 const StringRef SectionName = Section.getSectionName();
689 RelaSectionName += SectionName;
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
setupapi.h 836 CHAR SectionName[LINE_LEN];
848 WCHAR SectionName[LINE_LEN];
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/errorprone/javac/9-dev-r3297-4/
javac-9-dev-r3297-4.jar 

Completed in 9060 milliseconds

1 2 34