Home
last modified time | relevance | path

Searched refs:MethodAPI (Results 1 – 9 of 9) sorted by relevance

/external/jdiff/src/jdiff/
DMethodAPI.java16 class MethodAPI implements Comparable { class
55 public MethodAPI(String name, String returnType, boolean isAbstract, in MethodAPI() method in MethodAPI
68 public MethodAPI(MethodAPI m) { in MethodAPI() method in MethodAPI
87 MethodAPI oMethod = (MethodAPI)o; in compareTo()
125 if (name_.compareTo(((MethodAPI)o).name_) == 0) in equals()
134 if (getSignature().compareTo(((MethodAPI)o).getSignature()) == 0) in equalSignatures()
DMergeChanges.java54 MethodAPI[] methodArr = new MethodAPI[classDiff.methodsRemoved.size()]; in mergeRemoveAdd()
55 methodArr = (MethodAPI[])classDiff.methodsRemoved.toArray(methodArr); in mergeRemoveAdd()
57 MethodAPI removedMethod = methodArr[methodIdx]; in mergeRemoveAdd()
121 public static void mergeRemoveAddMethod(MethodAPI removedMethod, in mergeRemoveAddMethod()
131 …public static void mergeSingleMethods(MethodAPI removedMethod, ClassDiff classDiff, PackageDiff pk… in mergeSingleMethods()
141 MethodAPI addedMethod = (MethodAPI)(classDiff.methodsAdded.get(startAdded)); in mergeSingleMethods()
187 …public static void mergeMultipleMethods(MethodAPI removedMethod, ClassDiff classDiff, PackageDiff … in mergeMultipleMethods()
211 MethodAPI addedMethod2 = (MethodAPI)(classDiff.methodsAdded.get(i)); in mergeMultipleMethods()
220 MethodAPI addedMethod = (MethodAPI)(classDiff.methodsAdded.get(addedIdx)); in mergeMultipleMethods()
264 MethodAPI oldMethod, in diffMethods()
[all …]
DAPIComparator.java463 MethodAPI oldMethod = (MethodAPI)(iter.next()); in compareAllMethods()
465 MethodAPI[] methodArr = new MethodAPI[newClass.methods_.size()]; in compareAllMethods()
466 methodArr = (MethodAPI[])newClass.methods_.toArray(methodArr); in compareAllMethods()
468 MethodAPI newMethod = methodArr[methodIdx]; in compareAllMethods()
494 MethodAPI newMethod = (MethodAPI)(newClass.methods_.get(startNew)); in compareAllMethods()
520 MethodAPI newMethod = (MethodAPI)(iter.next()); in compareAllMethods()
525 MethodAPI[] methodArr = new MethodAPI[oldClass.methods_.size()]; in compareAllMethods()
526 methodArr = (MethodAPI[])oldClass.methods_.toArray(methodArr); in compareAllMethods()
528 MethodAPI oldMethod = methodArr[methodIdx]; in compareAllMethods()
563 public boolean compareMethods(MethodAPI oldMethod, MethodAPI newMethod, ClassDiff classDiff) { in compareMethods()
[all …]
DXMLToAPI.java140 MethodAPI m = (MethodAPI)(iter.next()); in addInheritedElements()
145 MethodAPI localM = (MethodAPI)(iter2.next()); in addInheritedElements()
153 MethodAPI m2 = new MethodAPI(m); in addInheritedElements()
304 api_.currMethod_ = new MethodAPI(name, rt, isAbstract, isNative, in addMethod()
DAPI.java54 public MethodAPI currMethod_ = null;
139 dumpMethod((MethodAPI)(iter.next()), indent + indentInc); in dumpClass()
198 public static void dumpMethod(MethodAPI m, int indent) { in dumpMethod()
DClassAPI.java40 public final List<MethodAPI> methods_ = new ArrayList<>();
DConstructorAPI.java96 if (getSignature().compareTo(((MethodAPI)o).getSignature()) == 0) in equalSignatures()
DHTMLIndexes.java658 MethodAPI meth = (MethodAPI)(iterMeth.next()); in emitMethodsIndex()
663 MethodAPI meth = (MethodAPI)(iterMeth.next()); in emitMethodsIndex()
DHTMLReportGenerator.java653 MethodAPI methodAPI = (MethodAPI)(iter.next()); in reportAllMethods()
666 MethodAPI methodAPI = (MethodAPI)(iter.next()); in reportAllMethods()
1251 MethodAPI methodAPI, int linkType, in writeMethodTableEntry()