HomeSort by relevance Sort by last modified time
    Searched refs:ConfigurationException (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /tools/loganalysis/src/com/android/loganalysis/util/config/
ConfigurationException.java 22 public class ConfigurationException extends Exception {
26 * Creates a {@link ConfigurationException}.
30 public ConfigurationException(String msg) {
35 * Creates a {@link ConfigurationException}.
40 public ConfigurationException(String msg, Throwable cause) {
OptionUpdateRule.java 33 throws ConfigurationException {
43 throws ConfigurationException {
52 throws ConfigurationException {
68 throws ConfigurationException {
80 /** throw a {@link ConfigurationException} if this option is set more than once. */
84 throws ConfigurationException {
86 throw new ConfigurationException(String.format(
93 throws ConfigurationException;
100 throws ConfigurationException {
105 throw new ConfigurationException(String.format
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/config/
ConfigurationException.java 21 public class ConfigurationException extends Exception {
25 * Creates a {@link ConfigurationException}.
29 public ConfigurationException(String msg) {
34 * Creates a {@link ConfigurationException}.
39 public ConfigurationException(String msg, Throwable cause) {
OptionUpdateRule.java 32 throws ConfigurationException {
41 throws ConfigurationException {
50 throws ConfigurationException {
59 throws ConfigurationException {
64 /** throw a {@link ConfigurationException} if this option is set more than once. */
68 throws ConfigurationException {
71 throw new ConfigurationException(String.format(
80 throws ConfigurationException;
87 throws ConfigurationException {
92 throw new ConfigurationException(String.format
    [all...]
IConfigDefLoader.java 32 * @throws ConfigurationException if an error occurred loading the config
35 throws ConfigurationException;
45 * @throws ConfigurationException if an error occurred loading the config
48 Map<String, String> templateMap) throws ConfigurationException;
IConfigurationFactory.java 31 * with a {@code null} second argument. Thus, it will throw {@link ConfigurationException} if
36 public IConfiguration createConfigurationFromArgs(String[] args) throws ConfigurationException;
48 * {@link ConfigurationException} if any unprocessed args remain.
52 * @throws ConfigurationException if configuration could not be loaded
55 throws ConfigurationException;
67 * {@link ConfigurationException} if any unprocessed args remain.
73 * @throws ConfigurationException if configuration could not be loaded
76 IKeyStoreClient keyStoreClient) throws ConfigurationException;
89 * @throws ConfigurationException if configuration could not be loaded
92 List<String> nonGlobalArgs) throws ConfigurationException;
    [all...]
OptionNotAllowedException.java 19 * Specific {@link ConfigurationException} when an option is not allowed to be passed in the command
22 public class OptionNotAllowedException extends ConfigurationException {
IGlobalConfiguration.java 67 * @throws ConfigurationException if an {@link IDeviceMonitor} has already been set.
69 public void setDeviceMonitor(IDeviceMonitor deviceMonitor) throws ConfigurationException;
75 * @throws ConfigurationException if an {@link IHostMonitor} has already been set.
77 public void setHostMonitors(List<IHostMonitor> hostMonitors) throws ConfigurationException;
83 * @throws ConfigurationException if an {@link ITerribleFailureHandler} has
86 public void setWtfHandler(ITerribleFailureHandler wtfHandler) throws ConfigurationException;
94 * @throws ConfigurationException if any objects in the list are not the correct type
97 throws ConfigurationException;
106 * @throws ConfigurationException if failed to set the option's value
109 throws ConfigurationException;
    [all...]
IConfiguration.java 189 * @throws ConfigurationException if failed to set the option's value
192 throws ConfigurationException;
202 * @throws ConfigurationException if failed to set the option's value
205 throws ConfigurationException;
216 * @throws ConfigurationException if failed to set the option's value
219 String optionSource) throws ConfigurationException;
227 * @throws ConfigurationException if failed to set option values
229 public void injectOptionValues(List<OptionDef> optionDefs) throws ConfigurationException;
380 * @throws ConfigurationException if the configObject was not the correct type
383 throws ConfigurationException;
    [all...]
ArgsOptionParser.java 148 * @throws ConfigurationException if config objects is improperly configured.
150 public ArgsOptionParser(Collection<Object> optionSources) throws ConfigurationException {
158 * @throws ConfigurationException if config objects is improperly configured.
160 public ArgsOptionParser(Object... optionSources) throws ConfigurationException {
169 * @throws ConfigurationException if error occurred parsing the arguments.
171 public List<String> parse(String... args) throws ConfigurationException {
179 * @throws ConfigurationException if error occurred parsing the arguments.
181 public List<String> parse(List<String> args) throws ConfigurationException {
198 * A best-effort version of {@link #parse(String... args)}. If a ConfigurationException is
234 } catch (ConfigurationException e)
    [all...]
  /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/config/
ConfigurationFactoryTest.java 18 import com.android.tradefed.config.ConfigurationException;
40 public void testLoadAllConfigs() throws ConfigurationException {
48 public void testLoadAndPrintAllConfigs() throws ConfigurationException {
  /external/guice/core/src/com/google/inject/
ConfigurationException.java 34 public final class ConfigurationException extends RuntimeException {
39 /** Creates a ConfigurationException containing {@code messages}. */
40 public ConfigurationException(Iterable<Message> messages) {
46 public ConfigurationException withPartialValue(Object partialValue) {
49 ConfigurationException result = new ConfigurationException(messages);
  /tools/tradefederation/core/tests/src/com/android/tradefed/command/
CommandOptionsTest.java 20 import com.android.tradefed.config.ConfigurationException;
33 public void testGetLoopTime_minset() throws ConfigurationException {
44 public void testGetLoopTime_maxrandomset() throws ConfigurationException {
57 public void testGetLoopTime_least() throws ConfigurationException {
  /tools/tradefederation/core/tests/src/com/android/tradefed/config/
OptionSetterTest.java 262 fail("ConfigurationException not thrown");
263 } catch (ConfigurationException e) {
274 fail("ConfigurationException not thrown");
275 } catch (ConfigurationException e) {
283 public void testOptionSetter_sharedOptions() throws ConfigurationException {
296 public void testOptionSetter_sharedEnumMap() throws ConfigurationException {
325 public void testOptionSetter_sharedEnumCollection() throws ConfigurationException {
352 fail("ConfigurationException not thrown");
353 } catch (ConfigurationException e) {
361 public void testOptionSetter_namespacedClassName() throws ConfigurationException {
    [all...]
ConfigurationXmlParserTest.java 46 public void testParse() throws ConfigurationException {
68 public void testParse_globalOption() throws ConfigurationException {
91 public void testParse_multiple() throws ConfigurationException {
129 fail("ConfigurationException not thrown");
130 } catch (ConfigurationException e) {
143 fail("ConfigurationException not thrown");
144 } catch (ConfigurationException e) {
152 public void testParse_object() throws ConfigurationException {
166 public void testParse_include() throws ConfigurationException {
179 public void testParse_includeMissing() throws ConfigurationException {
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/jack/jack-api/0.9.0/
jack-api-0.9.0.jar 
  /tools/loganalysis/tests/src/com/android/loganalysis/util/config/
OptionSetterTest.java 217 fail("ConfigurationException not thrown");
218 } catch (ConfigurationException e) {
229 fail("ConfigurationException not thrown");
230 } catch (ConfigurationException e) {
238 public void testOptionSetter_sharedOptions() throws ConfigurationException {
251 public void testOptionSetter_sharedEnumMap() throws ConfigurationException {
280 public void testOptionSetter_sharedEnumCollection() throws ConfigurationException {
307 fail("ConfigurationException not thrown");
308 } catch (ConfigurationException e) {
316 public void testOptionSetter_namespacedClassName() throws ConfigurationException {
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/command/
ICommandScheduler.java 20 import com.android.tradefed.config.ConfigurationException;
76 * @throws ConfigurationException if command could not be parsed
80 public boolean addCommand(String[] args) throws ConfigurationException;
88 * @throws ConfigurationException if command file could not be parsed
92 throws ConfigurationException;
103 * @throws ConfigurationException if command was invalid
105 public boolean addCommand(String[] args, long totalExecTime) throws ConfigurationException;
113 * @throws ConfigurationException if command was invalid
117 throws ConfigurationException, NoDeviceException;
126 * @throws ConfigurationException if command was invali
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/jack/jack-api/0.13.0/
jack-api-0.13.0.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/jack/jack-api/0.12.0/
jack-api-0.12.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/jack/jack-api/0.10.0/
jack-api-0.10.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/jack/jack-api/0.11.0/
jack-api-0.11.0.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/jack/jack-api/0.11.0/
jack-api-0.11.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/jill/jill-api/0.10.0/
jill-api-0.10.0.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/jill/jill-api/0.10.0/
jill-api-0.10.0.jar 

Completed in 3947 milliseconds

1 2 3 4 5 6 7 8 9