Searched refs:exceptions_ (Results 1 – 8 of 8) sorted by relevance
35 public String exceptions_ = "no exceptions"; field in MethodAPI72 exceptions_ = m.exceptions_; in MethodAPI()107 comp = exceptions_.compareTo(oMethod.exceptions_); in compareTo()
27 public String exceptions_ = "no exceptions"; field in ConstructorAPI47 comp = exceptions_.compareTo(constructorAPI.exceptions_); in compareTo()
351 if (api_.currMethod_.exceptions_.compareTo("no exceptions") == 0) in addException()352 api_.currMethod_.exceptions_ = exceptionId; in addException()354 api_.currMethod_.exceptions_ += ", " + exceptionId; in addException()356 if (api_.currCtor_.exceptions_.compareTo("no exceptions") == 0) in addException()357 api_.currCtor_.exceptions_ = exceptionId; in addException()359 api_.currCtor_.exceptions_ += ", " + exceptionId; in addException()
93 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()226 methodDiff.oldExceptions_ = removedMethod.exceptions_; in mergeMultipleMethods()227 methodDiff.newExceptions_ = addedMethod.exceptions_; in mergeMultipleMethods()
383 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()
182 System.out.print("exceptions: " + c.exceptions_ + " "); in dumpCtor()217 System.out.print("exceptions: " + m.exceptions_ + " "); in dumpMethod()
996 exceptions_.push_back(exception); in AddException()1247 for (size_t i = 0; i < exceptions_.size(); ++i) { in Contains()1248 if (exceptions_[i]->Contains(os_type, os_version, gpu_info) && in Contains()1249 !exceptions_[i]->NeedsMoreInfo(gpu_info)) in Contains()1269 for (size_t i = 0; i < exceptions_.size(); ++i) { in NeedsMoreInfo()1270 if (exceptions_[i]->NeedsMoreInfo(gpu_info)) in NeedsMoreInfo()
453 std::vector<ScopedGpuControlListEntry> exceptions_; variable