Home
last modified time | relevance | path

Searched refs:inheritedFrom_ (Results 1 – 8 of 8) sorted by relevance

/external/jdiff/src/jdiff/
DAPIComparator.java498 if (oldMethod.inheritedFrom_ == null || in compareAllMethods()
499 newMethod.inheritedFrom_ == null) { in compareAllMethods()
505 } else if (oldMethod.inheritedFrom_ == null) { in compareAllMethods()
522 if (newMethod.inheritedFrom_ != null) in compareAllMethods()
581 int inh = changedInheritance(oldMethod.inheritedFrom_, newMethod.inheritedFrom_); in compareMethods()
586 methodDiff.inheritedFrom_ = newMethod.inheritedFrom_; in compareMethods()
592 methodDiff.inheritedFrom_ = newMethod.inheritedFrom_; in compareMethods()
703 if (oldField.inheritedFrom_ == null || in compareAllFields()
704 newField.inheritedFrom_ == null) { in compareAllFields()
710 … int inh = changedInheritance(oldField.inheritedFrom_, newField.inheritedFrom_); in compareAllFields()
[all …]
DFieldAPI.java28 public String inheritedFrom_ = null; field in FieldAPI
61 inheritedFrom_ = f.inheritedFrom_; in FieldAPI()
78 if (APIComparator.changedInheritance(inheritedFrom_, oFieldAPI.inheritedFrom_) != 0) in compareTo()
DMethodAPI.java29 public String inheritedFrom_ = null; field in MethodAPI
71 inheritedFrom_ = m.inheritedFrom_; in MethodAPI()
94 if (APIComparator.changedInheritance(inheritedFrom_, oMethod.inheritedFrom_) != 0) in compareTo()
DAPI.java199 if (m.inheritedFrom_ != null) in dumpMethod()
203 if (m.inheritedFrom_ != null) in dumpMethod()
204 System.out.println(", inherited from: " + m.inheritedFrom_); in dumpMethod()
240 if (f.inheritedFrom_ != null) in dumpField()
244 if (f.inheritedFrom_ != null) in dumpField()
245 System.out.println(", inherited from: " + f.inheritedFrom_); in dumpField()
DMergeChanges.java59 if (removedMethod.inheritedFrom_ == null) in mergeRemoveAdd()
68 if (removedField.inheritedFrom_ == null) in mergeRemoveAdd()
142 if (addedMethod.inheritedFrom_ == null) { in mergeSingleMethods()
212 if (addedMethod2.inheritedFrom_ == null && in mergeMultipleMethods()
311 if (addedField.inheritedFrom_ == null) { in mergeRemoveAddField()
DXMLToAPI.java150 if (!overridden && m.inheritedFrom_ == null && in addInheritedElements()
154 m2.inheritedFrom_ = fqParentName; in addInheritedElements()
164 f.inheritedFrom_ == null && in addInheritedElements()
168 f2.inheritedFrom_ = fqParentName; in addInheritedElements()
DMemberDiff.java57 public String inheritedFrom_ = null; field in MemberDiff
DHTMLReportGenerator.java1348 memberRef = memberDiff.inheritedFrom_; in writeMethodChangedTableEntry()
1399 commentID = memberDiff.inheritedFrom_ + "." + memberName + in writeMethodChangedTableEntry()
1501 memberRef = memberDiff.inheritedFrom_; in writeFieldChangedTableEntry()
1545 commentID = memberDiff.inheritedFrom_ + "." + memberName; in writeFieldChangedTableEntry()