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

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
IgnorableClassNotFoundException.java 3 import javassist.NotFoundException;
5 public class IgnorableClassNotFoundException extends NotFoundException {
6 public IgnorableClassNotFoundException(NotFoundException e) {
  /external/javassist/src/main/javassist/
NotFoundException.java 21 public class NotFoundException extends Exception {
22 public NotFoundException(String msg) {
26 public NotFoundException(String msg, Exception e) {
Translator.java 38 * @throws NotFoundException if a <code>CtClass</code> cannot be found.
43 throws NotFoundException, CannotCompileException;
64 * @throws NotFoundException if a <code>CtClass</code> cannot be found.
69 throws NotFoundException, CannotCompileException;
ClassPath.java 50 InputStream openClassfile(String classname) throws NotFoundException;
CtArray.java 46 catch (NotFoundException e) {}
50 public CtClass[] getInterfaces() throws NotFoundException {
63 public boolean subtypeOf(CtClass clazz) throws NotFoundException {
80 public CtClass getComponentType() throws NotFoundException {
85 public CtClass getSuperclass() throws NotFoundException {
93 catch (NotFoundException e) {
99 throws NotFoundException
108 catch (NotFoundException e) {
CtClass.java 248 public URL getURL() throws NotFoundException {
249 throw new NotFoundException(getName());
321 public CtClass getComponentType() throws NotFoundException {
330 public boolean subtypeOf(CtClass clazz) throws NotFoundException {
542 public CtClass[] getNestedClasses() throws NotFoundException {
585 public CtClass getSuperclass() throws NotFoundException {
611 public CtClass[] getInterfaces() throws NotFoundException {
643 public CtClass getDeclaringClass() throws NotFoundException {
654 public CtMethod getEnclosingMethod() throws NotFoundException {
685 public CtField getField(String name) throws NotFoundException {
    [all...]
  /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) {
  /frameworks/base/test-mock/src/android/test/mock/
MockResources.java 56 public CharSequence getText(int id) throws NotFoundException {
61 public CharSequence getQuantityText(int id, int quantity) throws NotFoundException {
66 public String getString(int id) throws NotFoundException {
71 public String getString(int id, Object... formatArgs) throws NotFoundException {
77 throws NotFoundException {
82 public String getQuantityString(int id, int quantity) throws NotFoundException {
92 public CharSequence[] getTextArray(int id) throws NotFoundException {
97 public String[] getStringArray(int id) throws NotFoundException {
102 public int[] getIntArray(int id) throws NotFoundException {
107 public TypedArray obtainTypedArray(int id) throws NotFoundException {
    [all...]
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
TestResources.java 23 public String getString(int id) throws NotFoundException {
32 throw new NotFoundException();
36 public String getString(int id, Object... formatArgs) throws NotFoundException {
  /external/javassist/src/main/javassist/expr/
ConstructorCall.java 21 import javassist.NotFoundException;
47 * Always throws a <code>NotFoundException</code>.
51 public CtMethod getMethod() throws NotFoundException {
52 throw new NotFoundException("this is a constructor call. Call getConstructor().");
58 public CtConstructor getConstructor() throws NotFoundException {
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
ResourcesWrapper.java 53 public CharSequence getText(int id) throws NotFoundException {
58 public CharSequence getQuantityText(int id, int quantity) throws NotFoundException {
63 public String getString(int id) throws NotFoundException {
68 public String getString(int id, Object... formatArgs) throws NotFoundException {
74 throws NotFoundException {
79 public String getQuantityString(int id, int quantity) throws NotFoundException {
89 public CharSequence[] getTextArray(int id) throws NotFoundException {
94 public String[] getStringArray(int id) throws NotFoundException {
99 public int[] getIntArray(int id) throws NotFoundException {
104 public TypedArray obtainTypedArray(int id) throws NotFoundException {
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsMockResources.java 37 public String getResourceName(int resId) throws NotFoundException {
39 throw new NotFoundException("Resource " + resId + " not found");
45 public String getResourcePackageName(int resId) throws NotFoundException {
47 throw new NotFoundException("Resource " + resId + " not found");
53 public String getResourceTypeName(int resId) throws NotFoundException {
55 throw new NotFoundException("Resource " + resId + " not found");
61 public String getResourceEntryName(int resId) throws NotFoundException {
63 throw new NotFoundException("Resource " + resId + " not found");
  /external/javassist/src/main/javassist/tools/reflect/
Loader.java 19 import javassist.NotFoundException;
131 public Loader() throws CannotCompileException, NotFoundException {
159 throws CannotCompileException, NotFoundException
  /external/javassist/sample/rmi/
Counter.java 6 import javassist.NotFoundException;
21 throws IOException, NotFoundException, CannotCompileException
  /external/javassist/src/main/javassist/compiler/
CompileError.java 19 import javassist.NotFoundException;
39 public CompileError(NotFoundException e) {
  /frameworks/base/core/java/android/view/animation/
AnimationUtils.java 24 import android.content.res.Resources.NotFoundException;
130 * @throws NotFoundException when the animation cannot be loaded
133 throws NotFoundException {
140 NotFoundException rnf = new NotFoundException("Can't load animation resource ID #0x" +
145 NotFoundException rnf = new NotFoundException("Can't load animation resource ID #0x" +
210 * @throws NotFoundException when the layout animation controller cannot be loaded
213 throws NotFoundException {
220 NotFoundException rnf = new NotFoundException("Can't load animation resource ID #0x"
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowResources.java 67 public int getColor(int id) throws Resources.NotFoundException {
84 public String getString(int id) throws Resources.NotFoundException {
89 public String getString(int id, Object... formatArgs) throws Resources.NotFoundException {
95 public String getQuantityString(int id, int quantity, Object... formatArgs) throws Resources.NotFoundException {
101 public String getQuantityString(int id, int quantity) throws Resources.NotFoundException {
106 public InputStream openRawResource(int id) throws Resources.NotFoundException {
111 public String[] getStringArray(int id) throws Resources.NotFoundException {
114 throw new Resources.NotFoundException();
120 public CharSequence[] getTextArray(int id) throws Resources.NotFoundException {
125 public CharSequence getText(int id) throws Resources.NotFoundException {
    [all...]
  /frameworks/base/core/java/android/content/res/
CompatResources.java 45 public Drawable getDrawable(@DrawableRes int id) throws NotFoundException {
51 throws NotFoundException {
56 public int getColor(@ColorRes int id) throws NotFoundException {
61 public ColorStateList getColorStateList(@ColorRes int id) throws NotFoundException {
Resources.java 199 public static class NotFoundException extends RuntimeException {
200 public NotFoundException() {
203 public NotFoundException(String name) {
207 public NotFoundException(String name, Exception cause) {
337 * @throws NotFoundException Throws NotFoundException if the given ID does not exist.
342 @NonNull public CharSequence getText(@StringRes int id) throws NotFoundException {
347 throw new NotFoundException("String resource ID #0x"
359 * @throws NotFoundException Throws NotFoundException if the given ID does not exist
    [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 19 import android.content.res.Resources.NotFoundException;
35 throw new NotFoundException("Expecting extras");
  /external/javassist/src/main/javassist/convert/
TransformAfter.java 19 import javassist.NotFoundException;
25 throws NotFoundException
  /packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/testutils/
CarSettingsShadowResources.java 47 } catch (Resources.NotFoundException e1) {
56 } catch (Resources.NotFoundException e1) {
65 } catch (Resources.NotFoundException e1) {
  /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) {

Completed in 847 milliseconds

1 2 3 4 5 6 7 8 91011>>