/frameworks/compile/mclinker/lib/Script/ |
H A D | InputToken.cpp | 19 InputToken::InputToken(Type pType, const std::string& pName, bool pAsNeeded) argument 20 : StrToken(StrToken::Input, pName), m_Type(pType), m_bAsNeeded(pAsNeeded) {
|
H A D | Operator.cpp | 43 Operator::Operator(Arity pArity, Type pType) argument 44 : ExprToken(ExprToken::OPERATOR), m_Arity(pArity), m_Type(pType) {
|
H A D | Assignment.cpp | 31 Type pType, 36 m_Type(pType), 30 Assignment(Level pLevel, Type pType, SymOperand& pSymbol, RpnExpr& pRpnExpr) argument
|
H A D | Operand.cpp | 24 Operand::Operand(Type pType) : ExprToken(ExprToken::OPERAND), m_Type(pType) { argument
|
H A D | ScriptFile.cpp | 146 Assignment::Type pType) { 155 pType, 160 pType, 166 pType, 144 addAssignment(const std::string& pSymbolName, RpnExpr& pRpnExpr, Assignment::Type pType) argument
|
/frameworks/compile/mclinker/lib/MC/ |
H A D | Input.cpp | 45 unsigned int pType, 47 : m_Type(pType), 61 unsigned int pType, 63 : m_Type(pType), 43 Input(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument 58 Input(llvm::StringRef pName, const sys::fs::Path& pPath, const AttributeProxy& pProxy, unsigned int pType, off_t pFileOffset) argument
|
H A D | InputFactory.cpp | 35 unsigned int pType, 38 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset); 44 unsigned int pType, 47 new (result) Input(pName, sys::fs::Path(pPath), *m_pLast, pType, pFileOffset); 33 produce(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument 42 produce(llvm::StringRef pName, const char* pPath, unsigned int pType, off_t pFileOffset) argument
|
H A D | SearchDirs.cpp | 71 mcld::Input::Type pType) { 72 assert(Input::DynObj == pType || Input::Archive == pType || 73 Input::Script == pType); 76 switch (pType) { 95 switch (pType) { 136 mcld::Input::Type pType) const { 137 assert(Input::DynObj == pType || Input::Archive == pType || 138 Input::Script == pType); 70 find(const std::string& pNamespec, mcld::Input::Type pType) argument [all...] |
H A D | InputBuilder.cpp | 56 unsigned int pType, 58 return m_pInputFactory->produce(pName, pPath, pType, pFileOffset); 54 createInput(const std::string& pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
|
/frameworks/compile/mclinker/lib/LD/ |
H A D | RelocationFactory.cpp | 33 Relocation* RelocationFactory::produce(RelocationFactory::Type pType, argument 73 new (result) Relocation(pType, &pFragRef, pAddend, target_data);
|
H A D | ELFSegmentFactory.cpp | 18 ELFSegmentFactory::iterator ELFSegmentFactory::find(uint32_t pType, argument 23 if ((*segment)->type() == pType && 33 uint32_t pType, 38 if ((*segment)->type() == pType && 47 ELFSegmentFactory::iterator ELFSegmentFactory::find(uint32_t pType, argument 51 if ((*segment)->type() == pType) { 63 uint32_t pType, 67 if ((*segment)->type() == pType) { 78 ELFSegment* ELFSegmentFactory::produce(uint32_t pType, uint32_t pFlag) { argument 79 m_Segments.push_back(ELFSegment::Create(pType, pFla 32 find( uint32_t pType, uint32_t pFlagSet, uint32_t pFlagClear) const argument 62 find( uint32_t pType, const LDSection* pSection) const argument 83 insert(iterator pPosition, uint32_t pType, uint32_t pFlag) argument [all...] |
H A D | ELFSegment.cpp | 39 ELFSegment::ELFSegment(uint32_t pType, uint32_t pFlag) argument 40 : m_Type(pType), 84 ELFSegment* ELFSegment::Create(uint32_t pType, uint32_t pFlag) { argument 86 new (seg) ELFSegment(pType, pFlag);
|
H A D | LDSection.cpp | 41 uint32_t pType, 47 m_Type(pType), 68 uint32_t pType, 73 new (result) LDSection(pName, pKind, pType, pFlag, pSize, pAddr); 39 LDSection(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint64_t pSize, uint64_t pAddr) argument 66 Create(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint64_t pSize, uint64_t pAddr) argument
|
H A D | NamePool.cpp | 36 ResolveInfo::Type pType, 45 (*result)->setType(pType); 58 ResolveInfo::Type pType, 82 new_symbol->setType(pType); 34 createSymbol(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, ResolveInfo::Visibility pVisibility) argument 56 insertSymbol(const llvm::StringRef& pName, bool pIsDyn, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, ResolveInfo::Visibility pVisibility, ResolveInfo* pOldInfo, Resolver::Result& pResult) argument
|
H A D | ResolveInfo.cpp | 91 void ResolveInfo::setType(uint32_t pType) { argument 93 m_BitField |= ((pType << TYPE_OFFSET) & TYPE_MASK);
|
/frameworks/compile/mclinker/include/mcld/MC/ |
H A D | InputBuilder.h | 57 unsigned int pType = Input::Unknown); 62 unsigned int pType = Input::Unknown, 106 unsigned int pType) { 109 Input* input = createInput(pName, pPath, pType); 121 unsigned int pType) { 124 Input* input = createInput(pName, pPath, pType); 103 createNode( const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument 118 createNode( const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument
|
H A D | SymbolCategory.h | 138 explicit Category(Type pType) argument 139 : type(pType), begin(0), end(0), prev(NULL), next(NULL) {}
|
H A D | Input.h | 52 unsigned int pType = Unknown, 58 unsigned int pType = Unknown, 71 void setType(unsigned int pType) { m_Type = pType; } argument
|
/frameworks/compile/mclinker/lib/Fragment/ |
H A D | Stub.cpp | 75 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) { argument 77 m_FixupList.push_back(new Fixup(pOffset, pAddend, pType));
|
H A D | Relocation.cpp | 44 /// @param pType [in] the type of the relocation entry 47 Relocation* Relocation::Create(Type pType, argument 50 return g_RelocationFactory->produce(pType, pFragRef, pAddend); 66 Relocation::Relocation(Relocation::Type pType, argument 70 : m_Type(pType), 126 void Relocation::setType(Type pType) { argument 127 m_Type = pType;
|
/frameworks/wilhelm/src/itf/ |
H A D | IMetadataTraversal.cpp | 86 SLint32 *pNodeID, SLuint32 *pType, SLuint32 size, SLchar *pMimeType) 85 IMetadataTraversal_GetChildInfo(SLMetadataTraversalItf self, SLuint32 index, SLint32 *pNodeID, SLuint32 *pType, SLuint32 size, SLchar *pMimeType) argument
|
/frameworks/compile/mclinker/include/mcld/Fragment/ |
H A D | Stub.h | 36 Fixup(DWord pOffset, SWord pAddend, Type pType) argument 37 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType) {} 129 void addFixup(DWord pOffset, SWord pAddend, Type pType);
|
/frameworks/compile/mclinker/include/mcld/ |
H A D | LinkerConfig.h | 74 void setCodeGenType(CodeGenType pType) { m_CodeGenType = pType; } argument
|
/frameworks/compile/mclinker/include/mcld/Target/ |
H A D | ELFAttributeValue.h | 47 void setType(unsigned int pType) { m_Type = pType; } argument
|
/frameworks/compile/mclinker/lib/Object/ |
H A D | ObjectBuilder.cpp | 36 uint32_t pType, 47 output_sect = LDSection::Create(pName, pKind, pType, pFlag); 34 CreateSection(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint32_t pAlign) argument
|