/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/ |
D | AgentOptionsTest.java | 39 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/u-boot/tools/buildman/ |
D | control.py | 25 def GetActionSummary(is_summary, commits, selected, options): argument 33 count = (count + options.step - 1) / options.step 40 str += ' (%d thread%s, %d job%s per thread)' % (options.threads, 41 GetPlural(options.threads), options.jobs, GetPlural(options.jobs)) 44 def ShowActions(series, why_selected, boards_selected, builder, options): argument 67 options) 70 for upto in range(0, len(series.commits), options.step): 78 if options.verbose: 105 def DoBuildman(options, args, toolchains=None, make_func=None, boards=None, argument 123 if options.full_help: [all …]
|
/external/openssh/ |
D | servconf.c | 75 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 …]
|
D | ssh.c | 160 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 …]
|
D | readconf.c | 134 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/ImageMagick/scripts/ |
D | xsnap | 116 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/toolchain-utils/ |
D | build_chromeos.py | 114 options = parser.parse_args(argv[1:]) 116 if options.chromeos_root is None: 118 options.chromeos_root = os.path.expanduser(options.chromeos_root) 119 scripts_dir = os.path.join(options.chromeos_root, 'src', 'scripts') 123 if options.board is None: 126 if options.debug: 127 options.dev = True 129 build_packages_env = options.env 136 if options.rebuild == True: 140 misc.RemoveChromeBrowserObjectFiles(options.chromeos_root, options.board) [all …]
|
D | build_chrome_browser.py | 111 options = parser.parse_args(argv) 113 if options.chromeos_root is None: 116 if options.board is None: 119 if options.version is None: 124 chrome_version = 'CHROME_VERSION=%s' % options.version 126 if options.dev and options.no_build_image: 130 if options.debug: 131 options.dev = True 133 options.chromeos_root = misc.CanonicalizePath(options.chromeos_root) 136 if options.ebuild_version: [all …]
|
/external/v8/tools/testrunner/ |
D | num_fuzzer.py | 91 def _process_options(self, options): argument 92 if not options.fuzzer_random_seed: 93 options.fuzzer_random_seed = random_utils.random_seed() 95 if options.total_timeout_sec: 96 options.tests_count = 0 98 if options.combine_tests: 99 if options.combine_min > options.combine_max: 101 options.min_group_size, options.max_group_size) 104 if options.variants != 'default': 113 def _timeout_scalefactor(self, options): argument [all …]
|
D | standard_runner.py | 151 def _process_options(self, options): argument 152 if options.sancov_dir: 153 self.sancov_dir = options.sancov_dir 158 if options.gc_stress: 159 options.extra_flags += GC_STRESS_FLAGS 161 if options.random_gc_stress: 162 options.extra_flags += RANDOM_GC_STRESS_FLAGS 165 options.extra_flags.append("--invoke-weak-callbacks") 166 options.extra_flags.append("--omit-quit") 171 options.extra_flags.append("--no-turbo-verify-allocation") [all …]
|
D | base_runner.py | 233 options, args = self._parse_args(parser, sys_args) 234 if options.swarming: 239 self._load_build_config(options) 243 self._process_default_options(options) 244 self._process_options(options) 250 suites = self._get_suites(args, options) 251 self._prepare_suites(suites, options) 258 return self._do_execute(tests, args, options) 353 options, args = parser.parse_args(sys_args) 356 [options.arch, options.mode])): # pragma: no cover [all …]
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
D | DumperOptionsTest.java | 33 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/libtextclassifier/utils/ |
D | token-feature-extractor_test.cc | 38 TokenFeatureExtractorOptions options; in TEST_F() local 39 options.num_buckets = 1000; in TEST_F() 40 options.chargram_orders = std::vector<int>{1, 2, 3}; in TEST_F() 41 options.extract_case_feature = true; in TEST_F() 42 options.unicode_aware_features = false; in TEST_F() 43 options.extract_selection_mask_feature = true; in TEST_F() 44 TestingTokenFeatureExtractor extractor(options, unilib_); in TEST_F() 108 TokenFeatureExtractorOptions options; in TEST_F() local 109 options.num_buckets = 1000; in TEST_F() 110 options.chargram_orders = std::vector<int>{}; in TEST_F() [all …]
|
/external/v8/tools/node/ |
D | build_gn.py | 42 def FindGn(options): argument 43 if options.host_os == "linux": 45 elif options.host_os == "mac": 47 elif options.host_os == "win": 51 return os.path.join(options.v8_path, "buildtools", os_path, "gn") 53 def GenerateBuildFiles(options): argument 54 gn = FindGn(options) 56 target_os = FindTargetOs(options.flag) 60 for flag in options.flag: 65 if options.mode == "Debug": [all …]
|
/external/libchrome/mojo/core/ |
D | entrypoints.cc | 23 MojoResult MojoInitializeImpl(const struct MojoInitializeOptions* options) { in MojoInitializeImpl() argument 43 const MojoCreateMessagePipeOptions* options, in MojoCreateMessagePipeImpl() argument 46 return g_core->CreateMessagePipe(options, message_pipe_handle0, in MojoCreateMessagePipeImpl() 52 const MojoWriteMessageOptions* options) { in MojoWriteMessageImpl() argument 53 return g_core->WriteMessage(message_pipe_handle, message, options); in MojoWriteMessageImpl() 57 const MojoReadMessageOptions* options, in MojoReadMessageImpl() argument 59 return g_core->ReadMessage(message_pipe_handle, options, message); in MojoReadMessageImpl() 65 const MojoFuseMessagePipesOptions* options) { in MojoFuseMessagePipesImpl() argument 66 return g_core->FuseMessagePipes(handle0, handle1, options); in MojoFuseMessagePipesImpl() 69 MojoResult MojoCreateMessageImpl(const MojoCreateMessageOptions* options, in MojoCreateMessageImpl() argument [all …]
|
/external/libchrome/mojo/public/c/system/ |
D | thunks.cc | 65 CoreLibraryInitializer(const MojoInitializeOptions* options) { in CoreLibraryInitializer() argument 69 if (options && options->struct_size >= sizeof(*options) && in CoreLibraryInitializer() 70 options->mojo_core_path) { in CoreLibraryInitializer() 71 base::StringPiece utf8_path(options->mojo_core_path, in CoreLibraryInitializer() 72 options->mojo_core_path_length); in CoreLibraryInitializer() 146 MojoResult MojoInitialize(const struct MojoInitializeOptions* options) { in MojoInitialize() argument 147 static base::NoDestructor<mojo::CoreLibraryInitializer> initializer(options); in MojoInitialize() 151 return INVOKE_THUNK(Initialize, options); in MojoInitialize() 168 MojoResult MojoCreateMessagePipe(const MojoCreateMessagePipeOptions* options, in MojoCreateMessagePipe() argument 171 return INVOKE_THUNK(CreateMessagePipe, options, message_pipe_handle0, in MojoCreateMessagePipe() [all …]
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
D | CommandLine.java | 33 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/clang/lib/Driver/ |
D | Tools.cpp | 114 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/jdiff/src/jdiff/ |
D | Options.java | 136 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/perfetto/src/perfetto_cmd/ |
D | config_unittest.cc | 33 ConfigOptions options; member in perfetto::__anon5b4bffdd0111::CreateConfigFromOptionsTest 37 ASSERT_TRUE(CreateConfigFromOptions(options, &config)); in TEST_F() 42 options.time = "2ms"; in TEST_F() 43 ASSERT_TRUE(CreateConfigFromOptions(options, &config)); in TEST_F() 48 options.time = "100s"; in TEST_F() 49 ASSERT_TRUE(CreateConfigFromOptions(options, &config)); in TEST_F() 54 options.time = "2m"; in TEST_F() 55 ASSERT_TRUE(CreateConfigFromOptions(options, &config)); in TEST_F() 60 options.time = "2h"; in TEST_F() 61 ASSERT_TRUE(CreateConfigFromOptions(options, &config)); in TEST_F() [all …]
|
/external/autotest/cli/ |
D | query_keyvals | 17 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/tcpdump/tests/ |
D | resp_3.out | 1 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/libxml2/os400/libxmlrpg/ |
D | xmlwriter.rpgle | 34 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/protobuf/src/google/protobuf/compiler/js/ |
D | js_generator.cc | 192 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/chromium-trace/catapult/systrace/systrace/ |
D | run_systrace.py | 82 options, categories = parser.parse_args(argv[1:]) 84 if options.output_file is None: 86 if options.from_file is not None: 87 base = os.path.splitext(options.from_file)[0] 88 suffix = '.json' if options.write_json else '.html' 89 options.output_file = base + suffix 91 if options.link_assets or options.asset_dir != 'trace-viewer': 94 if options.trace_time and options.trace_time < 0: 97 if (options.trace_buf_size is not None) and (options.trace_buf_size <= 0): 100 return (options, categories) [all …]
|