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

  /sdk/apigenerator/src/com/android/apigenerator/
ApiClass.java 45 private final Map<String, Integer> mMethods = new HashMap<String, Integer>();
64 Integer i = mMethods.get(name);
66 mMethods.put(name, Integer.valueOf(since));
98 print(mMethods, "method", stream);
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ApiClass.java 45 private final Map<String, Integer> mMethods = new HashMap<String, Integer>();
145 Integer i = mMethods.get(methodSignature);
179 // the lookup on mMethods to associate the ByteBuffer array method to be
186 Integer i = mMethods.get(name);
188 mMethods.put(name, Integer.valueOf(since));
232 for (String method : mMethods.keySet()) {
  /external/doclava/src/com/google/doclava/
ClassInfo.java 136 mMethods = null;
405 if (mMethods == null) {
428 mMethods = new ArrayList<MethodInfo>(all.values());
429 Collections.sort(mMethods, MethodInfo.comparator);
431 return mMethods;
    [all...]
Converter.java 324 return (MethodInfo) mMethods.obtain(o);
328 return (MethodInfo) mMethods.obtain(o);
331 private static Cache mMethods = new Cache() {

Completed in 213 milliseconds