| /third_party/astc-encoder/Test/ |
| D | astc_test_functional.py | 403 def exec(self, command, pattern=None): argument 421 result = sp.run(command, stdout=sp.PIPE, stderr=sp.PIPE, 431 print("\n" + " ".join(command)) 433 print("\n" + ", ".join(("\"%s\"" % x for x in command))) 464 command = [self.binary, "-cl", imIn, imOut, "6x6", "-exhaustive"] 465 self.exec(command) 476 command = [self.binary, "-cs", imIn, imOut, "6x6", "-exhaustive"] 477 self.exec(command) 488 command = [self.binary, "-ch", imIn, imOut, "6x6", "-exhaustive"] 489 self.exec(command) [all …]
|
| /third_party/toybox/toys/posix/ |
| D | sed.c | 244 static void *get_regex(void *command, int offset) in get_regex() argument 251 return TT.lastregex = offset+(char *)command; in get_regex() 264 struct sedcmd *command; in sed_line() local 287 command = TT.restart ? ((struct sedcmd *)TT.restart)-1 : (void *)TT.pattern; in sed_line() 290 while (command) { in sed_line() 291 char *str, c = command->c; in sed_line() 294 if (*command->lmatch || *command->rmatch) { in sed_line() 299 if (command->hit) { in sed_line() 300 if (!(lm = command->lmatch[1])) { in sed_line() 301 if (!command->rmatch[1]) command->hit = 0; in sed_line() [all …]
|
| /third_party/python/Doc/distutils/ |
| D | commandref.rst | 9 .. % \section{Building modules: the \protect\command{build} command family} 11 .. % \subsubsection{\protect\command{build}} 13 .. % \subsubsection{\protect\command{build\_py}} 15 .. % \subsubsection{\protect\command{build\_ext}} 17 .. % \subsubsection{\protect\command{build\_clib}} 23 Installing modules: the :command:`install` command family 26 The install command ensures that the build commands have been run and then runs 27 the subcommands :command:`install_lib`, :command:`install_data` and 28 :command:`install_scripts`. 30 .. % \subsubsection{\protect\command{install\_lib}} [all …]
|
| /third_party/vk-gl-cts/scripts/opengl/ |
| D | gen_wrapper.py | 36 def commandAliasDefinition (command): argument 37 return "#define\t%s\t%s" % (command.name, getMangledName(command.name)) 39 def commandWrapperDeclaration (command): argument 41 command.type, 42 getMangledName(command.name), 43 ", ".join([param.declaration for param in command.params])) 51 def getDefaultReturn (command): argument 52 if command.name == "glGetError": 55 assert command.type != 'void' 56 return "(%s)0" % command.type [all …]
|
| D | gen_null_render_context.py | 57 def commandDummyImpl (command): argument 58 if command.name in OVERRIDE_FUNCS: 66 returnType = command.type, 67 commandName = command.name, 68 paramDecls = commandParams(command), 69 body = ''.join("\tDE_UNREF(%s);\n" % p.name for p in command.params), 70 maybeReturn = "\n\treturn (%s)0;" % command.type if command.type != 'void' else "") 72 def commandInitStatement (command): argument 73 return "gl->%s\t= %s;" % (getFunctionMemberName(command.name), command.name)
|
| /third_party/vk-gl-cts/scripts/egl/ |
| D | library.py | 33 def virtualMemberDecl (command): argument 35 command.type, 36 getFunctionMemberName(command.name), 37 commandParams(command)) 39 def concreteMemberDecl (command): argument 41 command.type, 42 getFunctionMemberName(command.name), 43 commandParams(command)) 45 def memberImpl (command): argument 52 returnType = command.type, [all …]
|
| D | gtf_wrapper.py | 39 def commandAliasDefinition (command): argument 40 return "#define\t%s\t%s" % (command.name, getMangledName(command.name)) 42 def commandWrapperDeclaration (command): argument 44 command.type, 45 getMangledName(command.name), 46 ", ".join([param.declaration for param in command.params])) 54 def commandWrapperDefinition (command): argument 66 for param in command.params: 73 returnType = command.type, 74 mangledName = "eglw" + command.name[3:], [all …]
|
| D | call_log_wrapper.py | 71 def prefixedParams (command): argument 72 if len(command.params) > 0: 73 return ", ".join(eglwPrefix(param.declaration) for param in command.params) 77 def commandLogWrapperMemberDecl (command): argument 78 return "%s\t%s\t(%s);" % (eglwPrefix(command.type), command.name, prefixedParams(command)) 90 def commandLogWrapperMemberDef (command): argument 93 logSpec = CALL_LOG_SPECS[command.name] 98 …rapper::%s (%s)\n{\n" % (eglwPrefix(command.type), command.name, ", ".join(eglwPrefix(p.declaratio… 101 callPrintItems = ["\"%s(\"" % command.name] 102 for paramNdx, param in enumerate(command.params): [all …]
|
| /third_party/toybox/scripts/ |
| D | mkflags.c | 18 char *command; member 95 new->command = ++string; in digest() 98 if (list && list->command) { in digest() 131 new->command = string++; in digest() 157 char command[256], flags[1023], allflags[1024]; in main() local 173 *command = *flags = *allflags = 0; in main() 175 command, flags, allflags); in main() 181 command, flags, allflags); in main() 183 if (!*command) break; in main() 185 fprintf(stderr, "\nError in %s (see generated/flags.raw)\n", command); in main() [all …]
|
| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| D | projectReferenceCompileOnSave.ts | 48 command: protocol.CommandTypes.CompileOnSaveAffectedFileList, 54 command: protocol.CommandTypes.CompileOnSaveEmitFile, 60 command: protocol.CommandTypes.EmitOutput, 72 command: protocol.CommandTypes.CompileOnSaveAffectedFileList, 78 command: protocol.CommandTypes.CompileOnSaveEmitFile, 84 command: protocol.CommandTypes.EmitOutput, 95 command: protocol.CommandTypes.CompileOnSaveAffectedFileList, 102 command: protocol.CommandTypes.CompileOnSaveAffectedFileList, 108 command: protocol.CommandTypes.CompileOnSaveEmitFile, 114 command: protocol.CommandTypes.EmitOutput, [all …]
|
| /third_party/rust/crates/clap/tests/derive/ |
| D | help.rs | 15 let cmd = CliOptions::command(); in arg_help_heading_applied() 33 #[command(next_help_heading = "DEFAULT")] in app_help_heading_applied() 43 let cmd = CliOptions::command(); in app_help_heading_applied() 68 #[command(flatten)] in app_help_heading_flattened() 71 #[command(flatten)] in app_help_heading_flattened() 74 #[command(subcommand)] in app_help_heading_flattened() 82 #[command(next_help_heading = "HEADING A")] in app_help_heading_flattened() 89 #[command(next_help_heading = "HEADING B")] in app_help_heading_flattened() 97 #[command(flatten)] in app_help_heading_flattened() 99 #[command(subcommand)] in app_help_heading_flattened() [all …]
|
| /third_party/ffmpeg/doc/ |
| D | t2h.pm | 30 my $command = shift; 38 $result .= $self->command_string($command) ."\n" if ($cmdname ne 'node'); 43 my $element_id = $self->command_id($command); 47 print STDERR "Process $command " 48 .Texinfo::Structuring::_print_root_command_texi($command)."\n" 51 if ($Texinfo::Common::root_commands{$command->{'cmdname'}} 52 and $command->{'parent'} 53 and $command->{'parent'}->{'type'} 54 and $command->{'parent'}->{'type'} eq 'element') { 55 $element = $command->{'parent'}; [all …]
|
| /third_party/node/deps/npm/node_modules/node-gyp/test/ |
| D | process-exec-sync.js | 15 var child, error, timeout, tmpdir, command 16 command = makeCommand(file, args) 44 command = '(' + command + ' > ' + tmpdir + '/stdout 2> ' + tmpdir + 47 command = '(' + command + ' > ' + tmpdir + '/stdout 2> ' + tmpdir + 52 child = childProcess.exec(command, options) 90 var command, quote 91 command = file 94 command = command + ' ' 96 command = command + args[i] 99 command = command + '"' [all …]
|
| /third_party/python/Lib/test/ |
| D | test_sundry.py | 30 import distutils.command.bdist_dumb 32 import distutils.command.bdist_msi 33 import distutils.command.bdist 34 import distutils.command.bdist_rpm 35 import distutils.command.build_clib 36 import distutils.command.build_ext 37 import distutils.command.build 38 import distutils.command.clean 39 import distutils.command.config 40 import distutils.command.install_data [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | spreadOverwritesPropertyStrict.types | 80 function i(b: boolean, t: { command: string, ok: string }) { 81 >i : (b: boolean, t: { command: string; ok: string;}) => { command: string; ok?: string | und… 83 >t : { command: string; ok: string; } 84 >command : string 87 return { command: "hi", ...(b ? t : {}) } // ok 88 >{ command: "hi", ...(b ? t : {}) } : { command: string; ok?: string | undefined; } 89 >command : string 91 >(b ? t : {}) : { command: string; ok: string; } | {} 92 >b ? t : {} : { command: string; ok: string; } | {} 94 >t : { command: string; ok: string; } [all …]
|
| /third_party/vk-gl-cts/external/amber/src/src/ |
| D | verifier.cc | 95 Result CheckActualValue(const ProbeSSBOCommand* command, in CheckActualValue() argument 98 const auto comp = command->GetComparator(); in CheckActualValue() 99 const auto& tolerance = command->GetTolerances(); in CheckActualValue() 135 command->HasTolerances() ? tolerance[0].value : kEpsilon, in CheckActualValue() 136 command->HasTolerances() ? tolerance[0].is_percent : true)) { in CheckActualValue() 166 Result CheckValue(const ProbeSSBOCommand* command, in CheckValue() argument 170 return CheckActualValue<T>(command, *ptr, value); in CheckValue() 173 void SetupToleranceForTexels(const ProbeCommand* command, in SetupToleranceForTexels() argument 176 if (command->HasTolerances()) { in SetupToleranceForTexels() 177 const auto& tol = command->GetTolerances(); in SetupToleranceForTexels() [all …]
|
| /third_party/skia/tools/ |
| D | dump_record.cpp | 45 void operator()(const T& command) { in operator ()() argument 47 fDraw(command); in operator ()() 48 this->print(command, SkTime::GetNSecs() - start); in operator ()() 56 void print(const T& command, double ns) { in print() argument 57 this->printNameAndTime(command, ns); in print() 60 void print(const SkRecords::Restore& command, double ns) { in print() argument 62 this->printNameAndTime(command, ns); in print() 65 void print(const SkRecords::Save& command, double ns) { in print() argument 66 this->printNameAndTime(command, ns); in print() 70 void print(const SkRecords::SaveLayer& command, double ns) { in print() argument [all …]
|
| /third_party/node/deps/v8/third_party/inspector_protocol/templates/ |
| D | TypeBuilder_cpp.template | 85 {% for command in join_arrays(domain, ["commands", "events"]) %} 86 {% for param in join_arrays(command, ["parameters", "returns"]) %} 89 namespace {{command.name | to_title_case}} { 95 } // namespace {{command.name | to_title_case }} 96 {% if protocol.is_exported(domain.domain, command.name + "." + param.name) %} 99 namespace {{command.name | to_title_case}} { 105 } // namespace {{command.name | to_title_case }} 162 {% for command in domain.commands %} 163 {% if "redirect" in command %}{% continue %}{% endif %} 164 {% if not protocol.generate_command(domain.domain, command.name) %}{% continue %}{% endif %} [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/doc/docbook/ |
| D | wpa_priv.sgml | 16 <command>wpa_priv</command> 27 <para><command>wpa_priv</command> is a privilege separation helper that 28 minimizes the size of <command>wpa_supplicant</command> code that needs 39 <para><command>wpa_priv</command> needs to be run with network admin 41 interface that is included on the command line; any other interface will 42 be off limits for <command>wpa_supplicant</command> in this kind of 43 configuration. After this, <command>wpa_supplicant</command> can be run as 52 <command>wpa_priv</command> to allow users in the 54 <command>wpa_supplicant</command> with privilege separation:</para> 69 <para>Start <command>wpa_priv</command> as root (e.g., from system [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/doc/docbook/ |
| D | wpa_priv.sgml | 20 <command>wpa_priv</command> 31 <para><command>wpa_priv</command> is a privilege separation helper that 32 minimizes the size of <command>wpa_supplicant</command> code that needs 43 <para><command>wpa_priv</command> needs to be run with network admin 45 interface that is included on the command line; any other interface will 46 be off limits for <command>wpa_supplicant</command> in this kind of 47 configuration. After this, <command>wpa_supplicant</command> can be run as 56 <command>wpa_priv</command> to allow users in the 58 <command>wpa_supplicant</command> with privilege separation:</para> 73 <para>Start <command>wpa_priv</command> as root (e.g., from system [all …]
|
| /third_party/openGLES/xml/ |
| D | glxproto.reserved.txt | 483 2 16+4*count*2*3 rendering command length 484 2 305 rendering command opcode 491 If the command is encoded in a glXRenderLarge request, the 492 command opcode and command length fields above are expanded to 495 4 20+4*count*2*2 rendering command length 496 4 305 rendering command opcode 500 2 16+4*count*3*2 rendering command length 501 2 306 rendering command opcode 508 If the command is encoded in a glXRenderLarge request, the 509 command opcode and command length fields above are expanded to [all …]
|
| /third_party/skia/third_party/externals/opengl-registry/xml/ |
| D | glxproto.reserved.txt | 454 2 16+4*count*2*3 rendering command length 455 2 305 rendering command opcode 462 If the command is encoded in a glXRenderLarge request, the 463 command opcode and command length fields above are expanded to 466 4 20+4*count*2*2 rendering command length 467 4 305 rendering command opcode 471 2 16+4*count*3*2 rendering command length 472 2 306 rendering command opcode 479 If the command is encoded in a glXRenderLarge request, the 480 command opcode and command length fields above are expanded to [all …]
|
| /third_party/typescript/src/server/ |
| D | protocol.ts | 187 command: string; property 199 command: CommandTypes.ReloadProjects; property 238 command: string; property 289 command: CommandTypes.Status; property 310 command: CommandTypes.DocCommentTemplate; property 324 command: CommandTypes.TodoComments; property 349 command: CommandTypes.GetSpanOfEnclosingComment; property 364 command: CommandTypes.GetOutliningSpans; property 401 command: CommandTypes.GetOutliningSpansFull; property 416 command: CommandTypes.Indentation; property [all …]
|
| /third_party/node/benchmark/child_process/ |
| D | child-process-params.js | 6 const command = 'echo'; constant 31 for (let i = 0; i < n; i++) method(command).kill(); 36 for (let i = 0; i < n; i++) method(command, options).kill(); 41 for (let i = 0; i < n; i++) method(command, options, cb).kill(); 50 for (let i = 0; i < n; i++) method(command); 55 for (let i = 0; i < n; i++) method(command, options); 64 for (let i = 0; i < n; i++) method(command).kill(); 69 for (let i = 0; i < n; i++) method(command, args).kill(); 74 for (let i = 0; i < n; i++) method(command, args, options).kill(); 79 for (let i = 0; i < n; i++) method(command, args, options, cb).kill(); [all …]
|
| /third_party/node/test/parallel/ |
| D | test-debugger-object-type-remote-object.js | 16 await cli.command('exec new Date(0)'); 18 await cli.command('exec null'); 20 await cli.command('exec /regex/g'); 22 await cli.command('exec new Map()'); 24 await cli.command('exec new Map([["a",1],["b",2]])'); 26 await cli.command('exec new Set()'); 28 await cli.command('exec new Set([1,2])'); 30 await cli.command('exec new Set([{a:1},new Set([1])])'); 32 await cli.command('exec a={}; a'); 34 await cli.command('exec a={a:1,b:{c:1}}; a'); [all …]
|