HomeSort by relevance Sort by last modified time
    Searched defs:labelCache (Results 1 - 3 of 3) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
IconCache.java 153 HashMap<Object, CharSequence> labelCache) {
155 CacheEntry entry = cacheLocked(application.componentName, info, labelCache);
177 HashMap<Object, CharSequence> labelCache) {
183 CacheEntry entry = cacheLocked(component, resolveInfo, labelCache);
193 HashMap<Object, CharSequence> labelCache) {
201 if (labelCache != null && labelCache.containsKey(key)) {
202 entry.title = labelCache.get(key).toString();
205 if (labelCache != null) {
206 labelCache.put(key, entry.title)
    [all...]
LauncherModel.java     [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 56 private final LabelCache labelCache = new LabelCache();
227 public LabelCache getLabelCache() {
228 return labelCache;
325 for (LabelMethodItem labelMethodItem: labelCache.getLabels()) {
498 CatchMethodItem catchAllMethodItem = new CatchMethodItem(labelCache, lastCoveredAddress, null,
511 CatchMethodItem catchMethodItem = new CatchMethodItem(labelCache, lastCoveredAddress,
627 ArrayList<LabelMethodItem> sortedLabels = new ArrayList<LabelMethodItem>(labelCache.getLabels());
642 public static class LabelCache {
    [all...]

Completed in 77 milliseconds