Lines Matching refs:mApiCheckConstructors
295 return mIsFinal || mApiCheckConstructors.isEmpty(); in isEffectivelyFinal()
1918 private HashMap<String, MethodInfo> mApiCheckConstructors = new HashMap<String, MethodInfo>(); field in ClassInfo
1977 mApiCheckConstructors.put(ctor.getHashableName(), ctor); in addConstructor()
2003 return mApiCheckConstructors; in allConstructorsMap()
2119 for (MethodInfo mInfo : mApiCheckConstructors.values()) { in isConsistent()
2120 if (cl.mApiCheckConstructors.containsKey(mInfo.getHashableName())) { in isConsistent()
2121 if (!mInfo.isConsistent(cl.mApiCheckConstructors.get(mInfo.getHashableName()))) { in isConsistent()
2130 for (MethodInfo mInfo : cl.mApiCheckConstructors.values()) { in isConsistent()
2131 if (!mApiCheckConstructors.containsKey(mInfo.getHashableName())) { in isConsistent()
2193 if (mApiCheckConstructors.isEmpty()) { in isConsistent()
2271 for (MethodInfo ctor : mApiCheckConstructors.values()) { in hasConstructor()