Searched refs:thrownExceptions (Results 1 – 6 of 6) sorted by relevance
/external/doclava/src/com/google/doclava/ |
D | Stubs.java | 275 for (ClassInfo thrown : mInfo.thrownExceptions()) { in cantStripThis() 563 if (method.thrownExceptions().size() > 0) { in writeMethod() 565 for (ClassInfo thrown : method.thrownExceptions()) { in writeMethod() 575 stream.print(superCtorCall(method.containingClass(), method.thrownExceptions())); in writeMethod() 662 static String superCtorCall(ClassInfo cl, ArrayList<ClassInfo> thrownExceptions) { in superCtorCall() argument 668 if (thrownExceptions != null) { in superCtorCall() 669 for (ClassInfo thrown : thrownExceptions) { in superCtorCall() 680 if (m.thrownExceptions() != null) { in superCtorCall() 681 for (ClassInfo thrown : m.thrownExceptions()) { in superCtorCall() 914 ArrayList<ClassInfo> exceptions = mi.thrownExceptions(); in writeMethodXML() [all …]
|
D | MethodInfo.java | 257 ArrayList<ClassInfo> thrownExceptions, SourcePositionInfo position, in MethodInfo() argument 283 mThrownExceptions = thrownExceptions; in MethodInfo() 599 public ArrayList<ClassInfo> thrownExceptions() { in thrownExceptions() method in MethodInfo 775 for (ClassInfo exception : thrownExceptions()) { in isConsistent() 786 for (ClassInfo exec : mInfo.thrownExceptions()) { in isConsistent()
|
D | InfoBuilder.java | 235 if (m.thrownExceptions() != null && !m.thrownExceptions().isEmpty()) { in printClassInfo() 237 for (ClassInfo c : m.thrownExceptions()) { in printClassInfo() 238 if (c != m.thrownExceptions().get(0)) { in printClassInfo() 970 ArrayList<ClassInfo> thrownExceptions = new ArrayList<ClassInfo>(); in buildMethod() local 1049 thrownExceptions.add(Caches.obtainClass(exceptionQualifiedName.toString())); in buildMethod() 1073 null, returnType, parameters, thrownExceptions, in buildMethod()
|
D | Converter.java | 349 m.thrownExceptions()))), Converter.convertSourcePosition(m.position()), 370 Converter.convertClasses(m.thrownExceptions()))), 386 …new ArrayList<ClassInfo>(Arrays.asList(Converter.convertClasses(m.thrownExceptions()))), Converter…
|
/external/doclava/src/com/google/doclava/apicheck/ |
D | XmlApiFile.java | 146 ArrayList<ClassInfo> thrownExceptions = new ArrayList<ClassInfo>(); in startElement() local 154 flatSignature, overriddenMethod, returnType, parameters, thrownExceptions, position, in startElement()
|
/external/jdiff/src/jdiff/ |
D | RootDocToXML.java | 499 processExceptions(ct[i].thrownExceptions()); in processConstructors() 564 processExceptions(md[i].thrownExceptions()); in processMethods()
|