Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 4304) sorted by relevance

12345678910>>...173

/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
DAgentOptionsTest.java39 AgentOptions options = new AgentOptions(); in testDefaults() local
40 assertEquals(AgentOptions.DEFAULT_DESTFILE, options.getDestfile()); in testDefaults()
41 assertTrue(options.getAppend()); in testDefaults()
42 assertEquals("*", options.getIncludes()); in testDefaults()
43 assertEquals("", options.getExcludes()); in testDefaults()
45 options.getExclClassloader()); in testDefaults()
46 assertFalse(options.getInclBootstrapClasses()); in testDefaults()
47 assertNull(options.getSessionId()); in testDefaults()
48 assertTrue(options.getDumpOnExit()); in testDefaults()
49 assertEquals(AgentOptions.OutputMode.file, options.getOutput()); in testDefaults()
[all …]
/external/v8/tools/
Drun-tests.py391 def SetupEnvironment(options): argument
404 if options.asan:
407 if options.sancov_dir:
408 assert os.path.exists(options.sancov_dir)
411 'coverage_dir=%s' % options.sancov_dir,
415 if options.cfi_vptr:
423 if options.msan:
426 if options.tsan:
438 def ProcessOptions(options): argument
443 options.auto_detect = False
[all …]
Drun-deopt-fuzzer.py143 def Distribution(options): argument
144 if options.distribution_mode == "random":
145 return RandomDistribution(options.seed)
146 if options.distribution_mode == "smooth":
147 return SmoothDistribution(options.distribution_factor1,
148 options.distribution_factor2)
227 def ProcessOptions(options): argument
231 if options.arch_and_mode:
232 tokens = options.arch_and_mode.split(".")
233 options.arch = tokens[0]
[all …]
/external/openssh/
Dservconf.c75 initialize_server_options(ServerOptions *options) in initialize_server_options() argument
77 memset(options, 0, sizeof(*options)); in initialize_server_options()
80 options->use_pam = -1; in initialize_server_options()
83 options->num_ports = 0; in initialize_server_options()
84 options->ports_from_cmdline = 0; in initialize_server_options()
85 options->queued_listen_addrs = NULL; in initialize_server_options()
86 options->num_queued_listens = 0; in initialize_server_options()
87 options->listen_addrs = NULL; in initialize_server_options()
88 options->address_family = -1; in initialize_server_options()
89 options->num_host_key_files = 0; in initialize_server_options()
[all …]
Dreadconf.c291 add_local_forward(Options *options, const struct Forward *newfwd) in add_local_forward() argument
300 options->local_forwards = xreallocarray(options->local_forwards, in add_local_forward()
301 options->num_local_forwards + 1, in add_local_forward()
302 sizeof(*options->local_forwards)); in add_local_forward()
303 fwd = &options->local_forwards[options->num_local_forwards++]; in add_local_forward()
319 add_remote_forward(Options *options, const struct Forward *newfwd) in add_remote_forward() argument
323 options->remote_forwards = xreallocarray(options->remote_forwards, in add_remote_forward()
324 options->num_remote_forwards + 1, in add_remote_forward()
325 sizeof(*options->remote_forwards)); in add_remote_forward()
326 fwd = &options->remote_forwards[options->num_remote_forwards++]; in add_remote_forward()
[all …]
Dssh.c163 Options options; variable
257 hints.ai_family = options.address_family == -1 ? in resolve_host()
258 AF_UNSPEC : options.address_family; in resolve_host()
297 hints.ai_family = options.address_family == -1 ? in resolve_addr()
298 AF_UNSPEC : options.address_family; in resolve_addr()
345 if (*cname == '\0' || options.num_permitted_cnames == 0 || in check_follow_cname()
348 if (options.canonicalize_hostname == SSH_CANONICALISE_NO) in check_follow_cname()
354 if (!option_clear_or_none(options.proxy_command) && in check_follow_cname()
355 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS) in check_follow_cname()
358 for (i = 0; i < options.num_permitted_cnames; i++) { in check_follow_cname()
[all …]
/external/toolchain-utils/
Dbuild_chromeos.py106 options = parser.parse_args(argv[1:])
108 if options.chromeos_root is None:
110 options.chromeos_root = os.path.expanduser(options.chromeos_root)
111 scripts_dir = os.path.join(options.chromeos_root, 'src', 'scripts')
115 if options.board is None:
118 if options.debug:
119 options.dev = True
121 build_packages_env = options.env
128 if options.rebuild == True:
132 misc.RemoveChromeBrowserObjectFiles(options.chromeos_root, options.board)
[all …]
Dbuild_chrome_browser.py101 options = parser.parse_args(argv)
103 if options.chromeos_root is None:
106 if options.board is None:
109 if options.version is None:
114 chrome_version = 'CHROME_VERSION=%s' % options.version
116 if options.dev and options.no_build_image:
120 if options.debug:
121 options.dev = True
123 options.chromeos_root = misc.CanonicalizePath(options.chromeos_root)
126 if options.ebuild_version:
[all …]
/external/ImageMagick/scripts/
Dxsnap116 catch {destroy .options}
117 toplevel .options -class Options
118 wm title .options "Set Image Options"
119 wm group .options .
120 wm transient .options .
121 wm geometry .options \
126 frame .options.input_title
127 label .options.input_title.label -text "Input"
128 pack .options.input_title.label
129 pack .options.input_title
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DDumperOptionsTest.java33 DumperOptions options = new DumperOptions(); in testDefaultStyle() local
34 Yaml yaml = new Yaml(options); in testDefaultStyle()
39 options.setDefaultScalarStyle(DumperOptions.ScalarStyle.DOUBLE_QUOTED); in testDefaultStyle()
40 yaml = new Yaml(options); in testDefaultStyle()
43 options.setDefaultScalarStyle(DumperOptions.ScalarStyle.SINGLE_QUOTED); in testDefaultStyle()
44 yaml = new Yaml(options); in testDefaultStyle()
47 options.setDefaultScalarStyle(DumperOptions.ScalarStyle.PLAIN); in testDefaultStyle()
48 yaml = new Yaml(options); in testDefaultStyle()
53 options.setDefaultScalarStyle(null); in testDefaultStyle()
68 DumperOptions options = new DumperOptions(); in testDefaultFlowStyle() local
[all …]
/external/syslinux/gpxe/src/net/
Ddhcpopts.c63 dhcp_option ( struct dhcp_options *options, unsigned int offset ) { in dhcp_option() argument
64 return ( ( struct dhcp_option * ) ( options->data + offset ) ); in dhcp_option()
75 dhcp_option_offset ( struct dhcp_options *options, in dhcp_option_offset() argument
77 return ( ( ( void * ) option ) - options->data ); in dhcp_option_offset()
114 static int find_dhcp_option_with_encap ( struct dhcp_options *options, in find_dhcp_option_with_encap() argument
120 ssize_t remaining = options->len; in find_dhcp_option_with_encap()
133 option = dhcp_option ( options, offset ); in find_dhcp_option_with_encap()
150 DBGC ( options, "DHCPOPT %p found %s (length %d)\n", in find_dhcp_option_with_encap()
151 options, dhcp_tag_name ( original_tag ), in find_dhcp_option_with_encap()
183 static int resize_dhcp_option ( struct dhcp_options *options, in resize_dhcp_option() argument
[all …]
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
Dbrowser_options_unittest.py13 options = browser_options.BrowserFinderOptions()
14 parser = options.CreateParser()
17 self.assertEquals(options.x, 3) # pylint: disable=no-member
20 options = browser_options.BrowserFinderOptions()
21 parser = options.CreateParser()
24 self.assertEquals(options.x, 10) # pylint: disable=no-member
27 options = browser_options.BrowserFinderOptions()
28 setattr(options, 'x', 7)
29 parser = options.CreateParser()
32 self.assertEquals(options.x, 7) # pylint: disable=no-member
[all …]
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
Dreplay_test.py36 options = parser.parse_args([])
37 options = replay.OptionsWrapper(options, parser)
38 self.assertEqual({}, options.shaping_dns)
39 self.assertEqual({}, options.shaping_http)
40 self.assertEqual({}, options.shaping_dummynet)
44 options = parser.parse_args(['--shaping=proxy'])
45 options = replay.OptionsWrapper(options, parser)
46 self.assertEqual({}, options.shaping_dns)
47 self.assertEqual({}, options.shaping_http)
48 self.assertEqual({}, options.shaping_dummynet)
[all …]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DCommandLine.java33 static Hashtable options = new Hashtable(); static { field in CommandLine
34 options.put("--nocdata", Boolean.FALSE); // CDATA elements are normal
35 options.put("--files", Boolean.FALSE); // process arguments as separate files
36 options.put("--reuse", Boolean.FALSE); // reuse a single Parser
37 options.put("--nons", Boolean.FALSE); // no namespaces
38 options.put("--nobogons", Boolean.FALSE); // suppress unknown elements
39 options.put("--any", Boolean.FALSE); // unknowns have ANY content model
40 options.put("--emptybogons", Boolean.FALSE); // unknowns have EMPTY content model
41 options.put("--norootbogons", Boolean.FALSE); // unknowns can't be the root
42 options.put("--pyxin", Boolean.FALSE); // input is PYX
[all …]
/external/libtextclassifier/tests/
Dtoken-feature-extractor_test.cc32 TokenFeatureExtractorOptions options; in TEST() local
33 options.num_buckets = 1000; in TEST()
34 options.chargram_orders = std::vector<int>{1, 2, 3}; in TEST()
35 options.extract_case_feature = true; in TEST()
36 options.unicode_aware_features = false; in TEST()
37 options.extract_selection_mask_feature = true; in TEST()
38 TestingTokenFeatureExtractor extractor(options); in TEST()
102 TokenFeatureExtractorOptions options; in TEST() local
103 options.num_buckets = 1000; in TEST()
104 options.chargram_orders = std::vector<int>{1, 2, 3}; in TEST()
[all …]
/external/jdiff/src/jdiff/
DOptions.java136 public static boolean validOptions(String[][] options, in validOptions() argument
154 for (int i = 0; i < options.length; i++) { in validOptions()
155 for (int j = 0; j < options[i].length; j++) { in validOptions()
156 Options.cmdOptions += " " + options[i][j]; in validOptions()
158 System.out.print(" " + options[i][j]); in validOptions()
164 for (int i = 0; i < options.length; i++) { in validOptions()
165 if (options[i][0].toLowerCase().equals("-apiname")) { in validOptions()
166 if (options[i].length < 2) { in validOptions()
171 String filename = options[i][1]; in validOptions()
180 if (options[i][0].toLowerCase().equals("-apidir")) { in validOptions()
[all …]
/external/autotest/cli/
Dquery_keyvals17 options, args = parser.parse_args()
18 options.show_test_keyvals = options.type in ("all", "test")
19 options.show_attr_keyvals = options.type in ("all", "iteration", "attr")
20 options.show_perf_keyvals = options.type in ("all", "iteration", "perf")
21 options.show_iter_keyvals = (
22 options.show_perf_keyvals or options.show_attr_keyvals)
23 return parser, options, args
26 def print_keyvals(keyval, format_string, options): argument
28 if not options.key or key == options.key:
32 def print_views(test_views, options): argument
[all …]
/external/clang/lib/Driver/
DTools.cpp114 if (Arg *A = Args.getLastArg(options::OPT_C, options::OPT_CC)) { in CheckPreprocessingOptions()
115 if (!Args.hasArg(options::OPT_E) && !Args.hasArg(options::OPT__SLASH_P) && in CheckPreprocessingOptions()
116 !Args.hasArg(options::OPT__SLASH_EP) && !D.CCCIsCPP()) { in CheckPreprocessingOptions()
128 if (Args.hasArg(options::OPT_static)) in CheckCodeGenerationOptions()
130 Args.getLastArg(options::OPT_dynamic, options::OPT_mdynamic_no_pic)) in CheckCodeGenerationOptions()
241 Args.AddAllArgValues(CmdArgs, options::OPT_Zlinker_input); in AddLinkerInputs()
258 if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx)) in AddLinkerInputs()
260 else if (A.getOption().matches(options::OPT_Z_reserved_lib_cckext)) in AddLinkerInputs()
262 else if (A.getOption().matches(options::OPT_z)) { in AddLinkerInputs()
280 return Args.hasFlag(options::OPT_fobjc_arc, options::OPT_fno_objc_arc, false); in isObjCAutoRefCount()
[all …]
/external/libxml2/os400/libxmlrpg/
Dxmlwriter.rpgle34 d uri * value options(*string) const char *
74 d version * value options(*string) const char *
75 d encoding * value options(*string) const char *
76 d standalone * value options(*string) const char *
100 d format * value options(*string: *nopass) const char *
101 d #vararg1 * value options(*string: *nopass) void *
102 d #vararg2 * value options(*string: *nopass) void *
103 d #vararg3 * value options(*string: *nopass) void *
104 d #vararg4 * value options(*string: *nopass) void *
105 d #vararg5 * value options(*string: *nopass) void *
[all …]
/external/vulkan-validation-layers/libs/vkjson/
Dvkjson_info.cc40 bool ParseOptions(int argc, char* argv[], Options* options) { in ParseOptions() argument
44 options->instance = true; in ParseOptions()
46 options->device_index = 0; in ParseOptions()
55 int result = sscanf(arg2.c_str(), "%u", &options->device_index); in ParseOptions()
57 options->device_index = -1; in ParseOptions()
62 options->device_name = arg2; in ParseOptions()
64 options->output_file = arg2; in ParseOptions()
71 if (options->instance && (options->device_index != unsignedNegOne || in ParseOptions()
72 !options->device_name.empty())) { in ParseOptions()
77 if (options->device_index != unsignedNegOne && !options->device_name.empty()) { in ParseOptions()
[all …]
/external/protobuf/src/google/protobuf/compiler/js/
Djs_generator.cc192 string GetPath(const GeneratorOptions& options, in GetPath() argument
194 if (!options.namespace_prefix.empty()) { in GetPath()
195 return options.namespace_prefix; in GetPath()
205 string GetPath(const GeneratorOptions& options,
210 string GetPrefix(const GeneratorOptions& options, in GetPrefix() argument
216 prefix = GetPath(options, file_descriptor); in GetPrefix()
218 prefix = GetPath(options, containing_type); in GetPrefix()
231 string GetPath(const GeneratorOptions& options, in GetPath() argument
234 options, descriptor->file(), in GetPath()
241 string GetPath(const GeneratorOptions& options, in GetPath() argument
[all …]
/external/icu/icu4c/source/tools/gencmn/
Dgencmn.c36 static UOption options[]={ variable
58 argc=u_parseArgs(argc, argv, UPRV_LENGTHOF(options), options); in main()
69 if(argc<0 || options[0].doesOccur || options[1].doesOccur) { in main()
78 if (options[0].doesOccur || options[1].doesOccur) { in main()
102 sourceTOC=options[8].doesOccur; in main()
104 verbose = options[2].doesOccur; in main()
108 createCommonDataFile(options[4].doesOccur ? options[4].value : NULL, in main()
109 options[6].doesOccur ? options[6].value : NULL, in main()
110options[9].doesOccur ? options[9].value : options[6].doesOccur ? options[6].value : NULL, in main()
111 options[7].doesOccur ? options[7].value : NULL, in main()
[all …]
/external/webrtc/webrtc/tools/
Dcompare_videos.py58 options, _ = parser.parse_args()
60 if not options.ref_video:
62 if not os.path.exists(options.ref_video):
63 parser.error('Cannot find the reference video at %s' % options.ref_video)
65 if not options.test_video:
67 if not os.path.exists(options.test_video):
68 parser.error('Cannot find the test video at %s' % options.test_video)
70 if not options.frame_analyzer:
72 if not os.path.exists(options.frame_analyzer):
74 options.frame_analyzer)
[all …]
/external/chromium-trace/catapult/systrace/systrace/
Drun_systrace.py78 options, categories = parser.parse_args(argv[1:])
80 if options.output_file is None:
81 options.output_file = 'trace.json' if options.write_json else 'trace.html'
83 if options.link_assets or options.asset_dir != 'trace-viewer':
86 if options.trace_time and options.trace_time < 0:
89 if (options.trace_buf_size is not None) and (options.trace_buf_size <= 0):
92 return (options, categories)
135 options, categories = parse_options(arguments)
140 if options.target == 'android':
141 options.atrace_categories = categories
[all …]
/external/toolchain-utils/deprecated/
Dbuild_benchmarks.py196 options = parser.parse_args(argv[1:])
199 for arg in options.args:
203 if options.chromeos_root is None:
206 if options.board is None:
209 if options.toolchain_root:
212 options.chromeos_root = os.path.expanduser(options.chromeos_root)
213 options.workdir = os.path.expanduser(options.workdir)
216 if options.third_party:
217 third_party = options.third_party
221 for arg in options.args:
[all …]

12345678910>>...173