Searched defs:pType (Results 1 - 25 of 36) sorted by relevance

12

/frameworks/compile/mclinker/lib/Script/
H A DInputToken.cpp21 InputToken::InputToken(Type pType, const std::string& pName, bool pAsNeeded) argument
22 : StrToken(StrToken::Input, pName), m_Type(pType), m_bAsNeeded(pAsNeeded)
H A DOperator.cpp77 Type pType)
80 m_Type(pType)
76 Operator(Arity pArity, Type pType) argument
H A DAssignment.cpp28 Type pType,
33 m_Type(pType),
27 Assignment(Level pLevel, Type pType, SymOperand& pSymbol, RpnExpr& pRpnExpr) argument
H A DOperand.cpp22 Operand::Operand(Type pType) argument
23 : ExprToken(ExprToken::OPERAND), m_Type(pType)
H A DScriptFile.cpp141 Assignment::Type pType)
151 pType,
156 pType,
162 pType,
139 addAssignment(const std::string& pSymbolName, RpnExpr& pRpnExpr, Assignment::Type pType) argument
/frameworks/compile/mclinker/lib/Fragment/
H A DStub.cpp31 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) argument
34 m_FixupList.push_back(new Fixup(pOffset, pAddend, pType));
H A DRelocation.cpp46 /// @param pType [in] the type of the relocation entry
49 Relocation* Relocation::Create(Type pType, FragmentRef& pFragRef, Address pAddend) argument
51 return g_RelocationFactory->produce(pType, pFragRef, pAddend);
68 Relocation::Relocation(Relocation::Type pType, argument
72 : m_Type(pType),
133 void Relocation::setType(Type pType) argument
135 m_Type = pType;
/frameworks/compile/mclinker/lib/MC/
H A DInput.cpp44 unsigned int pType,
46 : m_Type(pType),
60 unsigned int pType,
62 : m_Type(pType),
42 Input(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
57 Input(llvm::StringRef pName, const sys::fs::Path& pPath, const AttributeProxy& pProxy, unsigned int pType, off_t pFileOffset) argument
H A DInputFactory.cpp36 unsigned int pType,
40 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
34 produce(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
H A DSearchDirs.cpp77 SearchDirs::find(const std::string& pNamespec, mcld::Input::Type pType) argument
79 assert(Input::DynObj == pType ||
80 Input::Archive == pType ||
81 Input::Script == pType);
84 switch(pType) {
103 switch(pType) {
144 SearchDirs::find(const std::string& pNamespec, mcld::Input::Type pType) const
146 assert(Input::DynObj == pType ||
147 Input::Archive == pType ||
148 Input::Script == pType);
[all...]
H A DInputBuilder.cpp55 unsigned int pType,
58 return m_pInputFactory->produce(pName, pPath, pType, pFileOffset);
53 createInput(const std::string& pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
/frameworks/compile/mclinker/lib/LD/
H A DELFSegmentFactory.cpp19 ELFSegmentFactory::find(uint32_t pType, uint32_t pFlagSet, uint32_t pFlagClear) argument
23 if ((*segment)->type() == pType &&
33 ELFSegmentFactory::find(uint32_t pType, argument
39 if ((*segment)->type() == pType &&
49 ELFSegmentFactory::find(uint32_t pType, const LDSection* pSection) argument
53 if ((*segment)->type() == pType) {
65 ELFSegmentFactory::find(uint32_t pType, const LDSection* pSection) const argument
69 if ((*segment)->type() == pType) {
80 ELFSegment* ELFSegmentFactory::produce(uint32_t pType, uint32_t pFlag) argument
82 m_Segments.push_back(ELFSegment::Create(pType, pFla
[all...]
H A DRelocationFactory.cpp33 Relocation* RelocationFactory::produce(RelocationFactory::Type pType, argument
75 new (result) Relocation(pType, &pFragRef, pAddend, target_data);
H A DELFSegment.cpp37 ELFSegment::ELFSegment(uint32_t pType, uint32_t pFlag) argument
38 : m_Type(pType),
89 ELFSegment* ELFSegment::Create(uint32_t pType, uint32_t pFlag) argument
92 new (seg) ELFSegment(pType, pFlag);
H A DLDSection.cpp41 uint32_t pType,
47 m_Type(pType),
70 uint32_t pType,
76 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
68 Create(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint64_t pSize, uint64_t pAddr) argument
H A DNamePool.cpp35 ResolveInfo::Type pType,
45 (*result)->setType(pType);
58 ResolveInfo::Type pType,
84 new_symbol->setType(pType);
33 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 DResolveInfo.cpp99 void ResolveInfo::setType(uint32_t pType) argument
102 m_BitField |= ((pType << TYPE_OFFSET) & TYPE_MASK);
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputBuilder.h58 unsigned int pType = Input::Unknown);
63 unsigned int pType = Input::Unknown,
107 unsigned int pType)
111 Input* input = createInput(pName, pPath, pType);
122 unsigned int pType)
126 Input* input = createInput(pName, pPath, pType);
105 createNode(const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument
120 createNode(const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument
H A DSymbolCategory.h148 Category(Type pType) argument
149 : type(pType),
H A DInput.h53 unsigned int pType = Unknown,
59 unsigned int pType = Unknown,
76 void setType(unsigned int pType) argument
77 { m_Type = pType; }
/frameworks/wilhelm/src/itf/
H A DIMetadataTraversal.c86 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 DStub.h35 Fixup(DWord pOffset, SWord pAddend, Type pType) argument
36 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType)
114 void addFixup(DWord pOffset, SWord pAddend, Type pType);
/frameworks/compile/mclinker/include/mcld/
H A DLinkerConfig.h86 void setCodeGenType(CodeGenType pType) { m_CodeGenType = pType; } argument
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttributeValue.h51 void setType(unsigned int pType) argument
52 { m_Type = pType; }
/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp36 uint32_t pType,
48 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

Completed in 7487 milliseconds

12