Searched defs:classname (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DNotSerializableException.java43 * @param classname Class of the instance being serialized/deserialized.
45 public NotSerializableException(String classname) { argument
46 super(classname);
H A DObjectStreamException.java41 * @param classname the detailed message for the exception
43 protected ObjectStreamException(String classname) { argument
44 super(classname);
H A DInvalidClassException.java50 public String classname; field in class:InvalidClassException
69 classname = cname;
73 * Produce the message and include the classname, if present.
76 if (classname == null)
79 return classname + "; " + super.getMessage();
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldDriverPropertyInfoTest.java31 static final String classname = "SQLite.JDBCDriver"; field in class:OldDriverPropertyInfoTest
50 Class.forName(classname).newInstance();
/libcore/luni/src/main/java/javax/xml/validation/
H A DSchemaFactoryFinder.java396 * <p>Search the specified classloader for the given classname.</p>
398 * @param classname the fully qualified name of the class to search for
403 private static String which(String classname, ClassLoader loader) { argument
404 String classnameAsResource = classname.replace('.', '/') + ".class";
/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPathFactoryFinder.java356 * <p>Search the specified classloader for the given classname.</p>
358 * @param classname the fully qualified name of the class to search for
363 private static String which(String classname, ClassLoader loader) { argument
364 String classnameAsResource = classname.replace('.', '/') + ".class";
/libcore/ojluni/src/main/native/
H A Djni_util.c935 JNU_IsInstanceOfByName(JNIEnv *env, jobject object, char* classname) argument
940 cls = (*env)->FindClass(env, classname);
1208 const char *classname,
1221 cls = (*env)->FindClass(env, classname);
1275 const char *classname,
1287 cls = (*env)->FindClass(env, classname);
1206 JNU_GetStaticFieldByName(JNIEnv *env, jboolean *hasException, const char *classname, const char *name, const char *signature) argument
1273 JNU_SetStaticFieldByName(JNIEnv *env, jboolean *hasException, const char *classname, const char *name, const char *signature, ...) argument

Completed in 271 milliseconds