HomeSort by relevance Sort by last modified time
    Searched refs:pType (Results 1 - 25 of 247) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/compile/mclinker/lib/Script/
InputToken.cpp 19 InputToken::InputToken(Type pType, const std::string& pName, bool pAsNeeded)
20 : StrToken(StrToken::Input, pName), m_Type(pType), m_bAsNeeded(pAsNeeded) {
  /frameworks/compile/mclinker/lib/LD/
ELFSegmentFactory.cpp 18 ELFSegmentFactory::iterator ELFSegmentFactory::find(uint32_t pType,
23 if ((*segment)->type() == pType &&
33 uint32_t pType,
38 if ((*segment)->type() == pType &&
47 ELFSegmentFactory::iterator ELFSegmentFactory::find(uint32_t pType,
51 if ((*segment)->type() == pType) {
63 uint32_t pType,
67 if ((*segment)->type() == pType) {
78 ELFSegment* ELFSegmentFactory::produce(uint32_t pType, uint32_t pFlag) {
79 m_Segments.push_back(ELFSegment::Create(pType, pFlag))
    [all...]
ELFSegment.cpp 39 ELFSegment::ELFSegment(uint32_t pType, uint32_t pFlag)
40 : m_Type(pType),
84 ELFSegment* ELFSegment::Create(uint32_t pType, uint32_t pFlag) {
86 new (seg) ELFSegment(pType, pFlag);
LDSection.cpp 41 uint32_t pType,
47 m_Type(pType),
68 uint32_t pType,
73 new (result) LDSection(pName, pKind, pType, pFlag, pSize, pAddr);
  /frameworks/compile/mclinker/lib/MC/
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);
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);
    [all...]
Input.cpp 45 unsigned int pType,
47 : m_Type(pType),
61 unsigned int pType,
63 : m_Type(pType),
  /frameworks/compile/mclinker/include/mcld/LD/
ELFSegmentFactory.h 45 iterator find(uint32_t pType, uint32_t pFlagSet, uint32_t pFlagClear);
47 const_iterator find(uint32_t pType,
51 iterator find(uint32_t pType, const LDSection* pSection);
53 const_iterator find(uint32_t pType, const LDSection* pSection) const;
57 /// @param pType - p_type in ELF program header
58 ELFSegment* produce(uint32_t pType, uint32_t pFlag = llvm::ELF::PF_R);
61 uint32_t pType,
RelocationFactory.h 40 /// @param pType - the type of the relocation entry
43 Relocation* produce(Type pType, FragmentRef& pFragRef, Address pAddend = 0);
  /hardware/qcom/camera/QCamera2/util/
QCameraBufferMaps.h 43 QCameraBufferMaps(cam_mapping_buf_type pType,
55 uint32_t enqueue(cam_mapping_buf_type pType,
65 static uint32_t makeSingletonBufMapList(cam_mapping_buf_type pType,
QCameraBufferMaps.cpp 94 * @pType : Type of buffer
104 QCameraBufferMaps::QCameraBufferMaps(cam_mapping_buf_type pType,
113 enqueue(pType, pStreamId, pFrameIndex, pPlaneIndex, pCookie, pFd, pSize);
153 * @pType : Type of buffer
165 uint32_t QCameraBufferMaps::enqueue(cam_mapping_buf_type pType,
174 mBufMapList.buf_maps[pos].type = pType;
210 * @pType : Type of buffer
223 uint32_t QCameraBufferMaps::makeSingletonBufMapList(cam_mapping_buf_type pType,
234 QCameraBufferMaps bufferMaps(pType,
  /frameworks/compile/mclinker/include/mcld/MC/
InputFactory.h 41 unsigned int pType = Input::Unknown,
46 unsigned int pType = Input::Unknown,
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);
Input.h 52 unsigned int pType = Unknown,
58 unsigned int pType = Unknown,
71 void setType(unsigned int pType) { m_Type = pType; }
  /frameworks/compile/mclinker/lib/Fragment/
Relocation.cpp 44 /// @param pType [in] the type of the relocation entry
47 Relocation* Relocation::Create(Type pType,
50 return g_RelocationFactory->produce(pType, pFragRef, pAddend);
66 Relocation::Relocation(Relocation::Type pType,
70 : m_Type(pType),
126 void Relocation::setType(Type pType) {
127 m_Type = pType;
  /external/parameter-framework/upstream/parameter/
SelectionCriteriaDefinition.h 43 const CSelectionCriterionType *pType,
SelectionCriteria.h 58 const CSelectionCriterionType *pType,
  /frameworks/compile/mclinker/include/mcld/Script/
InputToken.h 26 InputToken(Type pType, const std::string& pName, bool pAsNeeded);
  /frameworks/compile/mclinker/include/mcld/Fragment/
Relocation.h 40 Relocation(Type pType,
58 /// @param pType [in] the type of the relocation entry
61 static Relocation* Create(Type pType,
102 void setType(Type pType);
Stub.h 36 Fixup(DWord pOffset, SWord pAddend, Type pType)
37 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType) {}
129 void addFixup(DWord pOffset, SWord pAddend, Type pType);
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 83 /// @param pType [in] The type of the input file. MCLinker will parse the
84 /// input file to create sections only if pType is
89 Input::Type pType);
215 /// @param pType [in] The meaning of the content in the section. The
224 uint32_t pType,
370 /// @param [in] pType What the symbol refers to. May be a object,
388 ResolveInfo::Type pType,
424 /// @param [in] pType The type of the symbol
434 ResolveInfo::Type pType,
447 /// @param [in] pType The type of the relocation (target dependent
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsRelocator.h 137 const char* getName(Relocation::Type pType) const;
150 Relocation::Type pType) = 0;
157 Relocation::Type pType);
208 Relocation::Type pType);
209 Size getSize(Relocation::Type pType) const;
223 Relocation::Type pType);
224 Size getSize(Relocation::Type pType) const;
MipsLDBackend.h 38 bool needsLA25Stub(Relocation::Type pType, const mcld::ResolveInfo* pSym);
171 Relocation::Type& pType,
177 Relocation::Type& pType,
184 Relocation::Type& pType,
190 Relocation::Type& pType,
197 Relocation::Type pType,
203 Relocation::Type pType,
210 Relocation::Type pType,
216 Relocation::Type pType,
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 31 LDFileFormat::Kind GetELFSectionKind(uint32_t pType,
64 switch (pType) {
99 if ((pType >= llvm::ELF::SHT_LOPROC && pType <= llvm::ELF::SHT_HIPROC) ||
100 (pType >= llvm::ELF::SHT_LOOS && pType <= llvm::ELF::SHT_HIOS) ||
101 (pType >= llvm::ELF::SHT_LOUSER && pType <= llvm::ELF::SHT_HIUSER))
103 fatal(diag::err_unsupported_section) << pName << pType;
125 Input::Type pType) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pstore.h 342 virtual HRESULT WINAPI CreateType(PST_KEY Key,const GUID *pType,PPST_TYPEINFO pInfo,DWORD dwFlags) = 0;
343 virtual HRESULT WINAPI GetTypeInfo(PST_KEY Key,const GUID *pType,PPST_TYPEINFO *ppInfo,DWORD dwFlags) = 0;
344 virtual HRESULT WINAPI DeleteType(PST_KEY Key,const GUID *pType,DWORD dwFlags) = 0;
345 virtual HRESULT WINAPI CreateSubtype(PST_KEY Key,const GUID *pType,const GUID *pSubtype,PPST_TYPEINFO pInfo,PPST_ACCESSRULESET pRules,DWORD dwFlags) = 0;
346 virtual HRESULT WINAPI GetSubtypeInfo(PST_KEY Key,const GUID *pType,const GUID *pSubtype,PPST_TYPEINFO *ppInfo,DWORD dwFlags) = 0;
347 virtual HRESULT WINAPI DeleteSubtype(PST_KEY Key,const GUID *pType,const GUID *pSubtype,DWORD dwFlags) = 0;
348 virtual HRESULT WINAPI ReadAccessRuleset(PST_KEY Key,const GUID *pType,const GUID *pSubtype,PPST_ACCESSRULESET *ppRules,DWORD dwFlags) = 0;
349 virtual HRESULT WINAPI WriteAccessRuleset(PST_KEY Key,const GUID *pType,const GUID *pSubtype,PPST_ACCESSRULESET pRules,DWORD dwFlags) = 0;
351 virtual HRESULT WINAPI EnumSubtypes(PST_KEY Key,const GUID *pType,DWORD dwFlags,IEnumPStoreTypes **ppenum) = 0;
368 HRESULT (WINAPI *CreateType)(IPStore *This,PST_KEY Key,const GUID *pType,PPST_TYPEINFO pInfo,DWORD dwFlags)
    [all...]

Completed in 509 milliseconds

1 2 3 4 5 6 7 8 910