Home
last modified time | relevance | path

Searched refs:thrownExceptions (Results 1 – 25 of 25) 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/doclava/doclet_adapter/src/main/java/com/google/doclava/javadoc/
DExecutableMemberDocImpl.java53 private ClassDoc[] thrownExceptions; field in ExecutableMemberDocImpl
114 public ClassDoc[] thrownExceptions() { in thrownExceptions() method in ExecutableMemberDocImpl
115 if (thrownExceptions == null) { in thrownExceptions()
116 thrownExceptions = executableElement.getThrownTypes() in thrownExceptions()
122 return thrownExceptions; in thrownExceptions()
/external/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/
DOtherProfileCacheableGenerator.java119 .addExceptions(method.thrownExceptions()) in generateBlockingMethodOnOtherProfileCacheableClass()
137 .addExceptions(method.thrownExceptions()) in generateFutureMethodOnOtherProfileCacheableClass()
156 .addExceptions(method.thrownExceptions()) in generateCrossProfileCallbackMethodOnOtherProfileCacheableClass()
DInterfaceGenerator.java122 .addExceptions(method.thrownExceptions()) in generateMethodOnSingleSenderInterface()
164 .addExceptions(method.thrownExceptions()) in generateMethodOnSingleSenderCanThrowCacheableInterface()
232 .addExceptions(method.thrownExceptions()) in generateMethodOnSingleSenderCanThrowInterface()
325 if (!method.thrownExceptions().isEmpty()) { in generateBlockingMethodOnMultipleSenderInterface()
DOtherProfileGenerator.java155 .addExceptions(method.thrownExceptions()) in generateBlockingMethodOnOtherProfileClass()
181 if (method.thrownExceptions().isEmpty()) { in generateBlockingMethodOnOtherProfileClass()
197 for (TypeName exception : method.thrownExceptions()) { in generateBlockingMethodOnOtherProfileClass()
DInternalCrossProfileClassGenerator.java207 if (!method.thrownExceptions().isEmpty()) { in addBlockingCrossProfileTypeMethod()
222 if (!method.thrownExceptions().isEmpty()) { in addBlockingCrossProfileTypeMethod()
223 for (TypeName exceptionType : method.thrownExceptions()) { in addBlockingCrossProfileTypeMethod()
DFakeOtherCacheableGenerator.java121 .addExceptions(method.thrownExceptions()) in generateBlockingMethodOnFakeOtherCacheable()
DCurrentProfileGenerator.java183 .addExceptions(method.thrownExceptions()) in generateMethodOnCurrentProfileClass()
DIfAvailableGenerator.java109 .addExceptions(method.thrownExceptions()) in generateMethodOnIfAvailableClass()
DFakeOtherGenerator.java172 .addExceptions(method.thrownExceptions()) in generateBlockingMethodOnFakeOther()
DMultipleProfilesGenerator.java132 if (!method.thrownExceptions().isEmpty()) { in generateBlockingMethodOnMultipleProfilesClass()
/external/doclava/doclet_adapter/src/main/java/com/sun/javadoc/
DExecutableMemberDoc.java54 ClassDoc[] thrownExceptions(); in thrownExceptions() method
/external/doclava/doclet_adapter/src/test/java/com/google/doclava/javadoc/
DExecutableMemberDocImplTest.java77 public void thrownExceptions() { in thrownExceptions() method in ExecutableMemberDocImplTest
/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.java285 ArrayList<ParameterInfo> parameters, ArrayList<ClassInfo> thrownExceptions, in MethodInfo() argument
305 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.java66 public Collection<TypeName> thrownExceptions() { in thrownExceptions() method in CrossProfileMethodInfo
/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