/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 | 52 } catch(Exception ex){ 53 ex.printStackTrace(); 54 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();
|
/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 | 128 } catch (UsageException ex) { 130 } catch (RuntimeException ex) { 132 ex.printStackTrace(); 134 } catch (Throwable ex) { 136 ex.printStackTrace(); 137 if ((ex instanceof NoClassDefFoundError) 138 || (ex instanceof NoSuchMethodError)) {
|
/external/boringssl/src/crypto/x509v3/ |
v3_prn.c | 153 X509_EXTENSION *ex; local 154 ex=sk_X509_EXTENSION_value(exts, i); 156 obj=X509_EXTENSION_get_object(ex); 158 j=X509_EXTENSION_get_critical(ex); 161 if(!X509V3_EXT_print(bp, ex, flag, indent + 4)) 164 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/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/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());
|
CSeqParser.java | 74 } catch (NumberFormatException ex) { 75 Debug.printStackTrace(ex); 77 } catch (InvalidArgumentException ex) { 78 Debug.printStackTrace(ex); 79 throw createParseException(ex.getMessage());
|
ContentDispositionParser.java | 88 } catch (ParseException ex) { 89 throw createParseException(ex.getMessage());
|
ContentEncodingParser.java | 103 } catch (ParseException ex) { 104 throw createParseException(ex.getMessage());
|
ContentLengthParser.java | 63 } catch (InvalidArgumentException ex) { 64 throw createParseException(ex.getMessage()); 65 } catch (NumberFormatException ex) { 66 throw createParseException(ex.getMessage());
|