OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ResolveCache
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
ResolveCache.java
42
public class
ResolveCache
{
66
private static
ResolveCache
sInstance;
69
* Returns an instance of the
ResolveCache
. Only one internal instance is kept, so
72
public synchronized static
ResolveCache
getInstance(Context context) {
75
sInstance = new
ResolveCache
(applicationContext);
114
private
ResolveCache
(Context context) {
QuickContactActivity.java
371
final
ResolveCache
cache =
ResolveCache
.getInstance(this);
537
* @param
resolveCache
cache of applications that can handle actions
541
private boolean considerAdd(Action action,
ResolveCache
resolveCache
, boolean front) {
542
if (
resolveCache
.hasResolve(action)) {
571
private View inflateAction(String mimeType,
ResolveCache
resolveCache
,
581
final CharSequence descrip =
resolveCache
.getDescription(firstInfo, name);
582
final Drawable icon =
resolveCache
.getIcon(firstInfo)
[
all
...]
Completed in 23 milliseconds