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

1 2 3 4 5 6 7 8 91011>>

  /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...]
NamePool.h 20 #include <mcld/LD/ResolveInfo.h>
41 typedef HashTable<ResolveInfo, hash::StringHash<hash::ELF> > Table;
52 ResolveInfo* createSymbol(const llvm::StringRef& pName,
54 ResolveInfo::Type pType,
55 ResolveInfo::Desc pDesc,
56 ResolveInfo::Binding pBinding,
57 ResolveInfo::SizeType pSize,
58 ResolveInfo::Visibility pVisibility = ResolveInfo::Default);
61 /// @param pOldInfo - if pOldInfo is not NULL, the old ResolveInfo bein
    [all...]
Resolver.h 20 class ResolveInfo;
48 ResolveInfo* info;
60 virtual bool resolve(ResolveInfo & __restrict__ pOld,
61 const ResolveInfo & __restrict__ pNew,
65 /// @return the pointer to resolved ResolveInfo
69 ResolveInfo& __restrict__ pOld,
70 const ResolveInfo& __restrict__ pNew,
ResolveInfo.h 1 //===- ResolveInfo.h ------------------------------------------------------===//
22 /** \class ResolveInfo
23 * \brief ResolveInfo records the information about how to resolve a symbol.
37 class ResolveInfo
97 static ResolveInfo* Create(const key_type& pKey);
99 static void Destroy(ResolveInfo*& pInfo);
101 static ResolveInfo* Null();
131 void override(const ResolveInfo& pForm);
133 void overrideAttributes(const ResolveInfo& pFrom);
135 void overrideVisibility(const ResolveInfo& pFrom)
    [all...]
LDSymbol.h 19 #include <mcld/LD/ResolveInfo.h>
36 typedef ResolveInfo::SizeType SizeType;
43 static LDSymbol* Create(ResolveInfo& pResolveInfo);
109 ResolveInfo* resolveInfo()
112 const ResolveInfo* resolveInfo() const
128 void setResolveInfo(const ResolveInfo& pInfo);
140 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>
18 /// g_NullResolveInfo - a pointer to Null ResolveInfo.
19 static ResolveInfo* g_NullResolveInfo = NULL;
22 // ResolveInfo
24 ResolveInfo::ResolveInfo()
29 ResolveInfo::~ResolveInfo()
33 void ResolveInfo::override(const ResolveInfo& pFrom
    [all...]
NamePool.cpp 28 ResolveInfo::Destroy(*info);
33 ResolveInfo* NamePool::createSymbol(const llvm::StringRef& pName,
35 ResolveInfo::Type pType,
36 ResolveInfo::Desc pDesc,
37 ResolveInfo::Binding pBinding,
38 ResolveInfo::SizeType pSize,
39 ResolveInfo::Visibility pVisibility)
41 ResolveInfo** result = m_FreeInfoSet.allocate();
42 (*result) = ResolveInfo::Create(pName);
54 /// @return the pointer of resolved ResolveInfo
    [all...]
ELFReaderIf.cpp 34 ResolveInfo::Type ELFReaderIF::getSymType(uint8_t pInfo, uint16_t pShndx) const
36 ResolveInfo::Type result = static_cast<ResolveInfo::Type>(pInfo & 0xF);
37 if (llvm::ELF::SHN_ABS == pShndx && ResolveInfo::Section == result) {
42 return ResolveInfo::Object;
49 ResolveInfo::Desc ELFReaderIF::getSymDesc(uint16_t pShndx, const Input& pInput) const
52 return ResolveInfo::Undefined;
60 return ResolveInfo::Undefined;
61 return ResolveInfo::Define;
65 return ResolveInfo::Define
    [all...]
ELFBinaryReader.cpp 81 ResolveInfo::Section,
82 ResolveInfo::Define,
83 ResolveInfo::Local,
100 ResolveInfo::NoType,
101 ResolveInfo::Define,
102 ResolveInfo::Global,
110 ResolveInfo::NoType,
111 ResolveInfo::Define,
112 ResolveInfo::Global,
120 ResolveInfo::NoType
    [all...]
Relocator.cpp 12 #include <mcld/LD/ResolveInfo.h>
30 if (pReloc.symInfo()->type() == ResolveInfo::Section) {
42 ResolveInfo* sym_info =
43 pModule.getSectionSymbolSet().get(out_sect)->resolveInfo();
44 // set relocation target symbol to the output section symbol's resolveInfo
  /frameworks/compile/mclinker/unittests/
SymbolCategoryTest.cpp 10 #include <mcld/LD/ResolveInfo.h>
48 ResolveInfo* a = ResolveInfo::Create("a");
49 ResolveInfo* b = ResolveInfo::Create("b");
50 ResolveInfo* c = ResolveInfo::Create("c");
51 ResolveInfo* d = ResolveInfo::Create("d");
52 ResolveInfo* e = ResolveInfo::Create("e")
    [all...]
StaticResolverTest.cpp 12 #include <mcld/LD/ResolveInfo.h>
53 ResolveInfo* old_sym = ResolveInfo::Create("abc");
54 ResolveInfo* new_sym = ResolveInfo::Create("abc");
55 new_sym->setDesc(ResolveInfo::Define);
56 old_sym->setDesc(ResolveInfo::Define);
57 ASSERT_TRUE( mcld::ResolveInfo::Define == new_sym->desc());
58 ASSERT_TRUE( mcld::ResolveInfo::Define == old_sym->desc());
59 ASSERT_TRUE( mcld::ResolveInfo::define_flag == new_sym->info())
    [all...]
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 389 /// function, no-type and so on. @see ResolveInfo
406 ResolveInfo::Type pType,
407 ResolveInfo::Desc pDesc,
408 ResolveInfo::Binding pBind,
409 ResolveInfo::SizeType pSize,
412 ResolveInfo::Visibility pVis = ResolveInfo::Default);
451 ResolveInfo::Type pType,
452 ResolveInfo::Desc pDesc,
453 ResolveInfo::Binding pBinding
    [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...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOT.h 57 bool reserveLocalEntry(ResolveInfo& pInfo);
58 bool reserveGlobalEntry(ResolveInfo& pInfo);
72 void recordEntry(const ResolveInfo* pInfo, MipsGOTEntry* pEntry);
73 MipsGOTEntry* lookupEntry(const ResolveInfo* pInfo);
75 void setLocal(const ResolveInfo* pInfo) {
79 void setGlobal(const ResolveInfo* pInfo) {
83 bool isLocal(const ResolveInfo* pInfo) {
87 bool isGlobal(const ResolveInfo* pInfo) {
131 typedef llvm::DenseSet<const ResolveInfo*> SymbolSetType;
132 typedef llvm::DenseMap<const ResolveInfo*, bool> SymbolUniqueMapType
    [all...]
MipsLDBackend.cpp 76 ResolveInfo::Object,
77 ResolveInfo::Define,
78 ResolveInfo::Local,
82 ResolveInfo::Hidden);
86 ResolveInfo::Section,
87 ResolveInfo::Define,
88 ResolveInfo::Absolute,
92 ResolveInfo::Default);
95 m_pGpDispSymbol->resolveInfo()->setReserved(MipsRelocator::ReserveGpDisp);
183 return ResolveInfo::Section != pSym.type() |
    [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/support/v4/jellybean-mr2/android/support/v4/accessibilityservice/
AccessibilityServiceInfoCompatJellyBeanMr2.java 20 import android.content.pm.ResolveInfo;
  /frameworks/compile/mclinker/include/mcld/Target/
SymbolEntryMap.h 19 class ResolveInfo;
22 * \brief SymbolEntryMap is a <const ResolveInfo*, ENTRY*> map.
32 const ResolveInfo* symbol;
43 const EntryType* lookUp(const ResolveInfo& pSymbol) const;
44 EntryType* lookUp(const ResolveInfo& pSymbol);
46 void record(const ResolveInfo& pSymbol, EntryType& pEntry);
65 SymbolEntryMap<EntryType>::lookUp(const ResolveInfo& pSymbol) const
79 SymbolEntryMap<EntryType>::lookUp(const ResolveInfo& pSymbol)
93 SymbolEntryMap<EntryType>::record(const ResolveInfo& pSymbol, EntryType& pEntry)
  /frameworks/support/v4/ics/android/support/v4/accessibilityservice/
AccessibilityServiceInfoCompatIcs.java 21 import android.content.pm.ResolveInfo;
40 public static ResolveInfo getResolveInfo(AccessibilityServiceInfo info) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowResolveInfo.java 5 import android.content.pm.ResolveInfo;
11 @Implements( ResolveInfo.class )
25 * Non-Android accessor used for creating ResolveInfo objects
30 public static ResolveInfo newResolveInfo( String displayName, String packageName ) {
35 * Non-Android accessor used for creating ResolveInfo objects
40 public static ResolveInfo newResolveInfo( String displayName, String packageName, String activityName ) {
42 ResolveInfo resInfo = new ResolveInfo();
  /development/apps/Development/src/com/android/development/
Development.java 24 import android.content.pm.ResolveInfo;
36 protected void onSortResultList(List<ResolveInfo> results) {
39 List<ResolveInfo> topItems = getPackageManager().queryIntentActivities(
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilitySettingsTest.java 21 import android.content.pm.ResolveInfo;
38 List<ResolveInfo> resolvedActivities = packageManager.queryIntentActivities(intent,
  /frameworks/base/services/java/com/android/server/search/
Searchables.java 29 import android.content.pm.ResolveInfo;
66 private List<ResolveInfo> mGlobalSearchActivities;
213 List<ResolveInfo> searchList;
220 List<ResolveInfo> webSearchInfoList;
231 ResolveInfo info = (ii < search_count)
250 List<ResolveInfo> newGlobalSearchActivities = findGlobalSearchActivities();
281 private List<ResolveInfo> findGlobalSearchActivities() {
285 List<ResolveInfo> activities =
298 private ComponentName findGlobalSearchActivity(List<ResolveInfo> installed) {
322 List<ResolveInfo> activities = queryIntentActivities(intent
    [all...]

Completed in 545 milliseconds

1 2 3 4 5 6 7 8 91011>>