Home
last modified time | relevance | path

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

/development/tools/idegen/src/com/android/idegen/
DModuleIndexes.java40 private File indexFile; field in ModuleIndexes
44 public ModuleIndexes(File indexFile) { in ModuleIndexes() argument
45 this.indexFile = indexFile; in ModuleIndexes()
52 logger.info("Building index from " + indexFile.getCanonicalPath()); in build()
53 Files.readLines(indexFile, Charset.forName("UTF-8"), in build()
DIntellijProject.java48 File indexFile; field in IntellijProject
52 public IntellijProject(String indexFile, String projectPath, ArrayList<String> moduleDirs, in IntellijProject() argument
54 this.indexFile = new File(Preconditions.checkNotNull(indexFile)); in IntellijProject()
58 DirectorySearch.findAndInitRepoRoot(this.indexFile); in IntellijProject()
62 cache.init(indexFile); in build()
207 String indexFile = args[argIndex++]; in main() local
215 IntellijProject intellij = new IntellijProject(indexFile, projectPath, moduleDirs, in main()
DModuleCache.java49 public void init(File indexFile) throws IOException { in init() argument
50 indexes = new ModuleIndexes(indexFile); in init()