Lines Matching refs:module
58 Module module = getModule(moduleDir); in getAndCacheByDir() local
59 if (module == null) { in getAndCacheByDir()
60 module = new Module(moduleDir); in getAndCacheByDir()
62 putModule(moduleDir, module); in getAndCacheByDir()
63 module.build(); in getAndCacheByDir()
65 return module; in getAndCacheByDir()
89 private void putModule(File moduleDir, Module module) throws IOException { in putModule() argument
90 modulesByPath.put(moduleDir.getCanonicalPath(), module); in putModule() local
101 public void put(Module module) throws IOException { in put() argument
102 Preconditions.checkNotNull(module); in put()
103 putModule(module.getDir(), module); in put() local