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

1 2 3 4 5 6 7 8 9

  /frameworks/compile/mclinker/include/mcld/LD/
StaticResolver.h 16 #include <mcld/LD/ResolveInfo.h>
70 U = ResolveInfo::global_flag | ResolveInfo::regular_flag | ResolveInfo::undefine_flag,
71 w_U = ResolveInfo::weak_flag | ResolveInfo::regular_flag | ResolveInfo::undefine_flag,
72 d_U = ResolveInfo::global_flag | ResolveInfo::dynamic_flag | ResolveInfo::undefine_flag
    [all...]
StrSymPool.h 19 #include <mcld/LD/ResolveInfo.h>
44 typedef HashTable<ResolveInfo, StringHash<ELF>, ResolveInfoFactory> Table;
53 ResolveInfo* createSymbol(const llvm::StringRef& pName,
55 ResolveInfo::Type pType,
56 ResolveInfo::Desc pDesc,
57 ResolveInfo::Binding pBinding,
58 ResolveInfo::SizeType pSize,
59 ResolveInfo::Visibility pVisibility = ResolveInfo::Default);
62 /// @param pOldInfo - if pOldInfo is not NULL, the old ResolveInfo bein
    [all...]
ResolveInfoFactory.h 14 #include "mcld/LD/ResolveInfo.h"
25 typedef ResolveInfo entry_type;
26 typedef ResolveInfo::key_type key_type;
Resolver.h 20 class ResolveInfo;
48 ResolveInfo* info;
64 virtual unsigned int resolve(ResolveInfo & __restrict__ pOld,
65 const ResolveInfo & __restrict__ pNew,
69 /// @return the pointer to resolved ResolveInfo
73 ResolveInfo& __restrict__ pOld,
74 const ResolveInfo& __restrict__ pNew,
ResolveInfo.h 1 //===- ResolveInfo.h ------------------------------------------------------===//
23 /** \class ResolveInfo
24 * \brief ResolveInfo records the information about how to resolve a symbol.
38 class ResolveInfo
124 void override(const ResolveInfo& pForm);
126 void overrideAttributes(const ResolveInfo& pFrom);
128 void overrideVisibility(const ResolveInfo& pFrom);
133 void setLink(const ResolveInfo* pTarget) {
134 m_Ptr.info_ptr = const_cast<ResolveInfo*>(pTarget);
181 ResolveInfo* link(
    [all...]
Relocation.h 17 #include <mcld/LD/ResolveInfo.h>
60 const ResolveInfo* symInfo() const
64 ResolveInfo* symInfo()
88 void setSymInfo(ResolveInfo* pSym);
103 ResolveInfo* m_pSymInfo;
LDSymbol.h 16 #include "mcld/LD/ResolveInfo.h"
32 typedef ResolveInfo::SizeType SizeType;
95 ResolveInfo* resolveInfo()
98 const ResolveInfo* resolveInfo() const
115 void setResolveInfo(const ResolveInfo& pInfo);
119 ResolveInfo* m_pResolveInfo;
  /frameworks/base/core/java/android/content/pm/
ResolveInfo.aidl 20 parcelable ResolveInfo;
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 1 //===- ResolveInfo.cpp ----------------------------------------------------===//
9 #include "mcld/LD/ResolveInfo.h"
15 // ResolveInfo
16 ResolveInfo::ResolveInfo()
21 ResolveInfo::~ResolveInfo()
25 void ResolveInfo::override(const ResolveInfo& pFrom)
32 void ResolveInfo::overrideAttributes(const ResolveInfo& pFrom
    [all...]
StrSymPool.cpp 29 ResolveInfo* StrSymPool::createSymbol(const llvm::StringRef& pName,
31 ResolveInfo::Type pType,
32 ResolveInfo::Desc pDesc,
33 ResolveInfo::Binding pBinding,
34 ResolveInfo::SizeType pSize,
35 ResolveInfo::Visibility pVisibility)
37 ResolveInfo* result = m_Table.getEntryFactory().produce(pName);
49 /// @return the pointer of resolved ResolveInfo
53 ResolveInfo::Type pType,
54 ResolveInfo::Desc pDesc
    [all...]
LDSymbol.cpp 41 void LDSymbol::setResolveInfo(const ResolveInfo& pInfo)
43 m_pResolveInfo = const_cast<ResolveInfo*>(&pInfo);
  /frameworks/compile/mclinker/include/mcld/MC/
MCLinker.h 76 ResolveInfo::Type pType,
77 ResolveInfo::Desc pDesc,
78 ResolveInfo::Binding pBinding,
79 ResolveInfo::SizeType pSize,
82 ResolveInfo::Visibility pVisibility = ResolveInfo::Default);
106 ResolveInfo::Type pType,
107 ResolveInfo::Desc pDesc,
108 ResolveInfo::Binding pBinding,
109 ResolveInfo::SizeType pSize
    [all...]
  /frameworks/compile/mclinker/unittests/
StaticResolverTest.cpp 10 #include <mcld/LD/ResolveInfo.h>
49 ResolveInfo* old_sym = m_pFactory->produce("abc");
50 ResolveInfo* new_sym = m_pFactory->produce("abc");
51 new_sym->setDesc(ResolveInfo::Define);
52 old_sym->setDesc(ResolveInfo::Define);
53 ASSERT_EQ( mcld::ResolveInfo::Define, new_sym->desc());
54 ASSERT_EQ( mcld::ResolveInfo::Define, old_sym->desc());
55 ASSERT_TRUE( mcld::ResolveInfo::define_flag == new_sym->info());
56 ASSERT_TRUE( mcld::ResolveInfo::define_flag == old_sym->info());
65 ResolveInfo* old_sym = m_pFactory->produce("abc")
    [all...]
SymbolCategoryTest.cpp 10 #include <mcld/LD/ResolveInfo.h>
48 ResolveInfo* a = m_InfoFactory.produce("a");
49 ResolveInfo* b = m_InfoFactory.produce("b");
50 ResolveInfo* c = m_InfoFactory.produce("c");
51 ResolveInfo* d = m_InfoFactory.produce("d");
52 ResolveInfo* e = m_InfoFactory.produce("e");
53 e->setBinding(ResolveInfo::Global);
54 d->setBinding(ResolveInfo::Weak);
55 c->setDesc(ResolveInfo::Common);
56 c->setBinding(ResolveInfo::Global)
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
MockPackageManager.java 21 import android.content.pm.ResolveInfo;
33 public List<ResolveInfo> queryBroadcastReceivers(Intent intent, int flags) {
34 List<ResolveInfo> resolveInfos = new ArrayList<ResolveInfo>();
41 private ResolveInfo createResolveInfo(String packageName) {
45 ResolveInfo resolveInfo = new ResolveInfo();
46 resolveInfo.activityInfo = activityInfo;
47 return resolveInfo;
    [all...]
  /cts/tests/tests/content/src/android/content/pm/cts/
ResolveInfo_DisplayNameComparatorTest.java 22 import android.content.pm.ResolveInfo;
23 import android.content.pm.ResolveInfo.DisplayNameComparator;
35 ResolveInfo activityInfo = pm.resolveActivity(intent, 0);
38 ResolveInfo serviceInfo = pm.resolveService(intent, PackageManager.GET_RESOLVED_FILTER);
  /frameworks/base/core/java/android/app/
ISearchManager.aidl 22 import android.content.pm.ResolveInfo;
30 List<ResolveInfo> getGlobalSearchActivities();
  /frameworks/support/v4/ics/android/support/v4/accessibilityservice/
AccessibilityServiceInfoCompatIcs.java 21 import android.content.pm.ResolveInfo;
40 public static ResolveInfo getResolveInfo(AccessibilityServiceInfo info) {
  /frameworks/compile/mclinker/lib/MC/
MCLinker.cpp 57 ResolveInfo::Type pType,
58 ResolveInfo::Desc pDesc,
59 ResolveInfo::Binding pBinding,
60 ResolveInfo::SizeType pSize,
63 ResolveInfo::Visibility pVisibility)
68 ResolveInfo old_info; // used for arrange output symbols
70 if (pBinding == ResolveInfo::Local) {
92 // the return ResolveInfo should not NULL
99 // set the relation between input LDSymbol and its ResolveInfo
116 // set up the relation between output LDSymbol and its ResolveInfo
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
OutputRelocSection.h 22 class ResolveInfo;
31 typedef llvm::DenseMap<const ResolveInfo*, Relocation*> SymRelMapType;
44 Relocation* getEntry(const ResolveInfo& pSymbol,
  /packages/providers/ApplicationsProvider/tests/src/com/android/providers/applications/
MockPackageManager.java 26 import android.content.pm.ResolveInfo;
35 private List<ResolveInfo> mPackages = new ArrayList<ResolveInfo>();
45 public List<ResolveInfo> queryIntentActivities(Intent intent, int flags) {
78 ResolveInfo packageInfo = new ResolveInfo() {
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilitySettingsTest.java 21 import android.content.pm.ResolveInfo;
38 List<ResolveInfo> resolvedActivities = packageManager.queryIntentActivities(intent,
  /frameworks/compile/mclinker/lib/Target/X86/
X86GOTPLT.h 29 typedef llvm::DenseMap<const ResolveInfo*, GOTEntry*> SymbolIndexMapType;
58 GOTEntry*& lookupGOTPLTMap(const ResolveInfo& pSymbol);
X86GOT.h 33 const mcld::ResolveInfo& pSymbol,bool& pExist);
36 const mcld::ResolveInfo& pSymbol,bool& pExist);
38 typedef llvm::DenseMap<const ResolveInfo*, GOTEntry*> SymbolIndexMapType;
52 GOTEntry* getEntry(const ResolveInfo& pSymbol, bool& pExist);
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
ResolveCache.java 28 import android.content.pm.ResolveInfo;
46 * multiple {@link ResolveInfo} are found to match. This only happens when
103 * Cached entry holding the best {@link ResolveInfo} for a specific
107 public ResolveInfo bestResolve;
136 final List<ResolveInfo> matches = mPackageManager.queryIntentActivities(intent,
140 ResolveInfo bestResolve = null;
161 * Best {@link ResolveInfo} when multiple found. Ties are broken by
169 protected ResolveInfo getBestResolve(Intent intent, List<ResolveInfo> matches) {
171 final ResolveInfo foundResolve = mPackageManager.resolveActivity(intent
    [all...]

Completed in 402 milliseconds

1 2 3 4 5 6 7 8 9