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

1 2 3

  /cts/tests/tests/content/src/android/content/res/cts/
Resources_NotFoundExceptionTest.java 20 import android.content.res.Resources.NotFoundException;
26 NotFoundException ne;
30 ne = new NotFoundException();
34 } catch (NotFoundException e) {
40 fail("should throw out NotFoundException");
46 ne = new NotFoundException(MESSAGE);
50 } catch (NotFoundException e) {
57 fail("should throw out NotFoundException");
63 ne = new NotFoundException(MESSAGE, CAUSE);
67 } catch (NotFoundException e)
    [all...]
PrivateAttributeTest.java 44 } catch (Resources.NotFoundException e) {
58 } catch (Resources.NotFoundException e) {
ResourcesTest.java 27 import android.content.res.Resources.NotFoundException;
94 } catch (NotFoundException e) {
119 } catch (NotFoundException e) {
177 } catch (NotFoundException e) {
186 } catch (NotFoundException e) {
199 } catch (NotFoundException e) {
212 } catch (NotFoundException e) {
227 } catch (NotFoundException expected) {
236 } catch (NotFoundException e) {
308 } catch (NotFoundException e)
    [all...]
  /developers/build/prebuilts/gradle/WearAccessibilityApp/Wearable/src/main/java/com/example/android/wearable/wear/wearaccessibilityapp/
ZoomImageActivity.java 19 import android.content.res.Resources.NotFoundException;
35 throw new NotFoundException("Expecting extras");
  /developers/samples/android/wearable/wear/WearAccessibilityApp/Wearable/src/main/java/com/example/android/wearable/wear/wearaccessibilityapp/
