Home
last modified time | relevance | path

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

/build/tools/apicheck/src/com/android/apicheck/
DClassInfo.java33 private HashMap<String, ConstructorInfo> mConstructors; field in ClassInfo
56 mConstructors = new HashMap<String, ConstructorInfo>(); in ClassInfo()
191 for (ConstructorInfo mInfo : mConstructors.values()) { in isConsistent()
192 if (cl.mConstructors.containsKey(mInfo.getHashableName())) { in isConsistent()
193 if (!mInfo.isConsistent(cl.mConstructors.get(mInfo.getHashableName()))) { in isConsistent()
202 for (ConstructorInfo mInfo : cl.mConstructors.values()) { in isConsistent()
292 mConstructors.put(cInfo.getHashableName(), cInfo); in addConstructor()
310 return mConstructors; in allConstructors()
/build/tools/droiddoc/src/
DClassInfo.java97 mConstructors = null; in init()
326 if (mConstructors == null) { in constructors()
335 mConstructors = ctors.toArray(new MethodInfo[ctors.size()]); in constructors()
336 Arrays.sort(mConstructors, MethodInfo.comparator); in constructors()
338 return mConstructors; in constructors()
1450 private MethodInfo[] mConstructors; field in ClassInfo