Home
last modified time | relevance | path

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

12345678910>>...168

/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 assertFalse(options.getInclNoLocationClasses()); in testDefaults()
48 assertNull(options.getSessionId()); in testDefaults()
49 assertTrue(options.getDumpOnExit()); in testDefaults()
[all …]
/external/v8/tools/
Drun-tests.py393 def SetupEnvironment(options): argument
406 if options.asan:
417 if options.sancov_dir:
418 assert os.path.exists(options.sancov_dir)
421 'coverage_dir=%s' % options.sancov_dir,
425 if options.cfi_vptr:
433 if options.msan:
436 if options.tsan:
448 def ProcessOptions(options): argument
453 options.auto_detect = False
[all …]
Drun-deopt-fuzzer.py142 def Distribution(options): argument
143 if options.distribution_mode == "random":
144 return RandomDistribution(options.seed)
145 if options.distribution_mode == "smooth":
146 return SmoothDistribution(options.distribution_factor1,
147 options.distribution_factor2)
226 def ProcessOptions(options): argument
230 if options.arch_and_mode:
231 tokens = options.arch_and_mode.split(".")
232 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 …]
Dssh.c160 Options options; variable
249 hints.ai_family = options.address_family == -1 ? in resolve_host()
250 AF_UNSPEC : options.address_family; in resolve_host()
289 hints.ai_family = options.address_family == -1 ? in resolve_addr()
290 AF_UNSPEC : options.address_family; in resolve_addr()
337 if (*cname == '\0' || options.num_permitted_cnames == 0 || in check_follow_cname()
340 if (options.canonicalize_hostname == SSH_CANONICALISE_NO) in check_follow_cname()
347 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS) in check_follow_cname()
350 for (i = 0; i < options.num_permitted_cnames; i++) { in check_follow_cname()
351 rule = options.permitted_cnames + i; in check_follow_cname()
[all …]
Dreadconf.c134 const char *host, const char *original_host, Options *options,
136 static int process_config_line_depth(Options *options, struct passwd *pw,
321 add_local_forward(Options *options, const struct Forward *newfwd) in add_local_forward() argument
331 for (i = 0; i < options->num_local_forwards; i++) { in add_local_forward()
332 if (forward_equals(newfwd, options->local_forwards + i)) in add_local_forward()
335 options->local_forwards = xreallocarray(options->local_forwards, in add_local_forward()
336 options->num_local_forwards + 1, in add_local_forward()
337 sizeof(*options->local_forwards)); in add_local_forward()
338 fwd = &options->local_forwards[options->num_local_forwards++]; in add_local_forward()
354 add_remote_forward(Options *options, const struct Forward *newfwd) in add_remote_forward() argument
[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/r8/tools/
Drun_on_app.py105 (options, args) = ParseOptions()
106 outdir = options.out
108 if options.app == 'gmscore':
109 options.version = options.version or 'v9'
111 elif options.app == 'youtube':
112 options.version = options.version or '12.22'
114 elif options.app == 'gmail':
115 options.version = options.version or '170604.16'
120 if not options.version in data.VERSIONS.keys():
122 .format(options.version, options.app))
[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/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/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/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/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/tcpdump/tests/
Dresp_3.out1 IP 127.0.0.1.52759 > 127.0.0.1.6379: Flags [F.], seq 2169831382, ack 489972337, win 342, options [n…
2 IP 127.0.0.1.6379 > 127.0.0.1.52759: Flags [F.], seq 1, ack 1, win 342, options [nop,nop,TS val 113…
3 IP 127.0.0.1.52759 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,nop,TS val 1132418034 …
4 IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [S], seq 264055152, win 43690, options [mss 65495,sackOK…
5 IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [S.], seq 4227148888, ack 264055153, win 43690, options
6 IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,nop,TS val 1132418037 …
7 IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [P.], seq 1:7, ack 1, win 342, options [nop,nop,TS val 1…
8 IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [.], ack 7, win 342, options [nop,nop,TS val 1132418037 …
9 IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [P.], seq 1:28, ack 7, win 342, options [nop,nop,TS val …
10 IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,nop,TS val 1132418037…
[all …]
/external/r8/src/test/java/com/android/tools/r8/smali/
DOutlineTest.java62 String firstOutlineMethodName(InternalOptions options) { in firstOutlineMethodName() argument
63 StringBuilder builder = new StringBuilder(options.outline.className); in firstOutlineMethodName()
65 builder.append(options.outline.methodPrefix); in firstOutlineMethodName()
71 String returnType, List<String> parameterTypes, InternalOptions options) { in firstOutlineMethodSignature() argument
73 options.outline.className, options.outline.methodPrefix + "0", returnType, parameterTypes); in firstOutlineMethodSignature()
76 boolean isOutlineMethodName(InternalOptions options, String qualifiedName) { in isOutlineMethodName() argument
77 StringBuilder builder = new StringBuilder(options.outline.className); in isOutlineMethodName()
79 builder.append(options.outline.methodPrefix); in isOutlineMethodName()
121 InternalOptions options = new InternalOptions(); in a() local
122 options.outline.threshold = 1; in a()
[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/v8/tools/foozzie/
Dv8_foozzie.py126 options = parser.parse_args()
129 assert (os.path.exists(options.testcase) and
130 os.path.isfile(options.testcase)), (
131 'Test case %s doesn\'t exist' % options.testcase)
134 options.second_d8 = options.second_d8 or options.first_d8
137 if not os.path.isabs(options.first_d8):
138 options.first_d8 = os.path.join(BASE_PATH, options.first_d8)
139 if not os.path.isabs(options.second_d8):
140 options.second_d8 = os.path.join(BASE_PATH, options.second_d8)
143 assert os.path.exists(options.first_d8)
[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/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 …]

12345678910>>...168