/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/ |
D | CallableDeclaration.java | 63 private NodeList<ReferenceType> thrownExceptions; field in CallableDeclaration 69 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, ReceiverPara… in CallableDeclaration() argument 70 …this(null, modifiers, annotations, typeParameters, name, parameters, thrownExceptions, receiverPar… in CallableDeclaration() 77 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, ReceiverPara… in CallableDeclaration() argument 83 setThrownExceptions(thrownExceptions); in CallableDeclaration() 153 return thrownExceptions; in getThrownExceptions() 158 public T setThrownExceptions(final NodeList<ReferenceType> thrownExceptions) { in setThrownExceptions() argument 159 assertNotNull(thrownExceptions); in setThrownExceptions() 160 if (thrownExceptions == this.thrownExceptions) { in setThrownExceptions() 163 …otifyPropertyChange(ObservableProperty.THROWN_EXCEPTIONS, this.thrownExceptions, thrownExceptions); in setThrownExceptions() [all …]
|
D | MethodDeclaration.java | 82 …final NodeList<Parameter> parameters, final NodeList<ReferenceType> thrownExceptions, final BlockS… in MethodDeclaration() argument 83 …this(null, modifiers, annotations, typeParameters, type, name, parameters, thrownExceptions, body,… in MethodDeclaration() 87 …final NodeList<Parameter> parameters, final NodeList<ReferenceType> thrownExceptions, final BlockS… in MethodDeclaration() argument 88 …this(null, modifiers, annotations, typeParameters, type, name, parameters, thrownExceptions, body,… in MethodDeclaration() 95 …final NodeList<Parameter> parameters, final NodeList<ReferenceType> thrownExceptions, final BlockS… in MethodDeclaration() argument 96 …this(null, modifiers, annotations, typeParameters, type, name, parameters, thrownExceptions, body,… in MethodDeclaration() 104 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt bo… in MethodDeclaration() argument 105 …kenRange, modifiers, annotations, typeParameters, name, parameters, thrownExceptions, receiverPara… in MethodDeclaration() 182 public MethodDeclaration setThrownExceptions(final NodeList<ReferenceType> thrownExceptions) { in setThrownExceptions() argument 183 return super.setThrownExceptions(thrownExceptions); in setThrownExceptions()
|
D | ConstructorDeclaration.java | 74 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt bo… in ConstructorDeclaration() argument 75 …this(null, modifiers, annotations, typeParameters, name, parameters, thrownExceptions, body, null); in ConstructorDeclaration() 79 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt bo… in ConstructorDeclaration() argument 80 …this(null, modifiers, annotations, typeParameters, name, parameters, thrownExceptions, body, recei… in ConstructorDeclaration() 87 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt bo… in ConstructorDeclaration() argument 88 …kenRange, modifiers, annotations, typeParameters, name, parameters, thrownExceptions, receiverPara… in ConstructorDeclaration() 146 …public ConstructorDeclaration setThrownExceptions(final NodeList<ReferenceType> thrownExceptions) { in setThrownExceptions() argument 147 return super.setThrownExceptions(thrownExceptions); in setThrownExceptions()
|
/external/doclava/src/com/google/doclava/ |
D | Stubs.java | 560 for (ClassInfo thrown : mInfo.thrownExceptions()) { in cantStripThis() 917 if (method.thrownExceptions().size() > 0) { in writeMethod() 919 for (ClassInfo thrown : method.thrownExceptions()) { in writeMethod() 929 stream.print(superCtorCall(method.containingClass(), method.thrownExceptions())); in writeMethod() 986 static String superCtorCall(ClassInfo cl, ArrayList<ClassInfo> thrownExceptions) { in superCtorCall() argument 992 if (thrownExceptions != null) { in superCtorCall() 993 for (ClassInfo thrown : thrownExceptions) { in superCtorCall() 1004 if (m.thrownExceptions() != null) { in superCtorCall() 1005 for (ClassInfo thrown : m.thrownExceptions()) { in superCtorCall() 1006 if (thrownExceptions != null && !exceptionNames.contains(thrown.name())) { in superCtorCall() [all …]
|
D | MethodInfo.java | 286 ArrayList<ParameterInfo> parameters, ArrayList<ClassInfo> thrownExceptions, in MethodInfo() argument 306 mThrownExceptions = thrownExceptions; in MethodInfo() 692 public ArrayList<ClassInfo> thrownExceptions() { in thrownExceptions() method in MethodInfo 930 for (ClassInfo exception : thrownExceptions()) { in isConsistent() 942 for (ClassInfo exec : mInfo.thrownExceptions()) { in isConsistent()
|
D | InfoBuilder.java | 236 if (m.thrownExceptions() != null && !m.thrownExceptions().isEmpty()) { in printClassInfo() 238 for (ClassInfo c : m.thrownExceptions()) { in printClassInfo() 239 if (c != m.thrownExceptions().get(0)) { in printClassInfo() 971 ArrayList<ClassInfo> thrownExceptions = new ArrayList<ClassInfo>(); in buildMethod() local 1050 thrownExceptions.add(Caches.obtainClass(exceptionQualifiedName.toString())); in buildMethod() 1074 null, returnType, parameters, thrownExceptions, in buildMethod()
|
D | Converter.java | 469 m.thrownExceptions()))), Converter.convertSourcePosition(m.position()), 495 Converter.convertClasses(m.thrownExceptions()))), 525 …new ArrayList<ClassInfo>(Arrays.asList(Converter.convertClasses(m.thrownExceptions()))), Converter…
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/ |
D | NodeWithThrownExceptions.java | 34 N setThrownExceptions(NodeList<ReferenceType> thrownExceptions); in setThrownExceptions() argument
|
/external/doclava/src/com/google/doclava/apicheck/ |
D | XmlApiFile.java | 149 ArrayList<ClassInfo> thrownExceptions = new ArrayList<ClassInfo>(); in startElement() local 158 thrownExceptions, position, annotations); in startElement()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/ |
D | CloneVisitor.java | 189 NodeList<ReferenceType> thrownExceptions = cloneList(n.getThrownExceptions(), arg); in visit() local 193 …), n.getModifiers(), annotations, typeParameters, name, parameters, thrownExceptions, body, receiv… in visit() 206 NodeList<ReferenceType> thrownExceptions = cloneList(n.getThrownExceptions(), arg); in visit() local 210 …etModifiers(), annotations, typeParameters, type, name, parameters, thrownExceptions, body, receiv… in visit()
|
D | ModifierVisitor.java | 325 NodeList<ReferenceType> thrownExceptions = modifyList(n.getThrownExceptions(), arg); in visit() local 335 n.setThrownExceptions(thrownExceptions); in visit() 656 NodeList<ReferenceType> thrownExceptions = modifyList(n.getThrownExceptions(), arg); in visit() local 667 n.setThrownExceptions(thrownExceptions); in visit()
|
/external/jdiff/src/jdiff/ |
D | RootDocToXML.java | 500 processExceptions(ct[i].thrownExceptions()); in processConstructors() 565 processExceptions(md[i].thrownExceptions()); in processMethods()
|