/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/ |
D | CallableDeclaration.java | 62 private NodeList<ReferenceType> thrownExceptions; field in CallableDeclaration 68 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, ReceiverPara… in CallableDeclaration() argument 69 …this(null, modifiers, annotations, typeParameters, name, parameters, thrownExceptions, receiverPar… in CallableDeclaration() 76 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, ReceiverPara… in CallableDeclaration() argument 82 setThrownExceptions(thrownExceptions); in CallableDeclaration() 155 return thrownExceptions; in getThrownExceptions() 160 public T setThrownExceptions(final NodeList<ReferenceType> thrownExceptions) { in setThrownExceptions() argument 161 assertNotNull(thrownExceptions); in setThrownExceptions() 162 if (thrownExceptions == this.thrownExceptions) { in setThrownExceptions() 165 …otifyPropertyChange(ObservableProperty.THROWN_EXCEPTIONS, this.thrownExceptions, thrownExceptions); in setThrownExceptions() [all …]
|
D | ConstructorDeclaration.java | 70 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt bo… in ConstructorDeclaration() argument 71 …this(null, modifiers, annotations, typeParameters, name, parameters, thrownExceptions, body, null); in ConstructorDeclaration() 75 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt bo… in ConstructorDeclaration() argument 76 …this(null, modifiers, annotations, typeParameters, name, parameters, thrownExceptions, body, recei… in ConstructorDeclaration() 83 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt bo… in ConstructorDeclaration() argument 84 …kenRange, modifiers, annotations, typeParameters, name, parameters, thrownExceptions, receiverPara… in ConstructorDeclaration() 142 …public ConstructorDeclaration setThrownExceptions(final NodeList<ReferenceType> thrownExceptions) { in setThrownExceptions() argument 143 return super.setThrownExceptions(thrownExceptions); in setThrownExceptions()
|
D | MethodDeclaration.java | 77 …final NodeList<Parameter> parameters, final NodeList<ReferenceType> thrownExceptions, final BlockS… in MethodDeclaration() argument 78 …this(null, modifiers, annotations, typeParameters, type, name, parameters, thrownExceptions, body,… in MethodDeclaration() 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() 90 …eName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt bo… in MethodDeclaration() argument 91 …kenRange, modifiers, annotations, typeParameters, name, parameters, thrownExceptions, receiverPara… in MethodDeclaration() 168 public MethodDeclaration setThrownExceptions(final NodeList<ReferenceType> thrownExceptions) { in setThrownExceptions() argument 169 return super.setThrownExceptions(thrownExceptions); in setThrownExceptions()
|
/external/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/ |
D | OtherProfileGenerator.java | 165 .addExceptions(method.thrownExceptions()) in generateBlockingMethodOnOtherProfileClass() 191 if (method.thrownExceptions().isEmpty()) { in generateBlockingMethodOnOtherProfileClass() 207 for (TypeName exception : method.thrownExceptions()) { in generateBlockingMethodOnOtherProfileClass()
|
D | InternalCrossProfileClassGenerator.java | 202 if (!method.thrownExceptions().isEmpty()) { in addBlockingCrossProfileTypeMethod() 217 if (!method.thrownExceptions().isEmpty()) { in addBlockingCrossProfileTypeMethod() 218 for (TypeName exceptionType : method.thrownExceptions()) { in addBlockingCrossProfileTypeMethod()
|
D | InterfaceGenerator.java | 316 .addExceptions(method.thrownExceptions()) in generateMethodOnSingleSenderInterface() 379 .addExceptions(method.thrownExceptions()) in generateMethodOnSingleSenderCanThrowInterface() 486 if (!method.thrownExceptions().isEmpty()) { in generateBlockingMethodOnMultipleSenderInterface()
|
D | CurrentProfileGenerator.java | 179 .addExceptions(method.thrownExceptions()) in generateMethodOnCurrentProfileClass()
|
D | IfAvailableGenerator.java | 107 .addExceptions(method.thrownExceptions()) in generateMethodOnIfAvailableClass()
|
D | FakeOtherGenerator.java | 179 .addExceptions(method.thrownExceptions()) in generateBlockingMethodOnFakeOther()
|
D | MultipleProfilesGenerator.java | 148 if (!method.thrownExceptions().isEmpty()) { in generateBlockingMethodOnMultipleProfilesClass()
|
/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 | 490 … m.thrownExceptions()))), Converter.convertSourcePosition(getPositionSafe(m)), 516 Converter.convertClasses(m.thrownExceptions()))), 532 …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/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/containers/ |
D | CrossProfileMethodInfo.java | 65 public Collection<TypeName> thrownExceptions() { in thrownExceptions() method in CrossProfileMethodInfo
|
/external/jdiff/src/jdiff/ |
D | RootDocToXML.java | 500 processExceptions(ct[i].thrownExceptions()); in processConstructors() 565 processExceptions(md[i].thrownExceptions()); in processMethods()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/ |
D | ModifierVisitor.java | 313 NodeList<ReferenceType> thrownExceptions = modifyList(n.getThrownExceptions(), arg); in visit() local 324 n.setThrownExceptions(thrownExceptions); in visit() 626 NodeList<ReferenceType> thrownExceptions = modifyList(n.getThrownExceptions(), arg); in visit() local 638 n.setThrownExceptions(thrownExceptions); in visit()
|
D | CloneVisitor.java | 211 NodeList<ReferenceType> thrownExceptions = cloneList(n.getThrownExceptions(), arg); in visit() local 215 …se(null), modifiers, annotations, typeParameters, name, parameters, thrownExceptions, body, receiv… in visit() 230 NodeList<ReferenceType> thrownExceptions = cloneList(n.getThrownExceptions(), arg); in visit() local 234 …l), modifiers, annotations, typeParameters, type, name, parameters, thrownExceptions, body, receiv… in visit()
|
/external/dokka/core/src/main/kotlin/javadoc/ |
D | docbase.kt | 313 override fun thrownExceptions(): Array<out ClassDoc> = emptyArray() // TODO in hasNonEmptyContent() method
|