Searched refs:m_Type (Results 1 - 23 of 23) sorted by relevance

/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/lib/Script/
H A DInputToken.cpp16 InputToken::InputToken() : m_Type(Unknown), m_bAsNeeded(false) {
20 : StrToken(StrToken::Input, pName), m_Type(pType), m_bAsNeeded(pAsNeeded) {
H A DAssignment.cpp36 m_Type(pType),
H A DScriptParser.yy363 $$.m_Type = $2.m_Type;
388 $$.m_Type = $2;
393 $$.m_Type = $1;
H A DOperand.cpp24 Operand::Operand(Type pType) : ExprToken(ExprToken::OPERAND), m_Type(pType) {
H A DOperator.cpp44 : ExprToken(ExprToken::OPERATOR), m_Arity(pArity), m_Type(pType) {
/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 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
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
/frameworks/compile/mclinker/lib/MC/
H A DInput.cpp20 : m_Type(Unknown),
32 : m_Type(Unknown),
47 : m_Type(pType),
63 : m_Type(pType),
/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/Fragment/
H A DRelocation.cpp63 : m_Type(0x0), m_TargetData(0x0), m_pSymInfo(NULL), m_Addend(0x0) {
70 : m_Type(pType),
127 m_Type = pType;
139 return pRelocator.getSize(m_Type);
/frameworks/compile/mclinker/lib/Target/
H A DELFAttributeValue.cpp53 if ((pValue.type() != m_Type) || isUninitialized())
/frameworks/compile/mclinker/include/mcld/Fragment/
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
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
/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/lib/LD/
H A DELFSegment.cpp28 : m_Type(llvm::ELF::PT_NULL),
40 : m_Type(pType),
H A DLDSection.cpp27 m_Type(0x0),
47 m_Type(pType),
/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),
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp77 m_Prolog.m_Type = OutputSectDesc::LOAD;

Completed in 320 milliseconds