Lines Matching refs:names
235 final String[] names = getModulesFromSourceRoot(); in getAllModuleCommand() local
236 checkModules = getCheckModuleCommand(names); in getAllModuleCommand()
241 private String[] getCheckModuleCommand(String[] names) in getCheckModuleCommand() argument
244 checkModules = new String[names.length]; in getCheckModuleCommand()
246 for (int i = 0; i < names.length; i++) in getCheckModuleCommand()
249 if (names[i].indexOf(".") != -1) in getCheckModuleCommand()
251 … checkModules[i] = "checkModule(" + names[i].substring(0, names[i].indexOf(".")) + ")"; in getCheckModuleCommand()
255 checkModules[i] = "checkModule(" + names[i] + ")"; in getCheckModuleCommand()
305 String[] names = null; in getCwsModuleCommand() local
327 names = (String[]) moduleNames.toArray(new String[0]); in getCwsModuleCommand()
339 names = getModulesFromSourceRoot(); in getCwsModuleCommand()
341 checkModules = getCheckModuleCommand(names); in getCwsModuleCommand()
352 final String[] names = module.split(","); in getDefinedModuleCommand() local
353 checkModules = new String[names.length]; in getDefinedModuleCommand()
354 for (int i = 0; i < names.length; i++) in getDefinedModuleCommand()
356 final String moduleName = names[i].trim(); in getDefinedModuleCommand()
521 final String[] names = (String[]) moduleNames.toArray(new String[0]); in getModulesFromSourceRoot() local
522 return names; in getModulesFromSourceRoot()