HomeSort by relevance Sort by last modified time
    Searched refs:ClassNotFoundException (Results 51 - 75 of 618) sorted by null

1 23 4 5 6 7 8 91011>>

  /libcore/libdvm/src/main/java/java/lang/
ClassLoader.java 321 * Overridden by subclasses, throws a {@code ClassNotFoundException} by
328 * @throws ClassNotFoundException
331 protected Class<?> findClass(String className) throws ClassNotFoundException {
332 throw new ClassNotFoundException(className);
360 * @throws ClassNotFoundException
363 protected final Class<?> findSystemClass(String className) throws ClassNotFoundException {
453 * @throws ClassNotFoundException
456 public Class<?> loadClass(String className) throws ClassNotFoundException {
483 * @throws ClassNotFoundException
486 protected Class<?> loadClass(String className, boolean resolve) throws ClassNotFoundException {
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
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...]
ObjectOutputStream2Test.java 46 public void test_writeReadEnum() throws IOException, ClassNotFoundException {
  /libcore/libart/src/main/java/java/lang/
ClassLoader.java 333 * Overridden by subclasses, throws a {@code ClassNotFoundException} by
340 * @throws ClassNotFoundException
343 protected Class<?> findClass(String className) throws ClassNotFoundException {
344 throw new ClassNotFoundException(className);
372 * @throws ClassNotFoundException
375 protected final Class<?> findSystemClass(String className) throws ClassNotFoundException {
465 * @throws ClassNotFoundException
468 public Class<?> loadClass(String className) throws ClassNotFoundException {
495 * @throws ClassNotFoundException
498 protected Class<?> loadClass(String className, boolean resolve) throws ClassNotFoundException {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
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...]
  /external/android-mock/src/com/google/android/testing/mocking/
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/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidationContentHandler.java 120 } catch (ClassNotFoundException cnfException) {
170 * @throws ClassNotFoundException
175 throws ClassNotFoundException {
206 } catch (ClassNotFoundException cnfException) {
  /external/javassist/src/main/javassist/runtime/
Desc.java 37 throws ClassNotFoundException
54 catch (ClassNotFoundException e) {
154 catch (ClassNotFoundException e) {
  /external/javassist/src/main/javassist/tools/web/
Viewer.java 113 throws ClassNotFoundException
120 throw new ClassNotFoundException(name);
138 protected Class findClass(String name) throws ClassNotFoundException {
  /frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
TestCaseCollector.java 49 * @throws ClassNotFoundException
51 public void addTestClasses(List<String> classNames) throws ClassNotFoundException {
63 * @throws ClassNotFoundException
65 public void addTestClass(String className) throws ClassNotFoundException {
81 * @throws ClassNotFoundException
83 public void addTestClass(String className, String methodName) throws ClassNotFoundException {
  /libcore/luni/src/test/java/libcore/util/
SerializationTester.java 88 private static Object deserialize(byte[] bytes) throws IOException, ClassNotFoundException {
114 public static Object reserialize(Object object) throws IOException, ClassNotFoundException {
122 public static Object deserializeHex(String hex) throws IOException, ClassNotFoundException {
  /libcore/luni/src/main/java/java/io/
ObjectInputStream.java 444 * @throws ClassNotFoundException
452 public void defaultReadObject() throws IOException, ClassNotFoundException,
623 * @throws ClassNotFoundException
627 private void discardData() throws ClassNotFoundException, IOException {
650 * @throws ClassNotFoundException
654 private ObjectStreamClass readClassDesc() throws ClassNotFoundException, IOException {
690 * @throws ClassNotFoundException
694 private Object readContent(byte tc) throws ClassNotFoundException,
739 * @throws ClassNotFoundException
744 throws ClassNotFoundException, IOException
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
Platform.java 48 } catch (ClassNotFoundException e) {
  /external/javassist/src/main/javassist/
CannotCompileException.java 107 * with a <code>ClassNotFoundException</code>.
109 public CannotCompileException(ClassNotFoundException e, String name) {
CtMember.java 34 throws ClassNotFoundException { return null; }
36 throws ClassNotFoundException { return null; }
227 public abstract Object getAnnotation(Class clz) throws ClassNotFoundException;
239 public abstract Object[] getAnnotations() throws ClassNotFoundException;
  /external/objenesis/main/src/org/objenesis/instantiator/jrockit/
JRockitLegacyInstantiator.java 46 catch(ClassNotFoundException e) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/
ClassNameResolver.java 37 } catch (ClassNotFoundException e) {
  /frameworks/base/core/java/com/android/internal/policy/
PolicyManager.java 40 } catch (ClassNotFoundException ex) {
  /frameworks/base/policy/src/com/android/internal/policy/impl/
Policy.java 53 } catch (ClassNotFoundException ex) {
  /libcore/luni/src/main/java/java/util/prefs/
NodeChangeEvent.java 91 private void readObject (ObjectInputStream in) throws IOException, ClassNotFoundException {
  /libcore/luni/src/main/java/javax/crypto/
SealedObject.java 59 private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException {
145 * @throws ClassNotFoundException
153 throws IOException, ClassNotFoundException,
204 * @throws ClassNotFoundException
214 throws IOException, ClassNotFoundException,
237 * @throws ClassNotFoundException
247 throws IOException, ClassNotFoundException,
  /libcore/luni/src/main/java/org/xml/sax/helpers/
NewInstance.java 42 throws ClassNotFoundException, IllegalAccessException,
  /packages/apps/Launcher3/src/com/android/launcher3/
AppFilter.java 20 } catch (ClassNotFoundException e) {

Completed in 2605 milliseconds

1 23 4 5 6 7 8 91011>>