Searched defs:forName (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/nio/charset/
H A DCharset.java116 * by canonical name or any of its aliases using {@link #forName}.
137 * available, just call {@link #forName} and catch the exceptions it throws if the charset isn't
212 * {@link #forName}.
274 public static Charset forName(String charsetName) { method in class:Charset
307 * Equivalent to {@code forName} but only throws {@code UnsupportedEncodingException},
314 return Charset.forName(charsetName);
333 forName(charsetName);
569 return Charset.forName(encoding);
571 return Charset.forName("UTF-8");
/libcore/luni/src/main/java/java/lang/
H A DClass.java171 public static Class<?> forName(String className) throws ClassNotFoundException { method in class:Class
172 return forName(className, true, VMStack.getCallingClassLoader());
203 public static Class<?> forName(String className, boolean initializeBoolean, method in class:Class
H A DCharacter.java1503 public static UnicodeBlock forName(String blockName) { method in class:Character.UnicodeBlock

Completed in 88 milliseconds