Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/include/mcld/Target/
DELFAttributeValue.h40 ELFAttributeValue() : m_Type(Uninitialized), m_IntValue(0), m_StringValue() {} in ELFAttributeValue()
45 unsigned int type() const { return m_Type; } in type()
47 void setType(unsigned int pType) { m_Type = pType; } in setType()
69 inline bool isUninitialized() const { return (m_Type == Uninitialized); } in isUninitialized()
73 inline bool isIntValue() const { return (m_Type & Int); } in isIntValue()
75 inline bool isStringValue() const { return (m_Type & String); } in isStringValue()
77 inline bool hasNoDefault() const { return (m_Type & NoDefault); } in hasNoDefault()
98 m_Type = Uninitialized; in reset()
105 unsigned int m_Type;
/frameworks/compile/mclinker/lib/MC/
DInput.cpp20 : m_Type(Unknown), in Input()
32 : m_Type(Unknown), in Input()
47 : m_Type(pType), in Input()
63 : m_Type(pType), in Input()
/frameworks/compile/mclinker/include/mcld/MC/
DInput.h71 void setType(unsigned int pType) { m_Type = pType; } in setType()
73 unsigned int type() const { return m_Type; } in type()
75 bool isRecognized() const { return (m_Type != Unknown); } in isRecognized()
110 unsigned int m_Type;
/frameworks/compile/mclinker/include/mcld/Script/
DOutputSectDesc.h52 void setType(Type pType) { m_Type = pType; } in setType()
54 Type type() const { return m_Type; } in type()
86 if (m_Type != pRHS.m_Type)
100 Type m_Type; member
DInputToken.h31 Type type() const { return m_Type; } in type()
40 Type m_Type;
DAssignment.h44 Type type() const { return m_Type; } in type()
65 Type m_Type; variable
DOperand.h38 Type type() const { return m_Type; } in type()
49 Type m_Type;
DOperator.h100 Type type() const { return m_Type; } in type()
118 Type m_Type; variable
/frameworks/compile/mclinker/lib/Fragment/
DRelocation.cpp63 : m_Type(0x0), m_TargetData(0x0), m_pSymInfo(NULL), m_Addend(0x0) { in Relocation()
70 : m_Type(pType), in Relocation()
127 m_Type = pType; in setType()
139 return pRelocator.getSize(m_Type); in size()
/frameworks/compile/mclinker/lib/Script/
DInputToken.cpp16 InputToken::InputToken() : m_Type(Unknown), m_bAsNeeded(false) { in InputToken()
20 : StrToken(StrToken::Input, pName), m_Type(pType), m_bAsNeeded(pAsNeeded) { in InputToken()
DScriptParser.yy363 $$.m_Type = $2.m_Type;
388 $$.m_Type = $2;
393 $$.m_Type = $1;
DAssignment.cpp36 m_Type(pType), in Assignment()
DOperand.cpp24 Operand::Operand(Type pType) : ExprToken(ExprToken::OPERAND), m_Type(pType) { in Operand()
DOperator.cpp44 : ExprToken(ExprToken::OPERATOR), m_Arity(pArity), m_Type(pType) { in Operator()
/frameworks/compile/mclinker/include/mcld/Fragment/
DStub.h37 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType) {} in Fixup()
45 Type type() const { return m_Type; } in type()
50 Type m_Type; variable
DRelocation.h69 Type type() const { return m_Type; } in type()
110 Type m_Type;
/frameworks/compile/mclinker/include/mcld/LD/
DELFSegment.h59 uint32_t type() const { return m_Type; } in type()
90 if (llvm::ELF::PT_TLS != m_Type) in updateFlag()
106 uint32_t m_Type; // Type of segment
DLDSection.h72 uint32_t type() const { return m_Type; } in type()
130 void setType(uint32_t type) { m_Type = type; } in setType()
185 uint32_t m_Type; variable
/frameworks/compile/mclinker/lib/LD/
DELFSegment.cpp28 : m_Type(llvm::ELF::PT_NULL), in ELFSegment()
40 : m_Type(pType), in ELFSegment()
DLDSection.cpp27 m_Type(0x0), in LDSection()
47 m_Type(pType), in LDSection()
/frameworks/compile/mclinker/lib/Target/
DELFAttributeValue.cpp53 if ((pValue.type() != m_Type) || isUninitialized()) in equals()
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsRelocator.cpp45 m_Type(pParent.type()), in MipsRelocationInfo()
52 bool isLast() const { return llvm::ELF::R_MIPS_NONE == (m_Type >> 8); } in isLast()
55 return MipsRelocationInfo(*m_Parent, m_Type >> 8, result(), result()); in next()
62 Relocation::Type type() const { return m_Type & 0xff; } in type()
76 Relocation::Type m_Type; member in mcld::MipsRelocationInfo
84 m_Type(pType), in MipsRelocationInfo()
/frameworks/compile/mclinker/lib/Object/
DSectionMap.cpp77 m_Prolog.m_Type = OutputSectDesc::LOAD; in Output()