/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/ |
IgnorableClassNotFoundException.java | 3 import javassist.NotFoundException; 5 public class IgnorableClassNotFoundException extends NotFoundException { 6 public IgnorableClassNotFoundException(NotFoundException e) {
|
AndroidTranslator.java | 59 public void start(ClassPool classPool) throws NotFoundException, CannotCompileException { 63 private void injectClassHandlerToInstrumentedClasses(ClassPool classPool) throws NotFoundException, CannotCompileException { 79 public void onLoad(ClassPool classPool, String className) throws NotFoundException, CannotCompileException { 92 } catch (NotFoundException e) { 139 private void replaceClassWithFromAndroidEquivalent(ClassPool classPool, String className) throws NotFoundException { 193 } catch (NotFoundException e) { 203 private void fixConstructors(CtClass ctClass) throws CannotCompileException, NotFoundException { 230 private boolean fixConstructor(CtClass ctClass, boolean needsDefault, CtConstructor ctConstructor) throws NotFoundException, CannotCompileException { 236 private String generateConstructorBody(CtClass ctClass, CtClass[] parameterTypes) throws NotFoundException { 245 private void fixMethods(CtClass ctClass) throws NotFoundException, CannotCompileException [all...] |
/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...] |
ClassPoolTail.java | 78 JarDirClassPath(String dirName) throws NotFoundException { 93 public InputStream openClassfile(String classname) throws NotFoundException { 126 JarClassPath(String pathname) throws NotFoundException { 134 throw new NotFoundException(pathname); 138 throws NotFoundException 149 throw new NotFoundException("broken jar file?: " 242 throws NotFoundException 248 throws NotFoundException 254 throws NotFoundException 283 throws NotFoundException, IOException, CannotCompileExceptio [all...] |
ClassPool.java | 386 throws NotFoundException 390 throw new NotFoundException(orgName); 431 public CtClass get(String classname) throws NotFoundException { 439 throw new NotFoundException(classname); 472 catch (NotFoundException e){} 500 public CtClass getCtClass(String classname) throws NotFoundException { 513 throws NotFoundException 597 catch (NotFoundException e) {} 622 catch (NotFoundException e) {} 630 InputStream openClassfile(String classname) throws NotFoundException { [all...] |
/frameworks/base/test-runner/src/android/test/mock/ |
MockResources.java | 51 public CharSequence getText(int id) throws NotFoundException { 56 public CharSequence getQuantityText(int id, int quantity) throws NotFoundException { 61 public String getString(int id) throws NotFoundException { 66 public String getString(int id, Object... formatArgs) throws NotFoundException { 72 throws NotFoundException { 77 public String getQuantityString(int id, int quantity) throws NotFoundException { 87 public CharSequence[] getTextArray(int id) throws NotFoundException { 92 public String[] getStringArray(int id) throws NotFoundException { 97 public int[] getIntArray(int id) throws NotFoundException { 102 public TypedArray obtainTypedArray(int id) 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 = null; 30 ne = new NotFoundException(); 32 } catch (NotFoundException e) { 38 fail("should throw out NotFoundException"); 48 ne = new NotFoundException(MESSAGE); 50 } catch (NotFoundException e) { 57 fail("should throw out 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 {
|
/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
|
Reflection.java | 103 public void start(ClassPool pool) throws NotFoundException { 116 catch (NotFoundException e) { 126 throws CannotCompileException, NotFoundException 147 throws CannotCompileException, NotFoundException 173 throws CannotCompileException, NotFoundException 200 NotFoundException 239 throws CannotCompileException, NotFoundException 276 throws CannotCompileException, NotFoundException 289 throws CannotCompileException, NotFoundException 336 throws NotFoundException [all...] |
/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) {
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowResources.java | 65 public int getColor(int id) throws Resources.NotFoundException { 82 public String getString(int id) throws Resources.NotFoundException { 87 public String getString(int id, Object... formatArgs) throws Resources.NotFoundException { 93 public String getQuantityString(int id, int quantity, Object... formatArgs) throws Resources.NotFoundException { 99 public String getQuantityString(int id, int quantity) throws Resources.NotFoundException { 104 public InputStream openRawResource(int id) throws Resources.NotFoundException { 109 public String[] getStringArray(int id) throws Resources.NotFoundException { 112 throw new Resources.NotFoundException(); 118 public CharSequence[] getTextArray(int id) throws Resources.NotFoundException { 123 public CharSequence getText(int id) throws Resources.NotFoundException { [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/ |
BridgeResources.java | 156 public Drawable getDrawable(int id) throws NotFoundException { 163 // id was not found or not resolved. Throw a NotFoundException. 171 public int getColor(int id) throws NotFoundException { 184 // id was not found or not resolved. Throw a NotFoundException. 192 public ColorStateList getColorStateList(int id) throws NotFoundException { 203 // id was not found or not resolved. Throw a NotFoundException. 211 public CharSequence getText(int id) throws NotFoundException { 226 // id was not found or not resolved. Throw a NotFoundException. 234 public XmlResourceParser getLayout(int id) throws NotFoundException { 270 // id was not found or not resolved. Throw a NotFoundException [all...] |
Resources_Theme_Delegate.java | 22 import android.content.res.Resources.NotFoundException; 47 throws NotFoundException {
|
/external/javassist/src/main/javassist/convert/ |
TransformAfter.java | 19 import javassist.NotFoundException; 25 throws NotFoundException
|
/frameworks/base/core/java/android/view/animation/ |
AnimationUtils.java | 24 import android.content.res.Resources.NotFoundException; 64 * @throws NotFoundException when the animation cannot be loaded 67 throws NotFoundException { 74 NotFoundException rnf = new NotFoundException("Can't load animation resource ID #0x" + 79 NotFoundException rnf = new NotFoundException("Can't load animation resource ID #0x" + 142 * @throws NotFoundException when the layout animation controller cannot be loaded 145 throws NotFoundException { 152 NotFoundException rnf = new NotFoundException("Can't load animation resource ID #0x" [all...] |
/frameworks/base/core/java/android/content/res/ |
Resources.java | 159 public static class NotFoundException extends RuntimeException { 160 public NotFoundException() { 163 public NotFoundException(String name) { 234 * @throws NotFoundException Throws NotFoundException if the given ID does not exist. 239 public CharSequence getText(int id) throws NotFoundException { 244 throw new NotFoundException("String resource ID #0x" 263 * @throws NotFoundException Throws NotFoundException if the given ID does not exist. 268 public CharSequence getQuantityText(int id, int quantity) throws NotFoundException { [all...] |
/external/javassist/sample/ |
Test.java | 33 catch (NotFoundException e) {
|
/external/javassist/src/main/javassist/tools/rmi/ |
StubGenerator.java | 70 public void start(ClassPool pool) throws NotFoundException { 113 throws CannotCompileException, NotFoundException 128 throws CannotCompileException, NotFoundException 168 private CtClass toCtClass(Class rtclass) throws NotFoundException { 185 private CtClass[] toCtClass(Class[] rtclasses) throws NotFoundException { 198 throws CannotCompileException, NotFoundException 236 throws CannotCompileException, NotFoundException 248 catch (NotFoundException e) {
|