/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...] |
CannotCompileException.java | 92 * <code>NotFoundException</code>. 94 public CannotCompileException(NotFoundException e) {
|
CtClassType.java | 120 catch (NotFoundException e) { 134 catch (NotFoundException e) { 187 throw new NotFoundException(getName()); 199 catch (NotFoundException e) { 266 public URL getURL() throws NotFoundException { 269 throw new NotFoundException(getName()); 297 public boolean subtypeOf(CtClass clazz) throws NotFoundException { 397 public CtClass[] getNestedClasses() throws NotFoundException { 687 public CtClass getSuperclass() throws NotFoundException { 703 public CtClass[] getInterfaces() 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");
|
PrivateAttributeTest.java | 37 } catch (Resources.NotFoundException e) { 51 } catch (Resources.NotFoundException e) {
|
ResourcesTest.java | 33 import android.content.res.Resources.NotFoundException; 80 } catch (NotFoundException e) { 105 } catch (NotFoundException e) { 163 } catch (NotFoundException e) { 172 } catch (NotFoundException e) { 185 } catch (NotFoundException e) { 198 } catch (NotFoundException e) { 212 } catch (NotFoundException e) { 234 } catch (NotFoundException e) { 247 } catch (NotFoundException e) [all...] |
/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 {
|
/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/javassist/src/main/javassist/convert/ |
TransformAfter.java | 19 import javassist.NotFoundException; 25 throws NotFoundException
|
TransformCall.java | 22 import javassist.NotFoundException; 95 catch (NotFoundException e) { 100 catch (NotFoundException e) {
|
TransformReadField.java | 22 import javassist.NotFoundException; 52 catch (NotFoundException e) {} 64 catch (NotFoundException e) {}
|
/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) {
|
/external/javassist/sample/evolve/ |
Evolution.java | 37 public void start(ClassPool _pool) throws NotFoundException {
46 throws NotFoundException, CannotCompileException {
60 private void onLoadUpdatable(String classname) throws NotFoundException,
78 throw new NotFoundException(classname, e);
88 public void makeUpdatable(String classname) throws NotFoundException,
103 throws CannotCompileException, NotFoundException {
170 int version) throws CannotCompileException, NotFoundException {
|
/external/javassist/sample/vector/ |
VectorAssistant.java | 70 catch (NotFoundException e) { 85 throws CannotCompileException, NotFoundException, IOException 110 throws CannotCompileException, NotFoundException, IOException
|
/cts/tests/tests/content/src/android/content/cts/ |
ContextTest.java | 28 import android.content.res.Resources.NotFoundException; 60 } catch (NotFoundException e) { 67 } catch (NotFoundException e) { 79 } catch (NotFoundException e) {
|