ZoomImageActivity.java 18 import android.content.res.Resources.NotFoundException;
37 throw new NotFoundException("Expecting extras");
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
JavassistConstructorDeclaration.java 24 import javassist.NotFoundException;
81 } catch (NotFoundException e) {
100 } catch (NotFoundException e) {
129 } catch (NotFoundException e) {
142 } catch (NotFoundException e) {
JavassistTypeDeclarationAdapter.java 20 import javassist.NotFoundException;
62 } catch (NotFoundException e) {
89 } catch (NotFoundException e) {
JavassistFactory.java 23 import javassist.NotFoundException;
54 } catch (NotFoundException e) {
JavassistFieldDeclaration.java 26 import javassist.NotFoundException;
53 } catch (NotFoundException e) {
JavassistMethodDeclaration.java 31 import javassist.NotFoundException;
108 } catch (NotFoundException e) {
120 } catch (NotFoundException e) {
139 } catch (NotFoundException e) {
181 } catch (NotFoundException e) {
194 } catch (NotFoundException e) {
JavassistInterfaceDeclaration.java 35 import javassist.NotFoundException;
75 } catch (NotFoundException e) {
126 } catch (NotFoundException e) {
137 } catch (NotFoundException e) {
167 } catch (NotFoundException e) {
267 } catch (NotFoundException e) {
JavassistClassDeclaration.java 37 import javassist.NotFoundException;
204 } catch (NotFoundException e) {
215 } catch (NotFoundException e) {
250 } catch (NotFoundException e) {
304 } catch (NotFoundException e) {
325 } catch (NotFoundException e) {
370 } catch (NotFoundException e) {
JavassistEnumDeclaration.java 35 import javassist.NotFoundException;
112 } catch (NotFoundException e) {
191 } catch (NotFoundException e) {
211 } catch (NotFoundException e) {
JavassistUtils.java 31 import javassist.NotFoundException;
79 } catch (NotFoundException e) {
90 } catch (NotFoundException e) {
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowLegacyResourcesImpl.java 57 public String getQuantityString(int id, int quantity, Object... formatArgs) throws Resources.NotFoundException {
63 public String getQuantityString(int resId, int quantity) throws Resources.NotFoundException {
84 public InputStream openRawResource(int id) throws Resources.NotFoundException {
97 * be returned if the resource is found. If the resource cannot be found, {@link Resources.NotFoundException} will
101 public AssetFileDescriptor openRawResourceFd(int id) throws Resources.NotFoundException {
116 private Resources.NotFoundException newNotFoundException(int id) {
120 return new Resources.NotFoundException("resource ID #0x" + Integer.toHexString(id));
122 return new Resources.NotFoundException(resName.getFullyQualifiedName());
127 public XmlResourceParser loadXmlResourceParser(int resId, String type) throws Resources.NotFoundException {
133 public XmlResourceParser loadXmlResourceParser(String file, int id, int assetCookie, String type) throws Resources.NotFoundException {
    [all...]
ShadowResources.java 15 import android.content.res.Resources.NotFoundException;
96 throws Resources.NotFoundException {
106 protected String getQuantityString(int resId, int quantity) throws Resources.NotFoundException {
133 protected InputStream openRawResource(int id) throws Resources.NotFoundException {
151 * Resources.NotFoundException} will be thrown.
154 protected AssetFileDescriptor openRawResourceFd(int id) throws Resources.NotFoundException {
174 private Resources.NotFoundException newNotFoundException(int id) {
178 return new Resources.NotFoundException("resource ID #0x" + Integer.toHexString(id));
180 return new Resources.NotFoundException(resName.getFullyQualifiedName());
185 protected TypedArray obtainTypedArray(int id) throws Resources.NotFoundException {
    [all...]
ShadowArscResourcesImpl.java 82 public String getQuantityString(int id, int quantity, Object... formatArgs) throws Resources.NotFoundException {
88 public String getQuantityString(int resId, int quantity) throws Resources.NotFoundException {
109 public InputStream openRawResource(int id) throws Resources.NotFoundException {
127 * be returned if the resource is found. If the resource cannot be found, {@link Resources.NotFoundException} will
131 public AssetFileDescriptor openRawResourceFd(int id) throws Resources.NotFoundException {
146 private Resources.NotFoundException newNotFoundException(int id) {
150 return new Resources.NotFoundException("resource ID #0x" + Integer.toHexString(id));
152 return new Resources.NotFoundException(resName.getFullyQualifiedName());
157 public Drawable loadDrawable(Resources wrapper, TypedValue value, int id, Resources.Theme theme, boolean useCache) throws Resources.NotFoundException {
Converter.java 272 } catch (Resources.NotFoundException e) {
297 } catch (Resources.NotFoundException e) {
330 throw new Resources.NotFoundException("no value found for " + key);
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
JavassistHelper.java 31 import javassist.NotFoundException;
50 * @throws NotFoundException
52 public static String returnValue(CtBehavior method) throws NotFoundException {
67 * @throws NotFoundException
69 private static boolean methodReturnsValue(CtBehavior method) throws NotFoundException {
91 * @throws NotFoundException
93 public static String getSignature(CtBehavior method) throws NotFoundException {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ClassPathResolver.java 128 } catch (NotFoundException ex2) {
134 } catch (NotFoundException ex) {
141 } catch (NotFoundException ex2) {
189 throws IOException, NoDexException, NotFoundException {
216 throw new NotFoundException("Could not find classpath entry %s", entry);
249 } catch (NotFoundException ex) {
264 throws IOException, NoDexException, NotFoundException {
270 throw new NotFoundException("Cannot find dependency %s in %s", oatDependencyName, directory);
288 private static class NotFoundException extends Exception {
289 public NotFoundException(String message, Object... formatArgs)
    [all...]
  /external/zxing/core/
core.jar 
  /cts/tests/tests/security/src/android/security/cts/
PackageSignatureTest.java 23 import android.content.res.Resources.NotFoundException;
71 private Set<Signature> getWellKnownSignatures() throws NotFoundException, IOException {
135 private Signature getSignature(int resId) throws NotFoundException, IOException {
  /external/guice/extensions/persist/lib/
javassist.jar 
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typesolvers/
JarTypeSolver.java 24 import javassist.NotFoundException;
91 } catch (NotFoundException e) {
  /external/guice/extensions/struts2/lib/
javassist.jar 

Completed in 2556 milliseconds

1 2 3