HomeSort by relevance Sort by last modified time
    Searched refs:mMethodList (Results 1 - 5 of 5) sorted by null

  /development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/util/
StatusTracker.java 23 private List<String> mMethodList;
33 mMethodList = new ArrayList<String>();
37 return mMethodList;
41 mMethodList.clear();
52 mMethodList.add(activityName + "." + status + "()");
  /development/tools/apkcheck/src/com/android/apkcheck/
ClassInfo.java 31 private HashMap<String,MethodInfo> mMethodList;
62 mMethodList = new HashMap<String,MethodInfo>();
154 mMethodList.put(methInfo.getNameAndDescriptor(), methInfo);
161 return mMethodList.values().iterator();
170 return mMethodList.get(nameAndDescr);
202 return mMethodList.size() == 0 && mFieldList.size() == 0;
311 keyIter = mMethodList.keySet().iterator();
314 MethodInfo methodInfo = mMethodList.get(key);
318 mMethodList = tmpMethodList;
331 mMethodList.size() + "/" + otherClass.mMethodList.size());*
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodSettingValuesWrapper.java 47 private final ArrayList<InputMethodInfo> mMethodList = new ArrayList<>();
76 mMethodMap, mMethodList, getDefaultCurrentUserId());
83 mMethodList.clear();
86 mMethodList.addAll(imms);
115 return mMethodList;
  /frameworks/base/services/core/java/com/android/server/
InputMethodManagerService.java 185 final ArrayList<InputMethodInfo> mMethodList = new ArrayList<InputMethodInfo>();
493 final int N = mMethodList.size();
496 InputMethodInfo imi = mMethodList.get(i);
523 final int N = mMethodList.size();
526 InputMethodInfo imi = mMethodList.get(i);
546 mMethodList, mMethodMap, false /* resetDefaultEnabledIme */);
709 mRes, context.getContentResolver(), mMethodMap, mMethodList, userId);
725 buildInputMethodListLocked(mMethodList, mMethodMap,
765 for (InputMethodInfo imi : mMethodList) {
774 if (defIm == null && mMethodList.size() > 0)
    [all...]
  /frameworks/base/core/java/com/android/internal/inputmethod/
InputMethodUtils.java 677 private final ArrayList<InputMethodInfo> mMethodList;
703 mMethodList = methodList;
    [all...]

Completed in 119 milliseconds