HomeSort by relevance Sort by last modified time
    Searched refs:classNamePath (Results 1 - 5 of 5) sorted by null

  /dalvik/dx/tests/142-const-method-handle/classes/constmethodhandle/
TestGenerator.class 
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ClassNameResolver.java 28 private static <T> Class<T> safeClassForName(String classNamePath) {
30 return (Class<T>) Class.forName(classNamePath);
  /dalvik/dx/tests/142-const-method-handle/src/constmethodhandle/
TestGenerator.java 39 private final Path classNamePath;
48 public TestGenerator(Path classNamePath) {
49 this.classNamePath = classNamePath;
53 ClassReader cr = new ClassReader(new FileInputStream(classNamePath.toFile()));
65 new FileOutputStream(classNamePath.toFile()).write(cw.toByteArray());
  /dalvik/dx/tests/135-invoke-custom/src/invokecustom/
TestGenerator.java 39 private final Path classNamePath;
48 public TestGenerator(Path classNamePath) {
49 this.classNamePath = classNamePath;
53 ClassReader cr = new ClassReader(new FileInputStream(classNamePath.toFile()));
72 new FileOutputStream(classNamePath.toFile()).write(cw.toByteArray());
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DeprecatedAPIChecker.java 72 String classNamePath = className.contains(".") ? className.replace('.', '$') : className;
74 apiClassNameMap.put(packageName + "." + classNamePath, packageName + "." + className);
79 String classNamePath = classEntry.getKey();
81 Class<?> cls = Class.forName(classNamePath);
88 pw.println("## Error ## Class " + classNamePath + " is not found.");

Completed in 994 milliseconds