HomeSort by relevance Sort by last modified time
    Searched refs:ex (Results 1 - 25 of 4578) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/C/src/
antlr3exception.c 37 static void antlr3ExceptionPrint(pANTLR3_EXCEPTION ex);
38 static void antlr3ExceptionFree (pANTLR3_EXCEPTION ex);
74 pANTLR3_EXCEPTION ex; local
78 ex = (pANTLR3_EXCEPTION) ANTLR3_CALLOC(1, sizeof(ANTLR3_EXCEPTION));
82 if (ex == NULL)
87 ex->name = name; /* Install exception name */
88 ex->type = exception; /* Install the exception number */
89 ex->message = message; /* Install message string */
93 ex->freeMessage = freeMessage;
97 ex->print = antlr3ExceptionPrint
    [all...]
  /dalvik/dx/tests/080-dex-exception-tables/
Blort.java 29 } catch (IndexOutOfBoundsException ex) {
31 } catch (RuntimeException ex) {
44 } catch (IndexOutOfBoundsException ex) {
48 } catch (RuntimeException ex) {
62 } catch (NullPointerException ex) {
66 } catch (IndexOutOfBoundsException ex) {
70 } catch (RuntimeException ex) {
84 } catch (NullPointerException ex) {
87 } catch (IndexOutOfBoundsException ex) {
91 } catch (RuntimeException ex) {
    [all...]
  /external/grub/stage2/
imgact_aout.h 51 #define N_GETMAGIC(ex) \
52 ( (ex).a_midmag & 0xffff )
53 #define N_GETMID(ex) \
54 ( (N_GETMAGIC_NET(ex) == ZMAGIC) ? N_GETMID_NET(ex) : \
55 ((ex).a_midmag >> 16) & 0x03ff )
56 #define N_GETFLAG(ex) \
57 ( (N_GETMAGIC_NET(ex) == ZMAGIC) ? N_GETFLAG_NET(ex) : \
58 ((ex).a_midmag >> 26) & 0x3f
    [all...]
  /external/proguard/src/proguard/classfile/io/
RuntimeDataInput.java 50 catch (IOException ex)
52 throw new RuntimeException(ex.getMessage());
62 catch (IOException ex)
64 throw new RuntimeException(ex.getMessage());
74 catch (IOException ex)
76 throw new RuntimeException(ex.getMessage());
86 catch (IOException ex)
88 throw new RuntimeException(ex.getMessage());
98 catch (IOException ex)
100 throw new RuntimeException(ex.getMessage())
    [all...]
RuntimeDataOutput.java 50 catch (IOException ex)
52 throw new RuntimeException(ex.getMessage());
63 catch (IOException ex)
65 throw new RuntimeException(ex.getMessage());
76 catch (IOException ex)
78 throw new RuntimeException(ex.getMessage());
89 catch (IOException ex)
91 throw new RuntimeException(ex.getMessage());
102 catch (IOException ex)
104 throw new RuntimeException(ex.getMessage())
    [all...]
  /dalvik/dx/tests/066-dex-try-catch-rethrow/
Blort.java 26 } catch (Exception ex) {
27 throw new RuntimeException(ex);
38 } catch (Exception ex) {
39 throw new RuntimeException(ex);
50 } catch (Exception ex) {
51 throw new RuntimeException(ex);
62 } catch (Exception ex) {
63 throw new RuntimeException(ex);
74 } catch (Exception ex) {
75 throw new RuntimeException(ex);
    [all...]
  /external/nist-sip/java/gov/nist/core/
InternalErrorHandler.java 42 public static void handleException(Exception ex) throws RuntimeException {
43 System.err.println ("Unexpected internal error FIXME!! " + ex.getMessage());
44 ex.printStackTrace();
45 throw new RuntimeException("Unexpected internal error FIXME!! " + ex.getMessage(), ex);
51 public static void handleException(Exception ex, StackLogger stackLogger) {
52 System.err.println ("Unexpected internal error FIXME!! " + ex.getMessage());
53 stackLogger.logError("UNEXPECTED INTERNAL ERROR FIXME " + ex.getMessage());
54 ex.printStackTrace();
55 stackLogger.logException(ex);
    [all...]
  /external/skia/include/utils/win/
SkHRESULT.h 41 #define HR(ex) HR_GENERAL(ex, NULL, _hr)
42 #define HRM(ex, msg) HR_GENERAL(ex, msg, _hr)
44 #define HRB(ex) HR_GENERAL(ex, NULL, false)
45 #define HRBM(ex, msg) HR_GENERAL(ex, msg, false)
47 #define HRV(ex) HR_GENERAL(ex, NULL,
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
ArrayIndexOutOfBoundsExceptionTest.java 27 } catch (ArrayIndexOutOfBoundsException ex) {
28 assertEquals("length=1; index=2", ex.getMessage());
37 } catch (ArrayIndexOutOfBoundsException ex) {
38 assertEquals("length=1; index=2", ex.getMessage());
47 } catch (ArrayIndexOutOfBoundsException ex) {
48 assertEquals("length=1; index=2", ex.getMessage());
57 } catch (ArrayIndexOutOfBoundsException ex) {
58 assertEquals("length=1; index=2", ex.getMessage());
67 } catch (ArrayIndexOutOfBoundsException ex) {
68 assertEquals("length=1; index=2", ex.getMessage())
    [all...]
ClassNotFoundExceptionTest.java 27 } catch (ClassNotFoundException ex) {
28 assertEquals("[V", ex.getMessage());
36 } catch (ClassNotFoundException ex) {
37 assertEquals("blort.Zorch", ex.getMessage());
45 } catch (ClassNotFoundException ex) {
46 assertEquals("[[Lblort.Zorch;", ex.getMessage());
StringIndexOutOfBoundsExceptionTest.java 26 } catch (StringIndexOutOfBoundsException ex) {
27 assertEquals("length=5; index=-1", ex.getMessage());
33 } catch (StringIndexOutOfBoundsException ex) {
34 assertEquals("length=5; index=7", ex.getMessage());
42 } catch (StringIndexOutOfBoundsException ex) {
44 ex.getMessage());
ArrayStoreExceptionTest.java 28 } catch (ArrayStoreException ex) {
29 ex.printStackTrace();
32 ex.getMessage());
42 } catch (ArrayStoreException ex) {
45 ex.getMessage());
55 } catch (ArrayStoreException ex) {
58 ex.getMessage());
67 } catch (ArrayStoreException ex) {
68 ex.printStackTrace();
71 ex.getMessage())
    [all...]
  /libcore/luni/src/main/java/java/nio/charset/
