HomeSort by relevance Sort by last modified time
    Searched refs:ClassNotFoundException (Results 26 - 50 of 588) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/android-mock/src/com/google/android/testing/mocking/
AndroidFrameworkMockGenerator.java 57 public List<GeneratedClassFile> getMocksForClass(Class<?> clazz) throws ClassNotFoundException,
66 throw new ClassNotFoundException("Missing class while fetching prebuilt mocks: "
76 private List<Class<?>> getPrebuiltClassesFor(Class<?> clazz) throws ClassNotFoundException {
91 throws ClassNotFoundException, IOException, CannotCompileException {
101 List<Class<?>> getClassList(JarFile jar) throws ClassNotFoundException {
105 List<Class<?>> getClassList(Collection<JarEntry> jarEntries) throws ClassNotFoundException {
138 throws ClassNotFoundException, IOException, CannotCompileException {
AndroidMockGenerator.java 82 * @throws ClassNotFoundException
87 throws ClassNotFoundException, IOException, CannotCompileException {
92 throws ClassNotFoundException, IOException, CannotCompileException {
150 void saveCtClass(CtClass clazz) throws ClassNotFoundException, IOException {
154 throw new ClassNotFoundException("Error while saving modified class " + clazz.getName(), e);
235 throws ClassNotFoundException {
240 throw new ClassNotFoundException("This should be impossible, since we just checked for "
250 throw new ClassNotFoundException("Could not find " + MockObject.class.getName(), e);
260 private void addConstructors(CtClass clazz, Class<?> superClass) throws ClassNotFoundException {
281 CtClass getCtClassForClass(Class<?> clazz) throws ClassNotFoundException {
    [all...]
  /external/android-mock/tests/com/google/android/testing/mocking/
ClassTypeTests.java 138 public void testClassIsDuplicate() throws ClassNotFoundException, IOException,
147 public void testClassHasDelegateMethods() throws ClassNotFoundException, IOException,
165 public void testClassHasFinalMethods() throws ClassNotFoundException, IOException,
179 public void testClassHasNoDefaultConstructor() throws ClassNotFoundException, IOException,
187 public void testClassHasNoPublicConstructors() throws ClassNotFoundException, IOException,
195 public void testClassHasOverloadedMethods() throws ClassNotFoundException, IOException,
208 public void testClassHasStaticMethods() throws ClassNotFoundException, IOException,
222 public void testClassIsAnnotation() throws ClassNotFoundException, IOException,
229 public void testClassIsEnum() throws ClassNotFoundException, IOException, CannotCompileException {
235 public void testClassIsFinal() throws ClassNotFoundException, IOException
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ClassTest.java 109 } catch (ClassNotFoundException e) {
115 } catch (ClassNotFoundException e) {
120 } catch (ClassNotFoundException e) {
126 } catch (ClassNotFoundException e) {
132 } catch (ClassNotFoundException e) {
137 } catch (ClassNotFoundException e) {
143 } catch (ClassNotFoundException e) {
148 } catch (ClassNotFoundException e) {
153 } catch (ClassNotFoundException e) {
159 fail("should throw ClassNotFoundException.")
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest1.java 114 throws java.io.IOException, ClassNotFoundException {
139 throws java.io.IOException, ClassNotFoundException {
174 throws java.io.IOException, ClassNotFoundException {
191 throws java.io.IOException, ClassNotFoundException {
286 throws java.io.IOException, ClassNotFoundException {
291 throws java.io.IOException, ClassNotFoundException {
310 throws java.io.IOException, ClassNotFoundException {
315 throws java.io.IOException, ClassNotFoundException {
348 throws java.io.IOException, ClassNotFoundException {
353 throws java.io.IOException, ClassNotFoundException {
    [all...]
SerializationStressTest3.java 341 throws java.io.IOException, ClassNotFoundException {
349 throws java.io.IOException, ClassNotFoundException {
387 } catch (ClassNotFoundException e) {
416 } catch (ClassNotFoundException e) {
417 fail("ClassNotFoundException reading Object type : "
445 } catch (ClassNotFoundException e) {
446 fail("ClassNotFoundException reading Object type : "
474 } catch (ClassNotFoundException e) {
475 fail("ClassNotFoundException reading Object type : "
503 } catch (ClassNotFoundException e)
    [all...]
ObjectInputStream2Test.java 38 public void test_readUnshared() throws IOException, ClassNotFoundException {
64 ClassNotFoundException {
149 void test() throws ClassNotFoundException, IOException {
155 public void test_readClassDescriptor() throws ClassNotFoundException,
173 throws IOException, ClassNotFoundException {
SerializationStressTest4.java 77 } catch (ClassNotFoundException e) {
78 fail("ClassNotFoundException reading Object type : "
109 } catch (ClassNotFoundException e) {
110 fail("ClassNotFoundException reading Object type : "
142 } catch (ClassNotFoundException e) {
143 fail("ClassNotFoundException reading Object type : "
171 } catch (ClassNotFoundException e) {
172 fail("ClassNotFoundException reading Object type : "
210 } catch (ClassNotFoundException e) {
211 fail("ClassNotFoundException reading Object type :
    [all...]
SerializationStressTest2.java 55 throws java.io.IOException, ClassNotFoundException {
113 throws java.io.IOException, ClassNotFoundException {
120 throws java.io.IOException, ClassNotFoundException {
143 throws java.io.IOException, ClassNotFoundException {
148 throws java.io.IOException, ClassNotFoundException {
164 throws java.io.IOException, ClassNotFoundException {
169 throws java.io.IOException, ClassNotFoundException {
207 ClassNotFoundException {
231 ClassNotFoundException {
599 throws IOException, ClassNotFoundException {
    [all...]
  /dalvik/tests/086-null-super/src/
Main.java 98 } catch (ClassNotFoundException cnfe) {
112 throws ClassNotFoundException
138 throws TestFailed, ClassNotFoundException {
  /dalvik/tests/087-gc-after-link/src/
Main.java 107 } catch (ClassNotFoundException cnfe) {
121 throws ClassNotFoundException
147 throws TestFailed, ClassNotFoundException {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
RobolectricClassLoader.java 53 public Class loadClass(String name) throws ClassNotFoundException {
72 } catch (ClassNotFoundException e) {
78 protected Class findClass(String name) throws ClassNotFoundException {
  /external/apache-harmony/annotation/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationTypeMismatchExceptionTest.java 31 * @throws ClassNotFoundException
37 public void test_constructorLjava_lang_reflect_MethodLjava_lang_String() throws SecurityException, ClassNotFoundException {
  /external/javassist/src/main/javassist/tools/reflect/
CannotInvokeException.java 62 * Constructs a CannotInvokeException with an ClassNotFoundException.
64 public CannotInvokeException(ClassNotFoundException e) {
  /frameworks/base/tools/preload/
PrintPsTree.java 28 throws IOException, ClassNotFoundException {
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidSerializationTest.java 34 public void testSerialization() throws IOException, ClassNotFoundException {
  /packages/apps/Email/src/org/apache/commons/io/input/
ClassLoaderObjectInputStream.java 62 * @throws ClassNotFoundException if the Class cannot be found
65 throws IOException, ClassNotFoundException {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
IAndroidClassLoader.java 69 * @throws ClassNotFoundException
71 public IClassDescriptor getClass(String className) throws ClassNotFoundException;
AndroidJarLoader.java 289 protected Class<?> findClass(String name) throws ClassNotFoundException {
293 if (cached_class == ClassNotFoundException.class) {
295 throw new ClassNotFoundException(name);
307 mClassCache.put(name, ClassNotFoundException.class);
308 throw new ClassNotFoundException(name);
310 } catch (ClassNotFoundException e) {
313 throw new ClassNotFoundException(e.getMessage());
439 * @throws ClassNotFoundException
442 public IClassDescriptor getClass(String className) throws ClassNotFoundException {
445 } catch (ClassNotFoundException e)
    [all...]
  /dalvik/tests/068-classloader/src/
Main.java 72 } catch (ClassNotFoundException cnfe) {
103 } catch (ClassNotFoundException cnfe) {
123 } catch (ClassNotFoundException cnfe) {
146 } catch (ClassNotFoundException cnfe) {
193 } catch (ClassNotFoundException cnfe) {
241 } catch (ClassNotFoundException cnfe) {
287 } catch (ClassNotFoundException cnfe) {
334 } catch (ClassNotFoundException cnfe) {
395 } catch (ClassNotFoundException cnfe) {
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ObjectFactory.java 61 throws ClassNotFoundException, ConfigurationError
92 } catch (ClassNotFoundException x) {
  /external/javassist/src/main/javassist/bytecode/annotation/
ClassMemberValue.java 64 throws ClassNotFoundException {
88 Class getType(ClassLoader cl) throws ClassNotFoundException {
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
BridgeInflater.java 79 public View onCreateView(String name, AttributeSet attrs) throws ClassNotFoundException {
90 } catch (ClassNotFoundException e) {
101 } catch (ClassNotFoundException e) {
110 } catch (ClassNotFoundException e) {
116 // Wrap the real exception in a ClassNotFoundException, so that the calling method
118 ClassNotFoundException exception = new ClassNotFoundException("onCreateView", e);
140 if (e2.getClass().equals(ClassNotFoundException.class) == false) {
197 private View loadCustomView(String name, AttributeSet attrs) throws ClassNotFoundException,
  /libcore/dalvik/src/main/java/dalvik/system/
BaseDexClassLoader.java 50 protected Class<?> findClass(String name) throws ClassNotFoundException {
53 throw new ClassNotFoundException("Didn't find class \"" + name + "\" on path: " + pathList);
  /external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidationContentHandler.java 120 } catch (ClassNotFoundException cnfException) {
170 * @throws ClassNotFoundException
175 throws ClassNotFoundException {
206 } catch (ClassNotFoundException cnfException) {

Completed in 1807 milliseconds

12 3 4 5 6 7 8 91011>>