/external/okio/okio/src/commonTest/kotlin/okio/ |
D | CommonOptionsTest.kt | 46 val options = utf8Options( in realisticOptionsTrie() constant 76 options.trieString(), in realisticOptionsTrie() 149 assertSelect("", -1, options) in realisticOptionsTrie() 150 assertSelect("a", -1, options) in realisticOptionsTrie() 151 assertSelect("eventListenerFactor", -1, options) in realisticOptionsTrie() 152 assertSelect("dnst", 19, options) in realisticOptionsTrie() 153 assertSelect("proxyproxy", 1, options) in realisticOptionsTrie() 154 assertSelect("prox", -1, options) in realisticOptionsTrie() 156 assertSelect("dispatcher", 0, options) in realisticOptionsTrie() 157 assertSelect("proxy", 1, options) in realisticOptionsTrie() [all …]
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/ |
D | AgentOptionsTest.java | 40 AgentOptions options = new AgentOptions(); in testDefaults() local 41 assertEquals(AgentOptions.DEFAULT_DESTFILE, options.getDestfile()); in testDefaults() 42 assertTrue(options.getAppend()); in testDefaults() 43 assertEquals("*", options.getIncludes()); in testDefaults() 44 assertEquals("", options.getExcludes()); in testDefaults() 46 options.getExclClassloader()); in testDefaults() 47 assertFalse(options.getInclBootstrapClasses()); in testDefaults() 48 assertFalse(options.getInclNoLocationClasses()); in testDefaults() 49 assertNull(options.getSessionId()); in testDefaults() 50 assertTrue(options.getDumpOnExit()); in testDefaults() [all …]
|
/external/zstd/contrib/pzstd/test/ |
D | OptionsTest.cpp | 90 Options options; in TEST() local 92 EXPECT_SUCCESS(options.parse(args.size(), args.data())); in TEST() 95 EXPECT_EQ(expected, options); in TEST() 98 Options options; in TEST() local 100 EXPECT_SUCCESS(options.parse(args.size(), args.data())); in TEST() 103 EXPECT_EQ(expected, options); in TEST() 106 Options options; in TEST() local 109 EXPECT_SUCCESS(options.parse(args.size(), args.data())); in TEST() 112 EXPECT_EQ(expected, options); in TEST() 115 Options options; in TEST() local [all …]
|
/external/tinyalsa_new/utils/ |
D | optparse.h | 80 void optparse_init(struct optparse *options, char **argv); 92 int optparse(struct optparse *options, const char *optstring); 101 int optparse_long(struct optparse *options, 115 char *optparse_arg(struct optparse *options); 125 optparse_error(struct optparse *options, const char *msg, const char *data) in optparse_error() argument 130 options->errmsg[p++] = *msg++; in optparse_error() 132 options->errmsg[p++] = *sep++; in optparse_error() 133 while (p < sizeof(options->errmsg) - 2 && *data) in optparse_error() 134 options->errmsg[p++] = *data++; in optparse_error() 135 options->errmsg[p++] = '\''; in optparse_error() [all …]
|
/external/android-nn-driver/test/1.2/ |
D | Dilation.cpp | 16 DilationTestOptions options; in BOOST_AUTO_TEST_CASE() local 17 options.m_IsDepthwiseConvolution = false; in BOOST_AUTO_TEST_CASE() 18 options.m_IsPaddingExplicit = true; in BOOST_AUTO_TEST_CASE() 19 options.m_HasDilation = false; in BOOST_AUTO_TEST_CASE() 21 DilationTestImpl<hal_1_2::HalPolicy>(options); in BOOST_AUTO_TEST_CASE() 26 DilationTestOptions options; in BOOST_AUTO_TEST_CASE() local 27 options.m_IsDepthwiseConvolution = false; in BOOST_AUTO_TEST_CASE() 28 options.m_IsPaddingExplicit = true; in BOOST_AUTO_TEST_CASE() 29 options.m_HasDilation = true; in BOOST_AUTO_TEST_CASE() 31 DilationTestImpl<hal_1_2::HalPolicy>(options); in BOOST_AUTO_TEST_CASE() [all …]
|
/external/toolchain-utils/ |
D | build_chromeos.py | 118 options = parser.parse_args(argv[1:]) 120 if options.chromeos_root is None: 122 options.chromeos_root = os.path.expanduser(options.chromeos_root) 123 scripts_dir = os.path.join(options.chromeos_root, 'src', 'scripts') 127 if options.board is None: 130 if options.debug: 131 options.dev = True 133 build_packages_env = options.env 140 if options.rebuild: 144 misc.RemoveChromeBrowserObjectFiles(options.chromeos_root, options.board) [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/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/native/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/igt-gpu-tools/tests/i915/ |
D | gem_stress.c | 120 struct option_struct options = { variable 158 *x = (tile*options.tile_size) % (buf->stride/sizeof(uint32_t)); in tile2xy() 159 *y = ((tile*options.tile_size) / (buf->stride/sizeof(uint32_t))) * options.tile_size; in tile2xy() 233 for (i = 0; i < options.tile_size; i++) { in cpucpy2d() 234 for (j = 0; j < options.tile_size; j++) { in cpucpy2d() 237 unsigned expect = logical_tile_no*options.tile_size*options.tile_size in cpucpy2d() 238 + i*options.tile_size + j; in cpucpy2d() 241 …t tile %i pos %i, read %i, expected %i, diff %i\n", logical_tile_no, i * options.tile_size + j, tm… in cpucpy2d() 242 igt_fail_on(options.trace_tile >= 0 && options.fail); in cpucpy2d() 249 igt_fail_on(failed && options.fail); in cpucpy2d() [all …]
|
/external/flac/src/metaflac/ |
D | options.c | 104 …LAC__bool parse_option(int option_index, const char *option_argument, CommandLineOptions *options); 105 static void append_new_operation(CommandLineOptions *options, Operation operation); 106 static void append_new_argument(CommandLineOptions *options, Argument argument); 107 static Operation *append_major_operation(CommandLineOptions *options, OperationType type); 108 static Operation *append_shorthand_operation(CommandLineOptions *options, OperationType type); 109 static Argument *find_argument(CommandLineOptions *options, ArgumentType type); 110 static Operation *find_shorthand_operation(CommandLineOptions *options, OperationType type); 111 static Argument *append_argument(CommandLineOptions *options, ArgumentType type); 126 void init_options(CommandLineOptions *options) in init_options() argument 128 options->preserve_modtime = false; in init_options() [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/rust/crates/regex-automata/data/tests/fowler/ |
D | basic.toml | 3 options = ['escaped'] 10 options = ['escaped'] 17 options = ['escaped'] 24 options = ['escaped'] 31 options = ['escaped'] 38 options = ['escaped'] 45 options = ['escaped'] 52 options = ['escaped'] 59 options = ['escaped'] 66 options = ['escaped'] [all …]
|
D | repetition.toml | 3 options = ['escaped'] 10 options = ['escaped'] 17 options = ['escaped'] 24 options = ['escaped'] 31 options = ['escaped'] 38 options = ['escaped'] 45 options = ['escaped'] 52 options = ['escaped'] 59 options = ['escaped'] 66 options = ['escaped'] [all …]
|
/external/perfetto/src/perfetto_cmd/ |
D | config_unittest.cc | 34 ConfigOptions options; member in perfetto::__anon45601ba00111::CreateConfigFromOptionsTest 38 ASSERT_TRUE(CreateConfigFromOptions(options, &config)); in TEST_F() 43 options.time = "2ms"; in TEST_F() 44 ASSERT_TRUE(CreateConfigFromOptions(options, &config)); in TEST_F() 49 options.time = "0"; in TEST_F() 50 ASSERT_TRUE(CreateConfigFromOptions(options, &config)); in TEST_F() 55 options.time = "100s"; in TEST_F() 56 ASSERT_TRUE(CreateConfigFromOptions(options, &config)); in TEST_F() 61 options.time = "2m"; in TEST_F() 62 ASSERT_TRUE(CreateConfigFromOptions(options, &config)); in TEST_F() [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/protobuf/src/google/protobuf/compiler/js/ |
D | js_generator.cc | 121 std::string GetJSFilename(const GeneratorOptions& options, in GetJSFilename() argument 123 return StripProto(filename) + options.GetFileNameExtension(); in GetJSFilename() 168 std::string GetNamespace(const GeneratorOptions& options, in GetNamespace() argument 170 if (!options.namespace_prefix.empty()) { in GetNamespace() 171 return options.namespace_prefix; in GetNamespace() 198 std::string GetPrefix(const GeneratorOptions& options, in GetPrefix() argument 201 std::string prefix = GetNamespace(options, file_descriptor) + in GetPrefix() 211 std::string GetMessagePathPrefix(const GeneratorOptions& options, in GetMessagePathPrefix() argument 213 return GetPrefix(options, descriptor->file(), descriptor->containing_type()); in GetMessagePathPrefix() 218 std::string GetMessagePath(const GeneratorOptions& options, in GetMessagePath() argument [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/rust/crates/textwrap/src/ |
D | lib.rs | 262 fn from(options: &'a Options<'a>) -> Self { in from() 264 width: options.width, in from() 265 initial_indent: options.initial_indent, in from() 266 subsequent_indent: options.subsequent_indent, in from() 267 break_words: options.break_words, in from() 268 word_separator: options.word_separator, in from() 269 wrap_algorithm: options.wrap_algorithm, in from() 270 word_splitter: options.word_splitter.clone(), in from() 629 let mut options = Options::new(0); in unfill() localVariable 631 options.width = std::cmp::max(options.width, core::display_width(line)); in unfill() [all …]
|
/external/rust/crates/bindgen/src/ |
D | lib.rs | 224 options: BindgenOptions, field 246 output_vector.push(self.options.rust_target.into()); in command_line_flags() 251 if !self.options.rust_features.untagged_union && in command_line_flags() 252 RustFeatures::from(self.options.rust_target).untagged_union in command_line_flags() 257 if self.options.default_enum_style != Default::default() { in command_line_flags() 260 match self.options.default_enum_style { in command_line_flags() 280 if self.options.default_macro_constant_type != Default::default() { in command_line_flags() 283 .push(self.options.default_macro_constant_type.as_str().into()); in command_line_flags() 286 if self.options.default_alias_style != Default::default() { in command_line_flags() 289 .push(self.options.default_alias_style.as_str().into()); in command_line_flags() [all …]
|
/external/tcpdump/tests/ |
D | resp_3.out | 1 …59 > 127.0.0.1.6379: Flags [F.], seq 2169831382, ack 489972337, win 342, options [nop,nop,TS val 1… 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 1… 3 …3 20:01:00.856944 IP 127.0.0.1.52759 > 127.0.0.1.6379: Flags [.], ack 2, win 342, options [nop,no… 4 …P 127.0.0.1.52760 > 127.0.0.1.6379: Flags [S], seq 264055152, win 43690, options [mss 65495,sackOK… 5 …> 127.0.0.1.52760: Flags [S.], seq 4227148888, ack 264055153, win 43690, options [mss 65495,sackOK… 6 …6 20:01:00.864573 IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [.], ack 1, win 342, options [nop,no… 7 …P 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 …8 20:01:00.864641 IP 127.0.0.1.6379 > 127.0.0.1.52760: Flags [.], ack 7, win 342, options [nop,no… 9 … 127.0.0.1.6379 > 127.0.0.1.52760: Flags [P.], seq 1:28, ack 7, win 342, options [nop,nop,TS val 1… 10 …10 20:01:00.864690 IP 127.0.0.1.52760 > 127.0.0.1.6379: Flags [.], ack 28, win 342, options [nop,… [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/webrtc/rtc_tools/ |
D | compare_videos.py | 57 options, _ = parser.parse_args() 59 if not options.ref_video: 61 if not os.path.exists(options.ref_video): 62 parser.error('Cannot find the reference video at %s' % options.ref_video) 64 if not options.test_video: 66 if not os.path.exists(options.test_video): 67 parser.error('Cannot find the test video at %s' % options.test_video) 69 if not options.frame_analyzer: 71 if not os.path.exists(options.frame_analyzer): 73 options.frame_analyzer) [all …]
|