Home
last modified time | relevance | path

Searched refs:fInfo (Results 1 – 4 of 4) sorted by relevance

/build/tools/apicheck/src/com/android/apicheck/
DFieldInfo.java103 public boolean isConsistent(FieldInfo fInfo) { in isConsistent() argument
104 fInfo.mExistsInBoth = true; in isConsistent()
107 if (!mType.equals(fInfo.mType)) { in isConsistent()
108 Errors.error(Errors.CHANGED_TYPE, fInfo.position(), in isConsistent()
109 "Field " + fInfo.qualifiedName() + " has changed type"); in isConsistent()
113 if (!this.valueEquals(fInfo)) { in isConsistent()
114 Errors.error(Errors.CHANGED_VALUE, fInfo.position(), in isConsistent()
115 "Field " + fInfo.qualifiedName() + " has changed value from " in isConsistent()
116 + mValue + " to " + fInfo.mValue); in isConsistent()
120 if (!mScope.equals(fInfo.mScope)) { in isConsistent()
[all …]
DClassInfo.java296 public void addField(FieldInfo fInfo) { in addField() argument
297 mFields.put(fInfo.name(), fInfo); in addField() local
DApiCheck.java197 FieldInfo fInfo = new FieldInfo(attributes.getValue("name"), in startElement() local
212 mCurrentClass.addField(fInfo); in startElement()
/build/tools/droiddoc/src/
DStubs.java177 for (FieldInfo fInfo : cl.allSelfFields()){ in cantStripThis()
178 if (fInfo.type() != null){ in cantStripThis()
179 if (fInfo.type().asClassInfo() != null){ in cantStripThis()
180 cantStripThis(fInfo.type().asClassInfo(), notStrippable, in cantStripThis()
183 if (fInfo.type().typeArguments() != null){ in cantStripThis()
184 for (TypeInfo tTypeInfo : fInfo.type().typeArguments()){ in cantStripThis()