Searched refs:get_option (Results 1 – 14 of 14) sorted by relevance
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | chromium.py | 94 if result and self.get_option('build'): 96 self.get_option('configuration')) 105 if self.get_option('pixel_tests'): 206 self.get_option('configuration'), 209 return self._build_path(self.get_option('configuration'), 332 return self._build_path(self.get_option('configuration'), binary_name) 343 if self._port.get_option('pixel_tests'): 348 cmd = self._command_wrapper(self._port.get_option('wrapper')) 350 if self._port.get_option('pixel_tests'): 357 if self._port.get_option('startup_dialog'): [all …]
|
D | chromium_win.py | 92 if (sys.platform in ("cygwin", "win32") and self.get_option('register_cygwin')): 127 if self.get_option('build_directory'): 128 return self._filesystem.join(self.get_option('build_directory'), 161 configuration = self.get_option('configuration') 167 return self._build_path(self.get_option('configuration'), binary_name) 171 return self._build_path(self.get_option('configuration'), binary_name)
|
D | chromium_mac.py | 118 if self.get_option('build_directory'): 119 return self._filesystem.join(self.get_option('build_directory'), 161 configuration = self.get_option('configuration') 167 return self._build_path(self.get_option('configuration'), binary_name)
|
D | webkit.py | 73 configuration = self.get_option('configuration') 84 if self.get_option('build') and not self._build_driver(): 88 if self.get_option('pixel_tests'): 125 if self.get_option('tolerance') is not None: 126 tolerance = self.get_option('tolerance') 329 self.get_option('configuration')), *comps) 374 cmd = self._command_wrapper(self._port.get_option('wrapper')) 376 if self._port.get_option('pixel_tests'): 378 cmd.extend(self._port.get_option('additional_drt_flag', []))
|
D | chromium_linux.py | 106 if self.get_option('use_apache'): 124 if self.get_option('build_directory'): 125 return self._filesystem.join(self.get_option('build_directory'), 197 configuration = self.get_option('configuration')
|
D | chromium_gpu.py | 64 if port.get_option('accelerated_compositing') is None: 66 if port.get_option('accelerated_2d_canvas') is None: 71 if port.get_option('builder_name') is not None and not ' - GPU' in port._options.builder_name:
|
D | base_unittest.py | 217 self.assertEqual(port.get_option('foo'), 'bar') 221 self.assertEqual(port.get_option('foo'), None) 225 self.assertEqual(port.get_option('foo', 'bar'), 'bar')
|
D | base.py | 294 …baseline_search_path = self.get_option('additional_platform_directory', []) + self.baseline_search… 532 def get_option(self, name, default_value=None): member in Port 579 option_val = self.get_option('results_directory') or self.default_results_directory() 619 if self.get_option('use_apache'):
|
D | chromium_unittest.py | 50 mock_port.get_option = lambda option_name: ''
|
D | test.py | 425 return [self._port._path_to_driver()] + self._port.get_option('additional_drt_flag', [])
|
/external/dhcpcd/ |
D | dhcp.c | 297 #define get_option_raw(dhcp, opt) get_option(dhcp, opt, NULL, NULL) 299 get_option(const struct dhcp_message *dhcp, uint8_t opt, int *len, int *type) in get_option() function 647 p = get_option(dhcp, option, &len, &type); in get_option_string() 714 p = get_option(dhcp, DHO_CSR, &len, NULL); in get_option_routes() 717 p = get_option(dhcp, DHO_MSCSR, &len, NULL); in get_option_routes() 730 p = get_option(dhcp, DHO_STATICROUTE, &len, NULL); in get_option_routes() 749 p = get_option(dhcp, DHO_ROUTER, &len, NULL); in get_option_routes() 1362 p = get_option(dhcp, opt->option, &pl, NULL); in configure_env()
|
D | showlease.c | 190 #define get_option_raw(dhcp, opt) get_option(dhcp, opt, NULL, NULL) 192 get_option(const struct dhcp_message *dhcp, uint8_t opt, int *len, int *type) in get_option() function
|
/external/kernel-headers/original/linux/ |
D | kernel.h | 130 extern int get_option(char **str, int *pint);
|
/external/webkit/Tools/ |
D | ChangeLog-2011-02-16 | 14568 get_option('tolerance') which is safer if the options object doesn't 15635 This change modifies the Port interface to have a get_option() and 15641 Note that there is a disadvantage to port.get_option('foo') over
|