HomeSort by relevance Sort by last modified time
    Searched refs:ex (Results 51 - 75 of 2748) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/test/etc/
default-build 32 if [ -r src-ex ]; then
33 mkdir classes-ex
34 ${JAVAC} -d classes-ex -cp classes `find src-ex -name '*.java'`
36 ${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes-ex.dex --dump-width=1000 classes-ex
40 mv classes-ex.dex classes.dex
41 zip $TEST_NAME-ex.jar classes.dex
42 mv classes.dex classes-ex.de
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
PrivilegedActionExceptionTest.java 38 Exception ex = new Exception(); local
39 new PrivilegedActionException(ex);
47 Exception ex = new Exception(); local
48 assertSame(new PrivilegedActionException(ex).getException(), ex);
  /external/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
put_long_double.pass.cpp 70 std::string ex(str, iter.base());
71 assert(ex == "0");
78 std::string ex(str, iter.base());
79 assert(ex == "0************************");
86 std::string ex(str, iter.base());
87 assert(ex == "************************0");
94 std::string ex(str, iter.base());
95 assert(ex == "************************0");
104 std::string ex(str, iter.base());
105 assert(ex == "0")
    [all...]
put_double.pass.cpp 70 std::string ex(str, iter.base());
71 assert(ex == "0");
78 std::string ex(str, iter.base());
79 assert(ex == "0************************");
86 std::string ex(str, iter.base());
87 assert(ex == "************************0");
94 std::string ex(str, iter.base());
95 assert(ex == "************************0");
104 std::string ex(str, iter.base());
105 assert(ex == "0")
    [all...]
put_bool.pass.cpp 52 std::string ex(str, iter.base());
53 assert(ex == "0");
59 std::string ex(str, iter.base());
60 assert(ex == "1");
70 std::string ex(str, iter.base());
71 assert(ex == "false");
77 std::string ex(str, iter.base());
78 assert(ex == "true");
89 std::string ex(str, iter.base());
90 assert(ex == "no")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
put_long_double.pass.cpp 70 std::string ex(str, iter.base());
71 assert(ex == "0");
78 std::string ex(str, iter.base());
79 assert(ex == "0************************");
86 std::string ex(str, iter.base());
87 assert(ex == "************************0");
94 std::string ex(str, iter.base());
95 assert(ex == "************************0");
104 std::string ex(str, iter.base());
105 assert(ex == "0")
    [all...]
put_double.pass.cpp 70 std::string ex(str, iter.base());
71 assert(ex == "0");
78 std::string ex(str, iter.base());
79 assert(ex == "0************************");
86 std::string ex(str, iter.base());
87 assert(ex == "************************0");
94 std::string ex(str, iter.base());
95 assert(ex == "************************0");
104 std::string ex(str, iter.base());
105 assert(ex == "0")
    [all...]
put_bool.pass.cpp 52 std::string ex(str, iter.base());
53 assert(ex == "0");
59 std::string ex(str, iter.base());
60 assert(ex == "1");
70 std::string ex(str, iter.base());
71 assert(ex == "false");
77 std::string ex(str, iter.base());
78 assert(ex == "true");
89 std::string ex(str, iter.base());
90 assert(ex == "no")
    [all...]
  /art/test/122-secondarydex/
build 23 mkdir classes-ex
24 mv classes/Super.class classes-ex
29 ${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes.dex --dump-width=1000 classes-ex
30 zip ${TEST_NAME}-ex.jar classes.dex
  /external/chromium_org/tools/telemetry/telemetry/results/
base_test_results_unittest.py 31 def assertEquals(self, ex, res):
33 if ex != res and isinstance(ex, list):
40 ex = CleanList(ex)
42 max_len = max(len(ex), len(res))
43 max_width = max([len(x) for x in ex + res])
48 if i < len(ex):
49 e = ex[i]
62 if ex != res and isinstance(ex, str) and isinstance(res, str)
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
x509_v3.c 86 X509_EXTENSION *ex; local
95 ex=sk_X509_EXTENSION_value(sk,lastpos);
96 if (OBJ_cmp(ex->object,obj) == 0)
106 X509_EXTENSION *ex; local
115 ex=sk_X509_EXTENSION_value(sk,lastpos);
116 if ( ((ex->critical > 0) && crit) ||
117 ((ex->critical <= 0) && !crit))
142 X509_EXTENSION *ex, int loc)
166 if ((new_ex=X509_EXTENSION_dup(ex)) == NULL)
181 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid
    [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...]
  /external/apache-http/src/org/apache/http/client/utils/
CloneUtils.java 54 } catch (NoSuchMethodException ex) {
55 throw new NoSuchMethodError(ex.getMessage());
59 } catch (InvocationTargetException ex) {
60 Throwable cause = ex.getCause();
66 } catch (IllegalAccessException ex) {
67 throw new IllegalAccessError(ex.getMessage());
  /frameworks/base/core/java/com/android/internal/policy/
PolicyManager.java 40 } catch (ClassNotFoundException ex) {
42 POLICY_IMPL_CLASS_NAME + " could not be loaded", ex);
43 } catch (InstantiationException ex) {
45 POLICY_IMPL_CLASS_NAME + " could not be instantiated", ex);
46 } catch (IllegalAccessException ex) {
48 POLICY_IMPL_CLASS_NAME + " could not be instantiated", ex);
  /libcore/luni/src/main/java/javax/sql/
ConnectionEvent.java 33 private SQLException ex; field in class:ConnectionEvent
61 ex = theException;
72 return ex;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_frexpl.c 39 frexpl(long double x, int *ex)
47 *ex = 0;
50 *ex = u.bits.exp - 0x4200;
54 case 0x7fff: /* infinity or NaN; value of *ex is unspecified */
57 *ex = u.bits.exp - 0x3ffe;
  /dalvik/dx/tests/069-dex-source-position/
Blort.java 25 } catch (RuntimeException ex) { // line 11
  /dalvik/dx/tests/092-ssa-cfg-edge-cases/
Blort.java 17 } catch (RuntimeException ex){
  /external/nist-sip/java/gov/nist/core/
Debug.java 50 public static void printStackTrace(Exception ex) {
52 stackLogger.logError("Stack Trace",ex);
56 public static void logError(String message, Exception ex) {
58 stackLogger.logError(message,ex);
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/debug/
LogHelper.java 16 package com.android.ex.camera2.portability.debug;
  /frameworks/opt/chips/src/com/android/ex/chips/
AccountSpecifier.java 17 package com.android.ex.chips;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharacterCodingExceptionTest.java 32 CharacterCodingException ex = new CharacterCodingException(); local
33 assertTrue(ex instanceof IOException);
34 assertNull(ex.getCause());
35 assertNull(ex.getMessage());
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinWorkerThread.java 109 } catch (Throwable ex) {
110 exception = ex;
114 } catch (Throwable ex) {
116 exception = ex;
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh42.cpp 15 } catch (int ex) {
  /ndk/tests/device/test-stlport_static-exception/jni/
eh42.cpp 15 } catch (int ex) {

Completed in 698 milliseconds

1 23 4 5 6 7 8 91011>>