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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /libcore/luni/src/main/java/java/nio/charset/
CoderMalfunctionError.java 35 * @param ex
38 public CoderMalfunctionError(Exception ex) {
39 super(ex);
  /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) {
  /libcore/luni/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
IllegalCharsetNameExceptionTest.java 53 IllegalCharsetNameException ex = new IllegalCharsetNameException( local
55 assertTrue(ex instanceof IllegalArgumentException);
56 assertNull(ex.getCause());
57 assertEquals(ex.getCharsetName(), "impossible");
58 assertTrue(ex.getMessage().indexOf("impossible") != -1);
60 ex = new IllegalCharsetNameException("ascii");
61 assertNull(ex.getCause());
62 assertEquals(ex.getCharsetName(), "ascii");
63 assertTrue(ex.getMessage().indexOf("ascii") != -1);
65 ex = new IllegalCharsetNameException("")
    [all...]
UnsupportedCharsetExceptionTest.java 53 UnsupportedCharsetException ex = new UnsupportedCharsetException( local
55 assertTrue(ex instanceof IllegalArgumentException);
56 assertNull(ex.getCause());
57 assertEquals(ex.getCharsetName(), "impossible");
58 assertTrue(ex.getMessage().indexOf("impossible") != -1);
60 ex = new UnsupportedCharsetException("ascii");
61 assertNull(ex.getCause());
62 assertEquals(ex.getCharsetName(), "ascii");
63 assertTrue(ex.getMessage().indexOf("ascii") != -1);
65 ex = new UnsupportedCharsetException("")
    [all...]
MalformedInputExceptionTest.java 60 MalformedInputException ex = new MalformedInputException(3); local
61 assertTrue(ex instanceof CharacterCodingException);
62 assertNull(ex.getCause());
63 assertEquals(ex.getInputLength(), 3);
64 assertTrue(ex.getMessage().indexOf("3") != -1);
66 ex = new MalformedInputException(-3);
67 assertNull(ex.getCause());
68 assertEquals(ex.getInputLength(), -3);
69 assertTrue(ex.getMessage().indexOf("-3") != -1);
71 ex = new MalformedInputException(0)
    [all...]
UnmappableCharacterExceptionTest.java 60 UnmappableCharacterException ex = new UnmappableCharacterException(3); local
61 assertTrue(ex instanceof CharacterCodingException);
62 assertNull(ex.getCause());
63 assertEquals(ex.getInputLength(), 3);
64 assertTrue(ex.getMessage().indexOf("3") != -1);
66 ex = new UnmappableCharacterException(-3);
67 assertNull(ex.getCause());
68 assertEquals(ex.getInputLength(), -3);
69 assertTrue(ex.getMessage().indexOf("-3") != -1);
71 ex = new UnmappableCharacterException(0)
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/move_exception/d/
T_move_exception_1.java 24 } catch(Exception ex) {
  /dalvik/dx/tests/055-dex-explicit-throw/
Blort.java 28 } catch (RuntimeException ex) {
  /dalvik/dx/tests/061-dex-try-catch/
Blort.java 31 } catch (RuntimeException ex) {
41 } catch (RuntimeException ex) {
51 } catch (RuntimeException ex) {
62 } catch (RuntimeException ex) {
  /frameworks/base/core/java/android/app/
StatusBarManager.java 79 } catch (RemoteException ex) {
81 throw new RuntimeException(ex);
91 } catch (RemoteException ex) {
93 throw new RuntimeException(ex);
103 } catch (RemoteException ex) {
105 throw new RuntimeException(ex);
112 } catch (RemoteException ex) {
114 throw new RuntimeException(ex);
121 } catch (RemoteException ex) {
123 throw new RuntimeException(ex);
    [all...]
  /libcore/luni/src/main/java/java/util/
SpecialAccess.java 35 } catch (NoSuchMethodException ex) {
36 ex.printStackTrace();
37 throw new AssertionError(ex);
  /dalvik/tests/etc/
default-build 31 if [ -r src-ex ]; then
32 mkdir classes-ex
33 ${JAVAC} -d classes-ex -cp classes `find src-ex -name '*.java'`
34 dx -JXmx256m --debug --dex --dump-to=classes-ex.lst \
35 --output=classes-ex.dex --dump-width=1000 classes-ex
39 mv classes-ex.dex classes.dex
40 zip test-ex.jar classes.dex
41 mv classes.dex classes-ex.de
    [all...]
  /external/openssl/crypto/x509/
x509_v3.c 88 X509_EXTENSION *ex; local
97 ex=sk_X509_EXTENSION_value(sk,lastpos);
98 if (OBJ_cmp(ex->object,obj) == 0)
108 X509_EXTENSION *ex; local
117 ex=sk_X509_EXTENSION_value(sk,lastpos);
118 if ( ((ex->critical > 0) && crit) ||
119 ((ex->critical <= 0) && !crit))
144 X509_EXTENSION *ex, int loc)
168 if ((new_ex=X509_EXTENSION_dup(ex)) == NULL)
183 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid
    [all...]
  /dalvik/tests/042-new-instance/src/
Main.java 39 } catch (Exception ex) {
41 ex.printStackTrace();
51 } catch (Exception ex) {
53 ex.printStackTrace();
63 } catch (Exception ex) {
79 } catch (Exception ex) {
81 ex.printStackTrace();
90 } catch (Exception ex) {
92 ex.printStackTrace();
102 } catch (Exception ex) {
    [all...]
  /external/apache-http/src/org/apache/http/client/utils/
CloneUtils.java 49 } catch (NoSuchMethodException ex) {
50 throw new NoSuchMethodError(ex.getMessage());
54 } catch (InvocationTargetException ex) {
55 Throwable cause = ex.getCause();
61 } catch (IllegalAccessException ex) {
62 throw new IllegalAccessError(ex.getMessage());
  /frameworks/base/core/java/com/android/internal/policy/
PolicyManager.java 41 } catch (ClassNotFoundException ex) {
43 POLICY_IMPL_CLASS_NAME + " could not be loaded", ex);
44 } catch (InstantiationException ex) {
46 POLICY_IMPL_CLASS_NAME + " could not be instantiated", ex);
47 } catch (IllegalAccessException ex) {
49 POLICY_IMPL_CLASS_NAME + " could not be instantiated", ex);
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java 171 } catch (RemoteException ex) {
173 } catch (NullPointerException ex) {
188 } catch (RemoteException ex) {
190 } catch (NullPointerException ex) {
210 } catch (RemoteException ex) {
212 } catch (NullPointerException ex) {
229 } catch (RemoteException ex) {
230 } catch (NullPointerException ex) {
246 } catch (RemoteException ex) {
247 } catch (NullPointerException ex) {
    [all...]

Completed in 385 milliseconds

1 2 3 4 5 6 7 8 91011>>