Home
last modified time | relevance | path

Searched refs:exceptions_ (Results 1 – 6 of 6) sorted by relevance

/external/jdiff/src/jdiff/
DMethodAPI.java35 public String exceptions_ = "no exceptions"; field in MethodAPI
72 exceptions_ = m.exceptions_; in MethodAPI()
107 comp = exceptions_.compareTo(oMethod.exceptions_); in compareTo()
DConstructorAPI.java34 public String exceptions_ = "no exceptions"; field in ConstructorAPI
69 comp = exceptions_.compareTo(constructorAPI.exceptions_); in compareTo()
DXMLToAPI.java360 if (api_.currMethod_.exceptions_.compareTo("no exceptions") == 0) in addException()
361 api_.currMethod_.exceptions_ = exceptionId; in addException()
363 api_.currMethod_.exceptions_ += ", " + exceptionId; in addException()
365 if (api_.currCtor_.exceptions_.compareTo("no exceptions") == 0) in addException()
366 api_.currCtor_.exceptions_ = exceptionId; in addException()
368 api_.currCtor_.exceptions_ += ", " + exceptionId; in addException()
DMergeChanges.java93 ctorDiff.oldExceptions_ = removedCtor.exceptions_; in mergeRemoveAddCtor()
94 ctorDiff.newExceptions_ = addedCtor.exceptions_; in mergeRemoveAddCtor()
149 methodDiff.oldExceptions_ = removedMethod.exceptions_; in mergeSingleMethods()
150 methodDiff.newExceptions_ = addedMethod.exceptions_; in mergeSingleMethods()
227 methodDiff.oldExceptions_ = removedMethod.exceptions_; in mergeMultipleMethods()
228 methodDiff.newExceptions_ = addedMethod.exceptions_; in mergeMultipleMethods()
DAPIComparator.java383 memberDiff.oldExceptions_ = oldCtor.exceptions_; in compareAllCtors()
386 memberDiff.newExceptions_ = newCtor.exceptions_; in compareAllCtors()
628 methodDiff.oldExceptions_ = oldMethod.exceptions_; in compareMethods()
629 methodDiff.newExceptions_ = newMethod.exceptions_; in compareMethods()
630 if (oldMethod.exceptions_.compareTo(newMethod.exceptions_) != 0) { in compareMethods()
DAPI.java182 System.out.print("exceptions: " + c.exceptions_ + " "); in dumpCtor()
217 System.out.print("exceptions: " + m.exceptions_ + " "); in dumpMethod()