Home
last modified time | relevance | path

Searched refs:thrownExceptions (Results 1 – 21 of 21) sorted by relevance

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
DCallableDeclaration.java62 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 …]
DConstructorDeclaration.java70 …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()
DMethodDeclaration.java77 …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/
DOtherProfileGenerator.java165 .addExceptions(method.thrownExceptions()) in generateBlockingMethodOnOtherProfileClass()
191 if (method.thrownExceptions().isEmpty()) { in generateBlockingMethodOnOtherProfileClass()
207 for (TypeName exception : method.thrownExceptions()) { in generateBlockingMethodOnOtherProfileClass()
DInternalCrossProfileClassGenerator.java202 if (!method.thrownExceptions().isEmpty()) { in addBlockingCrossProfileTypeMethod()
217 if (!method.thrownExceptions().isEmpty()) { in addBlockingCrossProfileTypeMethod()
218 for (TypeName exceptionType : method.thrownExceptions()) { in addBlockingCrossProfileTypeMethod()
DInterfaceGenerator.java316 .addExceptions(method.thrownExceptions()) in generateMethodOnSingleSenderInterface()
379 .addExceptions(method.thrownExceptions()) in generateMethodOnSingleSenderCanThrowInterface()
486 if (!method.thrownExceptions().isEmpty()) { in generateBlockingMethodOnMultipleSenderInterface()
DCurrentProfileGenerator.java179 .addExceptions(method.thrownExceptions()) in generateMethodOnCurrentProfileClass()
DIfAvailableGenerator.java107 .addExceptions(method.thrownExceptions()) in generateMethodOnIfAvailableClass()
DFakeOtherGenerator.java179 .addExceptions(method.thrownExceptions()) in generateBlockingMethodOnFakeOther()
DMultipleProfilesGenerator.java148 if (!method.thrownExceptions().isEmpty()) { in generateBlockingMethodOnMultipleProfilesClass()
/external/doclava/src/com/google/doclava/
DStubs.java560 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 …]
DMethodInfo.java286 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()
DInfoBuilder.java236 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()
DConverter.java490 … 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/
DNodeWithThrownExceptions.java34 N setThrownExceptions(NodeList<ReferenceType> thrownExceptions); in setThrownExceptions() argument
/external/doclava/src/com/google/doclava/apicheck/
DXmlApiFile.java149 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/
DCrossProfileMethodInfo.java65 public Collection<TypeName> thrownExceptions() { in thrownExceptions() method in CrossProfileMethodInfo
/external/jdiff/src/jdiff/
DRootDocToXML.java500 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/
DModifierVisitor.java313 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()
DCloneVisitor.java211 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/
Ddocbase.kt313 override fun thrownExceptions(): Array<out ClassDoc> = emptyArray() // TODO in hasNonEmptyContent() method