Searched refs:ex (Results 1 - 25 of 3453) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3exception.c37 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
118 antlr3ExceptionPrint(pANTLR3_EXCEPTION ex) argument
154 antlr3ExceptionFree(pANTLR3_EXCEPTION ex) argument
[all...]
/external/grub/stage2/
H A Dimgact_aout.h51 #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)
[all...]
/external/proguard/src/proguard/classfile/io/
H A DRuntimeDataInput.java50 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
[all...]
H A DRuntimeDataOutput.java50 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
[all...]
/external/nist-sip/java/gov/nist/core/
H A DInternalErrorHandler.java42 public static void handleException(Exception ex) throws RuntimeException { argument
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) { argument
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/
H A DSkHRESULT.h41 #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, NUL
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-100859.js35 } catch (ex) {
36 assertTrue(ex instanceof RangeError);
H A Dregress-91010.js34 } catch(ex) {}
36 } catch(ex) {}
H A Dregress-937896.js39 } catch (ex) {
/external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
H A DIllegalCharsetNameExceptionTest.java33 IllegalCharsetNameException ex = new IllegalCharsetNameException(
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
[all...]
H A DUnsupportedCharsetExceptionTest.java33 UnsupportedCharsetException ex = new UnsupportedCharsetException(
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
[all...]
H A DMalformedInputExceptionTest.java34 MalformedInputException ex = new MalformedInputException(3);
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
[all...]
H A DUnmappableCharacterExceptionTest.java34 UnmappableCharacterException ex = new UnmappableCharacterException(3);
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
[all...]
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodereplacechild01.js55 } catch(ex) {
56 catchInitializationError(builder, ex);
106 } catch (ex) {
107 if (typeof(ex.code) != 'undefined') {
108 switch(ex.code) {
114 throw ex;
117 throw ex;
H A Dnoderemovechild05.js54 } catch(ex) {
55 catchInitializationError(builder, ex);
112 } catch (ex) {
113 if (typeof(ex.code) != 'undefined') {
114 switch(ex.code) {
118 throw ex;
121 throw ex;
134 catch(ex) {
135 success = (typeof(ex.code) != 'undefined' && ex
[all...]
H A Dnoderemovechild07.js54 } catch(ex) {
55 catchInitializationError(builder, ex);
113 catch(ex) {
114 success = (typeof(ex.code) != 'undefined' && ex.code == 8);
122 } catch (ex) {
123 if (typeof(ex.code) != 'undefined') {
124 switch(ex.code) {
130 throw ex;
133 throw ex;
[all...]
H A Ddocumentrenamenode27.js54 } catch(ex) {
55 catchInitializationError(builder, ex);
132 catch(ex) {
133 success = (typeof(ex.code) != 'undefined' && ex.code == 9);
143 catch(ex) {
144 success = (typeof(ex.code) != 'undefined' && ex.code == 9);
154 catch(ex) {
155 success = (typeof(ex
[all...]
H A Dnodeinsertbefore15.js54 } catch(ex) {
55 catchInitializationError(builder, ex);
116 catch(ex) {
117 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
128 catch(ex) {
129 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
140 catch(ex) {
141 success = (typeof(ex
[all...]
H A Dnodereplacechild23.js54 } catch(ex) {
55 catchInitializationError(builder, ex);
121 catch(ex) {
122 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
132 catch(ex) {
133 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
143 catch(ex) {
144 success = (typeof(ex
[all...]
H A Ddomconfigschematype1.js48 } catch(ex) {
49 catchInitializationError(builder, ex);
100 } catch (ex) {
101 if (typeof(ex.code) != 'undefined') {
102 switch(ex.code) {
106 throw ex;
109 throw ex;
130 catch(ex) {
131 success = (typeof(ex.code) != 'undefined' && ex
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DException.pm11 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/
H A DAssetNotFoundException.java14 public AssetNotFoundException(String message, Exception ex){ argument
15 super(message, ex);
/external/webkit/LayoutTests/dom/html/level1/core/
H A Ddocumentinvalidcharacterexceptioncreateentref.js55 } catch(ex) {
56 catchInitializationError(builder, ex);
113 catch(ex) {
114 success = (typeof(ex.code) != 'undefined' && ex.code == 9);
128 catch(ex) {
129 success = (typeof(ex.code) != 'undefined' && ex.code == 5);
H A Ddocumentinvalidcharacterexceptioncreateentref1.js55 } catch(ex) {
56 catchInitializationError(builder, ex);
110 catch(ex) {
111 success = (typeof(ex.code) != 'undefined' && ex.code == 9);
125 catch(ex) {
126 success = (typeof(ex.code) != 'undefined' && ex.code == 5);
H A Ddocumentinvalidcharacterexceptioncreatepi.js55 } catch(ex) {
56 catchInitializationError(builder, ex);
113 catch(ex) {
114 success = (typeof(ex.code) != 'undefined' && ex.code == 9);
128 catch(ex) {
129 success = (typeof(ex.code) != 'undefined' && ex.code == 5);

Completed in 365 milliseconds

1234567891011>>