Searched defs:m_Type (Results 1 - 12 of 12) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Script/
H A DInputToken.h31 Type type() const { return m_Type; }
40 Type m_Type; member in class:mcld::InputToken
H A DAssignment.h44 Type type() const { return m_Type; }
65 Type m_Type; member in class:mcld::Assignment
H A DOperand.h38 Type type() const { return m_Type; }
49 Type m_Type; member in class:mcld::Operand
H A DOperator.h100 Type type() const { return m_Type; }
118 Type m_Type; member in class:mcld::Operator
H A DOutputSectDesc.h52 void setType(Type pType) { m_Type = pType; }
54 Type type() const { return m_Type; }
86 if (m_Type != pRHS.m_Type)
100 Type m_Type; member in struct:mcld::OutputSectDesc::Prolog
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h69 Type type() const { return m_Type; }
109 /// m_Type - the type of the relocation entries
110 Type m_Type; member in class:mcld::Relocation
H A DStub.h37 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType) {}
45 Type type() const { return m_Type; }
50 Type m_Type; member in class:mcld::Stub::Fixup
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttributeValue.h40 ELFAttributeValue() : m_Type(Uninitialized), m_IntValue(0), m_StringValue() {}
45 unsigned int type() const { return m_Type; }
47 void setType(unsigned int pType) { m_Type = pType; }
69 inline bool isUninitialized() const { return (m_Type == Uninitialized); }
73 inline bool isIntValue() const { return (m_Type & Int); }
75 inline bool isStringValue() const { return (m_Type & String); }
77 inline bool hasNoDefault() const { return (m_Type & NoDefault); }
98 m_Type = Uninitialized;
105 unsigned int m_Type; member in class:mcld::ELFAttributeValue
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFSegment.h59 uint32_t type() const { return m_Type; }
90 if (llvm::ELF::PT_TLS != m_Type)
106 uint32_t m_Type; // Type of segment member in class:mcld::ELFSegment
H A DLDSection.h72 uint32_t type() const { return m_Type; }
130 void setType(uint32_t type) { m_Type = type; }
185 uint32_t m_Type; member in class:mcld::LDSection
/frameworks/compile/mclinker/include/mcld/MC/
H A DInput.h71 void setType(unsigned int pType) { m_Type = pType; }
73 unsigned int type() const { return m_Type; }
75 bool isRecognized() const { return (m_Type != Unknown); }
110 unsigned int m_Type; member in class:mcld::Input
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocator.cpp45 m_Type(pParent.type()),
52 bool isLast() const { return llvm::ELF::R_MIPS_NONE == (m_Type >> 8); }
55 return MipsRelocationInfo(*m_Parent, m_Type >> 8, result(), result());
62 Relocation::Type type() const { return m_Type & 0xff; }
76 Relocation::Type m_Type; member in class:mcld::MipsRelocationInfo
84 m_Type(pType),

Completed in 351 milliseconds