CoderMalfunctionError.java 35 * @param ex
38 public CoderMalfunctionError(Exception ex) {
39 super(ex);
  /libcore/luni/src/main/java/java/security/
PrivilegedActionException.java 27 public PrivilegedActionException(Exception ex) {
28 super(ex);
  /external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
IllegalCharsetNameExceptionTest.java 33 IllegalCharsetNameException ex = new IllegalCharsetNameException( local
35 assertTrue(ex instanceof IllegalArgumentException);
36 assertNull(ex.getCause());
37 assertEquals(ex.getCharsetName(), "impossible");
38 assertTrue(ex.getMessage().indexOf("impossible") != -1);
40 ex = new IllegalCharsetNameException("ascii");
41 assertNull(ex.getCause());
42 assertEquals(ex.getCharsetName(), "ascii");
43 assertTrue(ex.getMessage().indexOf("ascii") != -1);
45 ex = new IllegalCharsetNameException("")
    [all...]
UnsupportedCharsetExceptionTest.java 33 UnsupportedCharsetException ex = new UnsupportedCharsetException( local
35 assertTrue(ex instanceof IllegalArgumentException);
36 assertNull(ex.getCause());
37 assertEquals(ex.getCharsetName(), "impossible");
38 assertTrue(ex.getMessage().indexOf("impossible") != -1);
40 ex = new UnsupportedCharsetException("ascii");
41 assertNull(ex.getCause());
42 assertEquals(ex.getCharsetName(), "ascii");
43 assertTrue(ex.getMessage().indexOf("ascii") != -1);
45 ex = new UnsupportedCharsetException("")
    [all...]
MalformedInputExceptionTest.java 34 MalformedInputException ex = new MalformedInputException(3); local
35 assertTrue(ex instanceof CharacterCodingException);
36 assertNull(ex.getCause());
37 assertEquals(ex.getInputLength(), 3);
38 assertTrue(ex.getMessage().indexOf("3") != -1);
40 ex = new MalformedInputException(-3);
41 assertNull(ex.getCause());
42 assertEquals(ex.getInputLength(), -3);
43 assertTrue(ex.getMessage().indexOf("-3") != -1);
45 ex = new MalformedInputException(0)
    [all...]
UnmappableCharacterExceptionTest.java 34 UnmappableCharacterException ex = new UnmappableCharacterException(3); local
35 assertTrue(ex instanceof CharacterCodingException);
36 assertNull(ex.getCause());
37 assertEquals(ex.getInputLength(), 3);
38 assertTrue(ex.getMessage().indexOf("3") != -1);
40 ex = new UnmappableCharacterException(-3);
41 assertNull(ex.getCause());
42 assertEquals(ex.getInputLength(), -3);
43 assertTrue(ex.getMessage().indexOf("-3") != -1);
45 ex = new UnmappableCharacterException(0)
    [all...]
  /dalvik/dx/tests/046-dex-exceptions/
Blort.java 31 } catch (RuntimeException ex) {
40 } catch (RuntimeException ex) {
48 } catch (RuntimeException ex) {
54 } catch (RuntimeException ex) {
  /libcore/luni/src/main/java/java/lang/
ClassNotFoundException.java 27 private Throwable ex; field in class:ClassNotFoundException
60 ex = exception;
69 return ex;
80 return ex;
  /dalvik/dx/tests/067-dex-switch-and-try/
Blort.java 36 } catch (RuntimeException ex) {
57 } catch (RuntimeException ex) {
73 } catch (RuntimeException ex) {
98 } catch (RuntimeException ex) {
108 } catch (RuntimeException ex) {
  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
Exception.pm 11 my $ex = $self->class->new();
12 is $ex->message, '';
17 my $ex = $self->class->new({ message => 'test error message' });
18 is $ex->message, 'test error message';
26 my $ex = $self->class->caught();
27 is $ex->message, 'test error message';
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetNotFoundException.java 14 public AssetNotFoundException(String message, Exception ex){
15 super(message, ex);
  /ndk/tests/device/test-gnustl-1/jni/
hello.cpp 28 catch (std::exception &ex)
30 std::printf("%s\n", ex.what());
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_exception/d/
T_move_exception_1.java 24 } catch(Exception ex) {

Completed in 753 milliseconds

1 2 3 4 5 6 7 8 91011>>