HomeSort by relevance Sort by last modified time
    Searched defs:ex (Results 76 - 100 of 2603) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/opt/chips/src/com/android/ex/chips/
ChipsUtil.java 17 package com.android.ex.chips;
PhotoManager.java 17 package com.android.ex.chips;
20 * Used by the {@link com.android.ex.chips.BaseRecipientAdapter} to handle fetching
29 * Sets the {@link com.android.ex.chips.RecipientEntry}'s photo bytes. If the photo bytes
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
ActionBarInterface.java 1 package com.android.ex.photo;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
PhotoBitmapLoaderInterface.java 1 package com.android.ex.photo.loaders;
23 * Returns a drawable to be used in the {@link com.android.ex.photo.views.PhotoView}.
PhotoPagerLoader.java 18 package com.android.ex.photo.loaders;
25 import com.android.ex.photo.provider.PhotoContract;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Trace.java 17 package com.android.ex.photo.util;
Util.java 1 package com.android.ex.photo.util;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
ProgressBarWrapper.java 18 package com.android.ex.photo.views;
  /libcore/luni/src/test/java/libcore/java/lang/annotation/
AnnotationTypeMismatchExceptionTest.java 28 AnnotationTypeMismatchException ex = new AnnotationTypeMismatchException(m, "poop"); local
29 assertSame(m, ex.element());
30 assertEquals("poop", ex.foundType());
  /libcore/ojluni/src/main/java/java/util/logging/
ErrorManager.java 80 * @param ex an exception (may be null)
83 public synchronized void error(String msg, Exception ex, int code) {
95 if (ex != null) {
96 ex.printStackTrace();
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
ConverterPerformanceTest.java 54 } catch(Exception ex){
55 ex.printStackTrace();
56 throw new RuntimeException(ex.getMessage());
  /libcore/dom/src/test/java/org/w3c/domts/
BatikTestDocumentBuilderFactory.java 64 } catch (Exception ex) {
65 throw new DOMTestIncompatibleException(ex, null);
97 } catch (InvocationTargetException ex) {
99 ex.getTargetException(),
101 } catch (Exception ex) {
102 throw new DOMTestIncompatibleException(ex, null);
136 } catch (InvocationTargetException ex) {
137 ex.printStackTrace();
138 throw new DOMTestLoadException(ex.getTargetException());
139 } catch (Exception ex) {
    [all...]
DOM4JTestDocumentBuilderFactory.java 85 catch (InvocationTargetException ex) {
86 throw new DOMTestIncompatibleException(ex.getTargetException(), null);
88 catch (Exception ex) {
89 throw new DOMTestIncompatibleException(ex, null);
116 catch (InvocationTargetException ex) {
117 ex.getTargetException().printStackTrace();
118 throw new DOMTestLoadException(ex.getTargetException());
120 catch (Exception ex) {
121 ex.printStackTrace();
122 throw new DOMTestLoadException(ex);
    [all...]
  /art/test/054-uncaught/src/
Main.java 35 } catch (InterruptedException ex) {
36 ex.printStackTrace();
  /art/test/563-checker-fakestring/src/
Main.java 52 } catch (InvocationTargetException ex) {
53 if (ex.getCause() instanceof ArrayIndexOutOfBoundsException) {
56 throw ex.getCause();
  /cts/tools/vm-tests-tf/src/util/build/
JillBuildStep.java 69 } catch (Throwable ex) {
73 ex.printStackTrace();
  /dalvik/dx/src/com/android/dx/command/
Main.java 116 } catch (UsageException ex) {
118 } catch (RuntimeException ex) {
120 ex.printStackTrace();
122 } catch (Throwable ex) {
124 ex.printStackTrace();
125 if ((ex instanceof NoClassDefFoundError)
126 || (ex instanceof NoSuchMethodError)) {
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/
ext.c 109 X509_EXTENSION *ex; local
117 ex = X509_EXTENSION_create_by_NID(NULL, nid, crit, ext_data);
122 return ex;
140 X509_EXTENSION *ex = NULL; local
152 ex = ext_new(nid, crit, p, sz);
158 return ex;
175 X509_EXTENSION *ex = NULL; local
187 ex = ext_new(nid, crit, p, sz);
193 return ex;
213 X509_EXTENSION *ex = NULL local
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_prn.c 175 X509_EXTENSION *ex; local
176 ex = sk_X509_EXTENSION_value(exts, i);
179 obj = X509_EXTENSION_get_object(ex);
181 j = X509_EXTENSION_get_critical(ex);
184 if (!X509V3_EXT_print(bp, ex, flag, indent + 4)) {
186 M_ASN1_OCTET_STRING_print(bp, ex->value);
  /external/bsdiff/
extents_file.cc 88 const ex_t& ex = extents_[curr_ex_idx_]; variable
91 std::min(static_cast<uint64_t>(count), ex.len - curr_ex_off);
93 if (ex.off < 0) {
96 if (!file_->Seek(ex.off + curr_ex_off) ||
  /external/ltp/testcases/kernel/syscalls/abort/
abort01.c 55 int sig, ex; local
61 ex = sig = 0;
105 ex = WEXITSTATUS(status);
111 "signal = %d", ex, sig);
121 "signal = %d", SIGIOT, ex, sig);
  /external/mesa3d/src/glsl/
lower_vector.cpp 93 ir_expression *const ex = (ir_expression *) op; local
95 if (ex->operation != ir_unop_neg)
98 op = ex->operands[0];
  /external/mockito/src/test/java/org/mockito/internal/junit/util/
JUnitFailureHackerTest.java 49 RuntimeException ex = new RuntimeException("foo"); local
50 Failure failure = new Failure(Description.EMPTY, ex);
56 assertEquals(ex, failure.getException());
61 RuntimeException ex = new RuntimeException("foo"); local
62 Failure failure = new Failure(Description.EMPTY, ex);
68 assertEquals(ex, failure.getException());
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptEncodingParser.java 119 } catch (NumberFormatException ex) {
120 throw createParseException(ex.getMessage());
121 } catch (InvalidArgumentException ex) {
122 throw createParseException(ex.getMessage());
AcceptLanguageParser.java 113 } catch (NumberFormatException ex) {
114 throw createParseException(ex.getMessage());
115 } catch (InvalidArgumentException ex) {
116 throw createParseException(ex.getMessage());

Completed in 777 milliseconds

1 2 34 5 6 7 8 91011>>