Home
last modified time | relevance | path

Searched refs:classname (Results 1 – 3 of 3) sorted by relevance

/art/tools/class2greylist/test/src/com/android/javac/
DJavac.java62 private String classToFileName(String classname) { in classToFileName() argument
63 return classname.replace('.', '/'); in classToFileName()
66 public Javac addSource(String classname, String contents) { in addSource() argument
68 String.format("string:///%s.java", classToFileName(classname))), in addSource()
100 public InputStream getClassFile(String classname) throws IOException { in getClassFile() argument
102 new File(mClassOutDir, String.format("%s.class", classToFileName(classname)))); in getClassFile()
109 public JavaClass getCompiledClass(String classname) throws IOException { in getCompiledClass() argument
110 return new ClassParser(getClassFile(classname), in getCompiledClass()
111 String.format("%s.class", classToFileName(classname))).parse(); in getCompiledClass()
/art/tools/ahat/etc/
Dhprofdump.py159 classname = readID(hprof) variable
160 loaded[serial] = classname
161 classobjs[classobj] = classname
162 print "LOAD CLASS #%d %s @%x stack=@%x" % (serial, showstr(classname), classobj, stack)
/art/tools/bisection_search/
Dbisection_search.py371 base_cmd += ['-cp', classpath, args.classname] + args.test_args
379 if not args.raw_cmd and (not args.classpath or not args.classname):