HomeSort by relevance Sort by last modified time
    Searched refs:HasSection (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/IR/
ModuleSummaryIndex.h 92 /// Group flags (Linkage, hasSection, isOptSize, etc.) as a bitfield.
104 unsigned HasSection : 1;
107 explicit GVFlags(GlobalValue::LinkageTypes Linkage, bool HasSection)
108 : Linkage(Linkage), HasSection(HasSection) {}
110 : Linkage(GV.getLinkage()), HasSection(GV.hasSection()) {}
182 bool hasSection() const { return Flags.HasSection; }
  /art/runtime/
elf_file.h 72 bool HasSection(const std::string& name) const;
elf_file.cc     [all...]
  /art/compiler/
elf_writer_test.cc 122 EXPECT_TRUE(ef->HasSection(".note.gnu.build-id"));
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 731 auto HasSection = RawFlags & 0x1; // bool
732 return GlobalValueSummary::GVFlags(Linkage, HasSection);
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]

Completed in 191 milliseconds