HomeSort by relevance Sort by last modified time
    Searched defs:SectionKind (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Object/
ELFYAML.h 74 enum class SectionKind { RawContent, Relocation };
75 SectionKind Kind;
82 Section(SectionKind Kind) : Kind(Kind) {}
88 RawContentSection() : Section(SectionKind::RawContent) {}
90 return S->Kind == SectionKind::RawContent;
102 RelocationSection() : Section(SectionKind::Relocation) {}
104 return S->Kind == SectionKind::Relocation;
  /external/llvm/include/llvm/MC/
SectionKind.h 20 /// SectionKind - This is a simple POD value that classifies the properties of
28 class SectionKind {
38 /// SectionKind are not mergeable.
200 static SectionKind get(Kind K) {
201 SectionKind Res;
207 static SectionKind getMetadata() { return get(Metadata); }
208 static SectionKind getText() { return get(Text); }
209 static SectionKind getReadOnly() { return get(ReadOnly); }
210 static SectionKind getMergeable1ByteCString() {
213 static SectionKind getMergeable2ByteCString()
    [all...]
  /external/valgrind/main/VEX/unused/
linker.c 49 SectionKind;
55 SectionKind kind;
977 SectionKind kind = SECTIONKIND_OTHER;
    [all...]

Completed in 604 milliseconds