Home
last modified time | relevance | path

Searched refs:config_parser (Results 1 – 25 of 64) sorted by relevance

123

/external/nullaway/jar-infer/scripts/
Dandroid-jar.py13 config_parser = ConfigParser.SafeConfigParser() variable
14 config_parser.read(options.config)
15 ajars_dir = config_parser.get('android-paths', 'aosp-out-dir')
16 stubs_jar = config_parser.get('android-paths', 'android-stubs-jar')
17 jarinfer = config_parser.get('jar-infer-paths', 'jar-infer-path')
18 wrk_dir = config_parser.get('android-model', 'wrk-dir')
19 astubx_file = config_parser.get('android-model', 'astubx-path')
/external/python/mobly/tests/mobly/
Dconfig_parser_test.py21 from mobly import config_parser
44 config = config_parser._load_config_file(tmp_file_path)
56 config = config_parser._load_config_file(tmp_file_path)
60 config = config_parser.TestRunConfig()
65 config = config_parser.TestRunConfig()
73 config = config_parser.TestRunConfig()
Dtest_suite_test.py22 from mobly import config_parser
36 self.mock_test_cls_configs = config_parser.TestRunConfig()
44 self.base_mock_test_config = config_parser.TestRunConfig()
/external/python/mobly/mobly/
Dsuite_runner.py75 from mobly import config_parser
214 config = config_parser.TestRunConfig()
241 cls = test_class(config_parser.TestRunConfig())
273 test_configs = config_parser.load_test_config_file(
330 test_configs = config_parser.load_test_config_file(args.config, args.test_bed)
/external/pandora/avatar/avatar/
Drunner.py25 from mobly import config_parser
35 test_run_configs: List[config_parser.TestRunConfig] = []
54 self.test_run_configs += config_parser.load_test_config_file(str(path)) # type: ignore
88 cls = test_class(config_parser.TestRunConfig())
/external/chromium-crossbench/crossbench/probes/
Dpolling.py34 def config_parser(cls) -> ProbeConfigParser: member in PollingProbe
35 parser = super().config_parser()
86 def config_parser(cls) -> ProbeConfigParser: member in ShellPollingProbe
87 parser = super().config_parser()
Dprobe.py95 def config_parser(cls) -> ProbeConfigParser: member in Probe
100 return cls.config_parser().parse(config_data)
104 return cls.config_parser().help
108 return cls.config_parser().summary
Ddump_html.py30 def config_parser(cls) -> ProbeConfigParser: member in DumpHtmlProbe
31 parser = super().config_parser()
Dscreenshot.py33 def config_parser(cls) -> ProbeConfigParser: member in ScreenshotProbe
34 parser = super().config_parser()
Dandroid_logcat.py31 def config_parser(cls) -> ProbeConfigParser: member in AndroidLogcatProbe
32 parser = super().config_parser()
/external/chromium-crossbench/crossbench/cli/config/
Dnetwork.py96 return cls.config_parser().parse(config)
99 def config_parser(cls) -> ConfigParser[NetworkSpeedConfig]: member in NetworkSpeedConfig
126 return cls.config_parser().help
151 def config_parser(cls) -> ConfigParser[NetworkConfig]: member in NetworkConfig
172 return cls.config_parser().help
246 return cls.config_parser().parse(config, **kwargs)
Dsecrets.py55 def config_parser(cls: Type[Secret]) -> ConfigParser[Secret]: member in Secret
73 return cls.config_parser().parse(config, **kwargs)
/external/python/mobly/tests/lib/
Dmock_instrumentation_test.py18 from mobly import config_parser
31 mock_test_run_configs = config_parser.TestRunConfig()
/external/chromium-crossbench/crossbench/action_runner/action/
Dbase_duration.py52 def config_parser(cls: Type[ActionT]) -> ConfigParser[ActionT]: member in DurationAction
53 parser = super().config_parser()
Dwait_for_ready_state.py26 def config_parser(cls: Type[ActionT]) -> ConfigParser[ActionT]: member in WaitForReadyStateAction
27 parser = super().config_parser()
Dwait_for_element.py26 def config_parser(cls: Type[ActionT]) -> ConfigParser[ActionT]: member in WaitForElementAction
27 parser = super().config_parser()
Dbase_input_source.py23 def config_parser(cls: Type[ActionT]) -> ConfigParser[ActionT]: member in InputSourceAction
24 parser = super().config_parser()
Dtext_input.py27 def config_parser(cls: Type[ActionT]) -> ConfigParser[ActionT]: member in TextInputAction
28 parser = super().config_parser()
Dswitch_tab.py27 def config_parser(cls: Type[ActionT]) -> ConfigParser[ActionT]: member in SwitchTabAction
28 parser = super().config_parser()
Dscroll.py27 def config_parser(cls: Type[ActionT]) -> ConfigParser[ActionT]: member in ScrollAction
28 parser = super().config_parser()
Dswipe.py26 def config_parser(cls: Type[ActionT]) -> ConfigParser[ActionT]: member in SwipeAction
27 parser = super().config_parser()
/external/chromium-crossbench/crossbench/decor/
Dbase.py37 def config_parser(cls) -> DecoratorConfigParser: member in Decorator
42 return cls.config_parser().parse(config_data)
46 return str(cls.config_parser())
/external/autotest/client/common_lib/
Dglobal_config.py167 cfgparser = seven.config_parser()
332 self.config = seven.config_parser()
343 moblab_config = seven.config_parser()
353 shadow_config = seven.config_parser()
/external/chromium-crossbench/tests/crossbench/probes/
Dtest_js.py30 probe = JSProbe.config_parser().parse(config)
41 probe = JSProbe.config_parser().parse(config)
Dtest_probe.py143 config_parser = probe_cls.config_parser()
144 self.assertEqual(config_parser.probe_cls, probe_cls)

123