Lines Matching refs:names
236 final String[] names = getModulesFromSourceRoot(); in getAllModuleCommand() local
237 checkModules = getCheckModuleCommand(names); in getAllModuleCommand()
242 private String[] getCheckModuleCommand(String[] names) in getCheckModuleCommand() argument
245 checkModules = new String[names.length]; in getCheckModuleCommand()
247 for (int i = 0; i < names.length; i++) in getCheckModuleCommand()
250 if (names[i].indexOf(".") != -1) in getCheckModuleCommand()
252 … checkModules[i] = "checkModule(" + names[i].substring(0, names[i].indexOf(".")) + ")"; in getCheckModuleCommand()
256 checkModules[i] = "checkModule(" + names[i] + ")"; in getCheckModuleCommand()
306 String[] names = null; in getCwsModuleCommand() local
328 names = (String[]) moduleNames.toArray(new String[0]); in getCwsModuleCommand()
340 names = getModulesFromSourceRoot(); in getCwsModuleCommand()
342 checkModules = getCheckModuleCommand(names); in getCwsModuleCommand()
353 final String[] names = module.split(","); in getDefinedModuleCommand() local
354 checkModules = new String[names.length]; in getDefinedModuleCommand()
355 for (int i = 0; i < names.length; i++) in getDefinedModuleCommand()
357 final String moduleName = names[i].trim(); in getDefinedModuleCommand()
522 final String[] names = (String[]) moduleNames.toArray(new String[0]); in getModulesFromSourceRoot() local
523 return names; in getModulesFromSourceRoot()