Searched refs:fInfo (Results 1 – 4 of 4) sorted by relevance
103 public boolean isConsistent(FieldInfo fInfo) { in isConsistent() argument104 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 …]
296 public void addField(FieldInfo fInfo) { in addField() argument297 mFields.put(fInfo.name(), fInfo); in addField() local
197 FieldInfo fInfo = new FieldInfo(attributes.getValue("name"), in startElement() local212 mCurrentClass.addField(fInfo); in startElement()
177 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()