Home
last modified time | relevance | path

Searched refs:nonGlobalArgs (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DGlobalConfigurationTest.java91 List<String> nonGlobalArgs = new ArrayList<String>(args.length); in testCreateGlobalConfiguration_empty() local
96 ArrayUtil.buildArray(new String[] {globalConfigPath}, args), nonGlobalArgs); in testCreateGlobalConfiguration_empty()
97 assertTrue(nonGlobalArgs.size() == 0); in testCreateGlobalConfiguration_empty()
130 List<String> nonGlobalArgs = new ArrayList<String>(args.length); in testCreateGlobalConfiguration_nonEmpty() local
142 ArrayUtil.buildArray(new String[] {globalConfigPath}, args), nonGlobalArgs); in testCreateGlobalConfiguration_nonEmpty()
150 assertTrue(nonGlobalArgs.size() == 2); in testCreateGlobalConfiguration_nonEmpty()
160 List<String> nonGlobalArgs = new ArrayList<String>(); in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault() local
173 ArrayUtil.buildArray(new String[] {globalConfigPath}, args), nonGlobalArgs); in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault()
186 nonGlobalArgs); in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault()
204 List<String> nonGlobalArgs = new ArrayList<String>(); in testCreateGlobalConfiguration_cloneConfigWithFilter() local
[all …]
/tools/tradefederation/core/src/com/android/tradefed/config/
DGlobalConfiguration.java155 List<String> nonGlobalArgs = new ArrayList<String>(args.length); in createGlobalConfiguration() local
164 configFactory.createGlobalConfigurationFromArgs(arrayArgs, nonGlobalArgs); in createGlobalConfiguration()
176 configFactory.createGlobalConfigurationFromArgs(arrayArgs, nonGlobalArgs); in createGlobalConfiguration()
185 return nonGlobalArgs; in createGlobalConfiguration()
DIConfigurationFactory.java92 List<String> nonGlobalArgs) throws ConfigurationException; in createGlobalConfigurationFromArgs() argument
/tools/tradefederation/core/src/com/android/tradefed/command/
DConsole.java1152 List<String> nonGlobalArgs = GlobalConfiguration.createGlobalConfiguration(args); in startConsole() local
1154 console.setArgs(nonGlobalArgs); in startConsole()