Searched defs:exceptions (Results 176 - 200 of 276) sorted by relevance

1234567891011>>

/external/turbine/java/com/google/turbine/bytecode/sig/
H A DSig.java313 private final ImmutableList<TySig> exceptions; field in class:Sig.MethodSig
319 ImmutableList<TySig> exceptions) {
323 this.exceptions = exceptions;
341 /** The thrown exceptions. */
342 public ImmutableList<TySig> exceptions() { method in class:Sig.MethodSig
343 return exceptions;
315 MethodSig( ImmutableList<TyParamSig> tyParams, ImmutableList<TySig> params, TySig returnType, ImmutableList<TySig> exceptions) argument
/external/turbine/java/com/google/turbine/parse/
H A DParser.java675 ImmutableList.Builder<ClassTy> exceptions = ImmutableList.builder();
678 exceptions.addAll(exceptions());
718 exceptions.build(),
756 private ImmutableList<ClassTy> exceptions() { method in class:Parser
/external/annotation-tools/asmx/src/org/objectweb/asm/tree/
H A DMethodNode.java89 public List exceptions; field in class:MethodNode
171 * @param exceptions the internal names of the method's exception classes
180 final String[] exceptions)
186 this.exceptions = new ArrayList(exceptions == null
188 : exceptions.length);
196 if (exceptions != null) {
197 this.exceptions.addAll(Arrays.asList(exceptions));
370 String[] exceptions
175 MethodNode( final int access, final String name, final String desc, final String signature, final String[] exceptions) argument
[all...]
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/
H A DAnnotationVerifier$ClassRecorder.class ... String[]) int access String name String desc String signature String[] exceptions org.objectweb.asm.AnnotationVerifier$ClassRecorder mr ...
H A DAnnotationVerifier.java154 public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) { argument
/external/autotest/client/cros/nfc/
H A Dconsole.py9 import dbus.exceptions namespace
22 """Exception class for exceptions thrown by NfcClient."""
42 Decorator for handling exceptions that are commonly raised by many of the
52 except dbus.exceptions.DBusException as e:
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DInterfaceDesugaring.java169 int access, String name, String desc, String signature, String[] exceptions) {
175 super.visitMethod(access, name, desc, signature, exceptions));
195 .visitMethod(access & ~Opcodes.ACC_PRIVATE, name, desc, signature, exceptions);
214 super.visitMethod(access | Opcodes.ACC_ABSTRACT, name, desc, signature, exceptions);
225 exceptions);
233 result = super.visitMethod(access, name, desc, signature, exceptions);
168 visitMethod( int access, String name, String desc, String signature, String[] exceptions) argument
H A DLambdaDesugaring.java159 int access, String name, String desc, String signature, String[] exceptions) {
193 MethodVisitor dest = super.visitMethod(access, name, desc, signature, exceptions);
195 ? new InvokedynamicRewriter(dest, access, name, desc, signature, exceptions)
383 String[] exceptions) {
384 super(ASM6, access, name, desc, signature, exceptions);
158 visitMethod( int access, String name, String desc, String signature, String[] exceptions) argument
377 InvokedynamicRewriter( MethodVisitor dest, int access, String name, String desc, String signature, String[] exceptions) argument
/external/desugar/test/java/com/google/devtools/build/android/desugar/
H A DByteCodeTypePrinter.java85 int access, String name, String desc, String signature, String[] exceptions) {
87 MethodVisitor mv = super.visitMethod(access, name, desc, signature, exceptions);
84 visitMethod( int access, String name, String desc, String signature, String[] exceptions) argument
/external/guava/guava-testlib/src/com/google/common/testing/
H A DClassSanityTester.java677 private static <X extends Throwable> void throwFirst(List<X> exceptions) throws X { argument
678 if (!exceptions.isEmpty()) {
679 throw exceptions.get(0);
/external/javassist/src/main/javassist/bytecode/
H A DCodeAttribute.java45 private ExceptionTable exceptions; field in class:CodeAttribute
64 exceptions = etable;
84 exceptions = src.getExceptionTable().copy(cp, classnames);
93 info = src.copyCode(cp, classnames, exceptions, this);
109 exceptions = new ExceptionTable(cp, in);
161 return 18 + info.length + exceptions.size() * 8
172 exceptions.write(out);
285 public ExceptionTable getExceptionTable() { return exceptions; }
H A DClassFileWriter.java339 * @param exceptions throws clause. It may be null.
345 String[] exceptions, AttributeWriter aw) {
349 if (exceptions == null)
352 intfs = constPool.addClassInfo(exceptions);
363 * @param exceptions throws clause. indexes indicating <code>CONSTANT_Class_info</code>s.
367 public void begin(int accessFlags, int name, int descriptor, int[] exceptions, AttributeWriter aw) { argument
375 if (exceptions != null)
380 if (exceptions != null)
381 writeThrows(exceptions);
396 private void writeThrows(int[] exceptions) { argument
344 begin(int accessFlags, String name, String descriptor, String[] exceptions, AttributeWriter aw) argument
[all...]
H A DSignatureAttribute.java230 ObjectType[] exceptions; field in class:SignatureAttribute.MethodSignature
236 exceptions = ex;
259 * Returns the types of the exceptions that may be thrown.
261 * @return a zero-length array if exceptions are never thrown or
264 public ObjectType[] getExceptionTypes() { return exceptions; }
277 if (exceptions.length > 0) {
279 Type.toString(sbuf, exceptions);
688 ArrayList exceptions = new ArrayList();
695 exceptions.add(t);
699 ObjectType[] ex = (ObjectType[])exceptions
[all...]
/external/libxml2/xstc/
H A Dxstc.py9 import exceptions, optparse namespace
289 # Suppress exceptions.
403 # Suppress exceptions.
537 out.write(" -> exceptions : %d\n" % counters[self.CNT_EXCEPTED])
/external/python/cpython2/Lib/test/
H A Dtest_exceptions.py1 # Python test set -- part 5, built-in exceptions
22 # Reloading the built-in exceptions module failed prior to Py2.2, while it
26 import exceptions namespace
27 reload(exceptions)
29 self.fail("reloading exceptions: %s" % e)
292 self.assertEqual(type(e).__module__, 'exceptions')
526 """Check same msg for built-in exceptions"""
527 # These exceptions implement a __str__ method that uses the args
530 exceptions = [
539 for exception in exceptions
[all...]
/external/python/cpython2/Tools/pybench/
H A DCommandLine.py23 import sys, getopt, string, glob, os, re, exceptions, traceback namespace
296 InternalError = exceptions.Exception
608 exceptions are reported with exit status code 1 (see
/external/ImageMagick/MagickCore/
H A Dexception.h114 *exceptions; member in struct:_ExceptionInfo
/external/annotation-tools/asmx/src/org/objectweb/asm/commons/
H A DEmptyVisitor.java113 String[] exceptions)
108 visitMethod( int access, String name, String desc, String signature, String[] exceptions) argument
/external/annotation-tools/scene-lib/src/annotations/io/classfile/
H A DClassAnnotationSceneWriter.java207 String signature, String[] exceptions) {
214 super.visitMethod(access, name, desc, signature, exceptions)));
1409 String name, String desc, String signature, String[] exceptions) {
206 visitMethod(int access, String name, String desc, String signature, String[] exceptions) argument
1408 visitMethod(int access, String name, String desc, String signature, String[] exceptions) argument
/external/annotation-tools/scene-lib/test/annotations/tests/classfile/
H A DAnnotationVerifier.java173 public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) { argument
/external/autotest/client/cros/cellular/pseudomodem/
H A Dpm_errors.py10 import dbus.exceptions namespace
15 class MMError(dbus.exceptions.DBusException):
344 class TestError(dbus.exceptions.DBusException):
/external/autotest/frontend/afe/
H A Dmodel_logic.py5 import django.core.exceptions namespace
17 class ValidationError(django.core.exceptions.ValidationError):
635 except django.core.exceptions.ValidationError, e:
/external/doclava/src/com/google/doclava/
H A DPackageInfo.java91 enums(), exceptions() };
120 enums(), exceptions() };
219 ClassInfo.makeLinkListHDF(data, base + ".exceptions", exceptions());
259 public ClassInfo[] exceptions() { method in class:PackageInfo
263 Converter.convertClasses(mPackage.exceptions())));
/external/icu/icu4c/source/common/
H A Ducase.cpp38 const uint16_t *exceptions; member in struct:UCaseProps
80 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
110 * @param excWord (in) initial exceptions word
236 * c has exceptions, so there may be multiple simple and/or
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Druntime.py10 from mako import exceptions, util, compat namespace
45 raise exceptions.NameConflictError(
265 raise exceptions.RuntimeException("No loop context is established")
689 raise exceptions.RuntimeException(
764 raise exceptions.TemplateLookupException(
770 except exceptions.TopLevelLookupException:
771 raise exceptions.TemplateLookupException(str(compat.exception_as()))
868 error_template = exceptions.html_error_template()

Completed in 2445 milliseconds

1234567891011>>