/frameworks/compile/mclinker/include/mcld/Target/ |
D | ELFAttributeValue.h | 40 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/ |
D | Input.cpp | 20 : 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/ |
D | Input.h | 71 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/ |
D | OutputSectDesc.h | 52 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
|
D | InputToken.h | 31 Type type() const { return m_Type; } in type() 40 Type m_Type;
|
D | Assignment.h | 44 Type type() const { return m_Type; } in type() 65 Type m_Type; variable
|
D | Operand.h | 38 Type type() const { return m_Type; } in type() 49 Type m_Type;
|
D | Operator.h | 100 Type type() const { return m_Type; } in type() 118 Type m_Type; variable
|
/frameworks/compile/mclinker/lib/Fragment/ |
D | Relocation.cpp | 63 : 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/ |
D | InputToken.cpp | 16 InputToken::InputToken() : m_Type(Unknown), m_bAsNeeded(false) { in InputToken() 20 : StrToken(StrToken::Input, pName), m_Type(pType), m_bAsNeeded(pAsNeeded) { in InputToken()
|
D | ScriptParser.yy | 363 $$.m_Type = $2.m_Type; 388 $$.m_Type = $2; 393 $$.m_Type = $1;
|
D | Assignment.cpp | 36 m_Type(pType), in Assignment()
|
D | Operand.cpp | 24 Operand::Operand(Type pType) : ExprToken(ExprToken::OPERAND), m_Type(pType) { in Operand()
|
D | Operator.cpp | 44 : ExprToken(ExprToken::OPERATOR), m_Arity(pArity), m_Type(pType) { in Operator()
|
/frameworks/compile/mclinker/include/mcld/Fragment/ |
D | Stub.h | 37 : 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
|
D | Relocation.h | 69 Type type() const { return m_Type; } in type() 110 Type m_Type;
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | ELFSegment.h | 59 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
|
D | LDSection.h | 72 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/ |
D | ELFSegment.cpp | 28 : m_Type(llvm::ELF::PT_NULL), in ELFSegment() 40 : m_Type(pType), in ELFSegment()
|
D | LDSection.cpp | 27 m_Type(0x0), in LDSection() 47 m_Type(pType), in LDSection()
|
/frameworks/compile/mclinker/lib/Target/ |
D | ELFAttributeValue.cpp | 53 if ((pValue.type() != m_Type) || isUninitialized()) in equals()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsRelocator.cpp | 45 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/ |
D | SectionMap.cpp | 77 m_Prolog.m_Type = OutputSectDesc::LOAD; in Output()
|