Home
last modified time | relevance | path

Searched refs:mMethodList (Results 1 – 2 of 2) sorted by relevance

/development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/util/
DStatusTracker.java23 private List<String> mMethodList; field in StatusTracker
33 mMethodList = new ArrayList<String>(); in StatusTracker()
37 return mMethodList; in getMethodList()
41 mMethodList.clear(); in clear()
52 mMethodList.add(activityName + "." + status + "()"); in setStatus()
/development/tools/apkcheck/src/com/android/apkcheck/
DClassInfo.java31 private HashMap<String,MethodInfo> mMethodList; field in ClassInfo
62 mMethodList = new HashMap<String,MethodInfo>(); in ClassInfo()
154 mMethodList.put(methInfo.getNameAndDescriptor(), methInfo); in addMethod()
161 return mMethodList.values().iterator(); in getMethodIterator()
170 return mMethodList.get(nameAndDescr); in getMethod()
202 return mMethodList.size() == 0 && mFieldList.size() == 0; in hasNoFieldMethod()
311 keyIter = mMethodList.keySet().iterator(); in normalizeTypes()
314 MethodInfo methodInfo = mMethodList.get(key); in normalizeTypes()
318 mMethodList = tmpMethodList; in normalizeTypes()
334 mMethodList.putAll(otherClass.mMethodList); in mergeFrom()