Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 4302) sorted by relevance

12345678910>>...173

/third_party/toybox/toys/posix/
Dsed.c244 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/
Dcommandref.rst9 .. % \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/
Dgen_wrapper.py36 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 …]
Dgen_null_render_context.py57 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/
Dlibrary.py33 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 …]
Dgtf_wrapper.py39 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 …]
Dcall_log_wrapper.py71 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/
Dmkflags.c18 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/flutter/skia/tools/
DDumpRecord.cpp34 void operator()(const T& command) { in operator ()() argument
36 fDraw(command); in operator ()()
37 this->print(command, SkTime::GetNSecs() - start); in operator ()()
45 void print(const T& command, double ns) { in print() argument
46 this->printNameAndTime(command, ns); in print()
49 void print(const SkRecords::Restore& command, double ns) { in print() argument
51 this->printNameAndTime(command, ns); in print()
54 void print(const SkRecords::Save& command, double ns) { in print() argument
55 this->printNameAndTime(command, ns); in print()
59 void print(const SkRecords::SaveLayer& command, double ns) { in print() argument
[all …]
/third_party/rust/crates/clap/tests/derive/
Dhelp.rs15 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/
Dt2h.pm30 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/
Dprocess-exec-sync.js15 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/
Dtest_sundry.py30 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/
DspreadOverwritesPropertyStrict.types80 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/skia/tools/
Ddump_record.cpp45 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/flutter/flutter/dev/devicelab/test/
Dadb_test.dart44 cmd(command: 'input', arguments: <String>['keyevent', '26']),
54 cmd(command: 'dumpsys', arguments: <String>['power']),
62 cmd(command: 'dumpsys', arguments: <String>['power']),
63 cmd(command: 'input', arguments: <String>['keyevent', '26']),
73 cmd(command: 'dumpsys', arguments: <String>['power']),
81 cmd(command: 'dumpsys', arguments: <String>['power']),
82 cmd(command: 'input', arguments: <String>['keyevent', '26']),
92 cmd(command: 'dumpsys', arguments: <String>['power']),
93 cmd(command: 'input', arguments: <String>['keyevent', '82']),
102 cmd(command: 'input', arguments: <String>['tap', '100', '200']),
[all …]
/third_party/node/deps/npm/node_modules/cross-spawn/lib/
Dparse.js26 parsed.file = resolveCommand(parsed.command);
27 parsed.file = parsed.file || resolveCommand(parsed.command, true);
32 parsed.command = shebang;
41 …applyQuotes = (parsed.command !== 'echo'); // Do not quote arguments for the special "echo" comma…
42 parsed.command = escapeCommand(parsed.command);
48 …parsed.args = ['/d', '/s', '/c', '"' + parsed.command + (parsed.args.length ? ' ' + parsed.args.jo…
49 parsed.command = process.env.comspec || 'cmd.exe';
65 shellCommand = [parsed.command].concat(parsed.args).join(' ');
68 …parsed.command = typeof parsed.options.shell === 'string' ? parsed.options.shell : process.env.com…
73 parsed.command = parsed.options.shell;
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/doc/docbook/
Dwpa_priv.sgml20 <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/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/doc/docbook/
Dwpa_priv.sgml16 <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/typescript/src/server/
Dprotocol.ts185 command: string; property
197 command: CommandTypes.ReloadProjects; property
236 command: string; property
287 command: CommandTypes.Status; property
308 command: CommandTypes.DocCommentTemplate; property
322 command: CommandTypes.TodoComments; property
347 command: CommandTypes.GetSpanOfEnclosingComment; property
362 command: CommandTypes.GetOutliningSpans; property
399 command: CommandTypes.GetOutliningSpansFull; property
414 command: CommandTypes.Indentation; property
[all …]
/third_party/skia/third_party/externals/opengl-registry/xml/
Dglxproto.reserved.txt454 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/openGLES/xml/
Dglxproto.reserved.txt483 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/flutter/skia/third_party/externals/dawn/generator/templates/dawn_wire/
DWireCmd.h68 {% for command in cmd_records["command"] %}
69 {{command.name.CamelCase()}},
75 {% for command in cmd_records["return command"] %}
76 {{command.name.CamelCase()}},
80 {% macro write_command_struct(command, is_return_command) %}
82 {% set Cmd = command.name.CamelCase() + "Cmd" %}
90 {%- if command.has_dawn_object -%}
103 {%- if command.has_dawn_object -%}
108 {% if command.derived_method %}
114 {% for member in command.members %}
[all …]
/third_party/node/benchmark/child_process/
Dchild-process-params.js6 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/typescript/lib/
Dprotocol.d.ts98 command: string; property
108 command: CommandTypes.ReloadProjects; property
140 command: string; property
180 command: CommandTypes.Status; property
198 command: CommandTypes.DocCommentTemplate; property
210 command: CommandTypes.TodoComments; property
232 command: CommandTypes.GetSpanOfEnclosingComment; property
245 command: CommandTypes.GetOutliningSpans; property
274 command: CommandTypes.Indentation; property
319 command: CommandTypes.ProjectInfo; property
[all …]

12345678910>>...173