Home
last modified time | relevance | path

Searched refs:sourcePath (Results 1 – 2 of 2) sorted by relevance

/cts/tools/cts-java-scanner/src/com/android/cts/javascanner/
DDocletRunner.java73 List<String> sourcePath = new ArrayList<String>(); in getSourcePath() local
74 sourcePath.add("./frameworks/base/core/java"); in getSourcePath()
75 sourcePath.add("./frameworks/base/test-runner/src"); in getSourcePath()
76 sourcePath.add("./external/junit/src"); in getSourcePath()
77 sourcePath.add("./development/tools/hosttestlib/src"); in getSourcePath()
78 sourcePath.add("./libcore/dalvik/src/main/java"); in getSourcePath()
79 sourcePath.add("./cts/tests/src"); in getSourcePath()
80 sourcePath.add("./cts/libs/commonutil/src"); in getSourcePath()
81 sourcePath.add("./cts/libs/deviceutil/src"); in getSourcePath()
83 sourcePath.add(sourceDir.toString()); in getSourcePath()
[all …]
/cts/common/host-side/java-scanner/src/com/android/compatibility/common/scanner/
DJavaScanner.java96 final ArrayList<String> sourcePath = new ArrayList<String>(Arrays.asList(SOURCE_PATHS)); in getSourcePath() local
97 sourcePath.add(sourceDir.toString()); in getSourcePath()
98 return join(sourcePath, ":"); in getSourcePath()
135 final String sourcePath = argsMap.get("-s"); in main() local
137 if (sourcePath == null || docletPath == null) { in main()
140 System.exit(new JavaScanner(new File(sourcePath), new File(docletPath)).scan()); in main()