| /external/toybox/toys/posix/ |
| D | sed.c | 1 /* sed.c - stream editor. Thing that does s/// and other stuff. 13 * What's the right thing to do for -i when write fails? Skip to next? 16 * Deviations from POSIX: allow extended regular expressions with -r, 17 * editing in place with -i, separate with -s, NUL-delimited strings with -z, 18 * printf escapes in text, line continuations, semicolons after all commands, 19 * 2-address anywhere an address is allowed, "T" command, multiline 20 * continuations for [abc], \; to end [abc] argument before end of line. 23 * Added --tarxform mode to support tar --xform 25 USE_SED(NEWTOY(sed, "(help)(version)(tarxform)e*f*i:;nErz(null-data)s[+Er]", TOYFLAG_BIN|TOYFLAG_NO… 31 usage: sed [-inrszE] [-e SCRIPT]...|SCRIPT [-f SCRIPT_FILE]... [FILE...] [all …]
|
| /external/linux-kselftest/android/ |
| D | vts_linux_kselftest_x86_32.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2020 The Android Open Source Project 6 http://www.apache.org/licenses/LICENSE-2.0 12 --> 17 <option name="test-suite-tag" value="vts" /> 18 <option name="config-descriptor:metadata" key="component" value="kselftests" /> 29 <option name="push-file" key="{MODULE}" value="&ktest_dir;" /> 30 …-push" value='chmod -R 755 &ktest_dir;; find &ktest_dir; -type f | xargs grep -l -e "bin/sh" -e "b… 34 <option name="exit-code-skip" value="4" /> 35 <option name="skip-binary-check" value="true" /> [all …]
|
| D | vts_linux_kselftest_x86_64.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2020 The Android Open Source Project 6 http://www.apache.org/licenses/LICENSE-2.0 12 --> 17 <option name="test-suite-tag" value="vts" /> 18 <option name="config-descriptor:metadata" key="component" value="kselftests" /> 29 <option name="push-file" key="{MODULE}" value="&ktest_dir;" /> 30 …-push" value='chmod -R 755 &ktest_dir;; find &ktest_dir; -type f | xargs grep -l -e "bin/sh" -e "b… 34 <option name="exit-code-skip" value="4" /> 35 <option name="skip-binary-check" value="true" /> [all …]
|
| D | vts_linux_kselftest_arm_64.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2020 The Android Open Source Project 6 http://www.apache.org/licenses/LICENSE-2.0 12 --> 17 <option name="test-suite-tag" value="vts" /> 18 <option name="config-descriptor:metadata" key="component" value="kselftests" /> 29 <option name="push-file" key="{MODULE}" value="&ktest_dir;" /> 30 …-push" value='chmod -R 755 &ktest_dir;; find &ktest_dir; -type f | xargs grep -l -e "bin/sh" -e "b… 34 <option name="exit-code-skip" value="4" /> 35 <option name="skip-binary-check" value="true" /> [all …]
|
| D | vts_linux_kselftest_arm_32.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2020 The Android Open Source Project 6 http://www.apache.org/licenses/LICENSE-2.0 12 --> 17 <option name="test-suite-tag" value="vts" /> 18 <option name="config-descriptor:metadata" key="component" value="kselftests" /> 29 <option name="push-file" key="{MODULE}" value="&ktest_dir;" /> 30 …-push" value='chmod -R 755 &ktest_dir;; find &ktest_dir; -type f | xargs grep -l -e "bin/sh" -e "b… 34 <option name="exit-code-skip" value="4" /> 35 <option name="skip-binary-check" value="true" /> [all …]
|
| D | vts_linux_kselftest_riscv_64.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2020 The Android Open Source Project 6 http://www.apache.org/licenses/LICENSE-2.0 12 --> 17 <option name="test-suite-tag" value="vts" /> 18 <option name="config-descriptor:metadata" key="component" value="kselftests" /> 29 <option name="push-file" key="{MODULE}" value="&ktest_dir;" /> 30 …-push" value='chmod -R 755 &ktest_dir;; find &ktest_dir; -type f | xargs grep -l -e "bin/sh" -e "b… 34 <option name="exit-code-skip" value="4" /> 35 <option name="skip-binary-check" value="true" /> [all …]
|
| /external/cronet/base/ |
| D | command_line.h | 2 // Use of this source code is governed by a BSD-style license that can be 5 // This class works with command lines: building and parsing. 6 // Arguments with prefixes ('--', '-', and on Windows, '/') are switches. 8 // Switches can optionally have values, delimited by '=', e.g., "-switch=value". 10 // An argument of "--" will terminate switch parsing during initialization, 11 // interpreting subsequent tokens as non-switch arguments, regardless of prefix. 13 // There is a singleton read-only CommandLine that represents the command line 44 // The native command line string type. 59 // Construct a new command line with |program| as argv[0]. 62 // Construct a new command line from an argument list. [all …]
|
| /external/libchrome/base/ |
| D | command_line.h | 2 // Use of this source code is governed by a BSD-style license that can be 5 // This class works with command lines: building and parsing. 6 // Arguments with prefixes ('--', '-', and on Windows, '/') are switches. 8 // Switches can optionally have values, delimited by '=', e.g., "-switch=value". 9 // An argument of "--" will terminate switch parsing during initialization, 10 // interpreting subsequent tokens as non-switch arguments, regardless of prefix. 12 // There is a singleton read-only CommandLine that represents the command line 35 // The native command line string type. 49 // Construct a new command line with |program| as argv[0]. 52 // Construct a new command line from an argument list. [all …]
|
| /external/python/cpython2/Lib/ |
| D | cmd.py | 1 """A generic class to build line-oriented command interpreters. 5 1. End of file on input is processed as the command 'EOF'. 6 2. A command is parsed out of each line by collecting the prefix composed 8 3. A command `foo' is dispatched to a method 'do_foo()'; the do_ method 9 is passed a single argument consisting of the remainder of the line. 10 4. Typing an empty line repeats the last command. (Actually, it calls the 13 calls the command `help_topic'. With no arguments, it lists all topics 16 6. The command '?' is a synonym for `help'. The command '!' is a synonym 20 arguments text, line, begidx, endidx. text is string we are matching 21 against, all returned matches must begin with it. line is the current [all …]
|
| D | nntplib.py | 10 >>> resp, subs = s.xhdr('subject', first + '-' + last) 14 Here 'resp' is the server response line. 40 # maximal line length when calling readline(). This is to prevent 41 # reading arbitrary length lines. RFC 3977 limits NNTP line length to 70 """Response does not begin with [1-5]""" 94 # Line terminators (we always output CRLF, but accept any of CRLF, CR, LF) 104 - host: hostname to connect to 105 - port: port to connect to (default the standard NNTP port) 106 - user: username to authenticate with 107 - password: password to use with username [all …]
|
| /external/autotest/server/site_tests/firmware_Mosys/ |
| D | firmware_Mosys.py | 2 # Use of this source code is governed by a BSD-style license that can be 18 * mosys -k ec info 20 * mosys -k pd info 27 # Parse arguments from command line 38 for line in lines: 40 cmdlst = re.split('\s+', line) 43 elif 'Commands:' in line: 47 def check_for_errors(self, output, command): argument 54 for line in output: 55 if "Bad system call" in line: [all …]
|
| /external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Domains/ |
| D | tDomain_creation_deletion.py | 1 # -*-coding:utf-8 -* 3 # Copyright (c) 2011-2015, Intel Corporation 35 -------------------------- 36 - [createDomain] function 37 - [deleteDomain] function 40 ------------ 41 - Testing nominal cases 42 - Testing domain creation error 43 - Testing domain deletion error 50 # Test of Domains - Basic operations (creations/deletions) [all …]
|
| /external/python/cpython3/Lib/ |
| D | cmd.py | 1 """A generic class to build line-oriented command interpreters. 5 1. End of file on input is processed as the command 'EOF'. 6 2. A command is parsed out of each line by collecting the prefix composed 8 3. A command `foo' is dispatched to a method 'do_foo()'; the do_ method 9 is passed a single argument consisting of the remainder of the line. 10 4. Typing an empty line repeats the last command. (Actually, it calls the 13 calls the command `help_topic'. With no arguments, it lists all topics 16 6. The command '?' is a synonym for `help'. The command '!' is a synonym 20 arguments text, line, begidx, endidx. text is string we are matching 21 against, all returned matches must begin with it. line is the current [all …]
|
| /external/antlr/runtime/C/vsrulefiles/ |
| D | antlr3parser.rules | 1 <?xml version="1.0" encoding="utf-8"?> 10 …java] [JavaOptions] [ANTLR3Jar] org.antlr.Tool [LibDir] -[Absolute]o [OutputDirectory] -message-f… 22 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 33 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 34 Switch="-dfa" 41 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 42 Switch="-nfa" 50 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 51 Switch="-report" 59 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" [all …]
|
| D | antlr3lexerandparser.rules | 1 <?xml version="1.0" encoding="utf-8"?> 10 …java] [JavaOptions] [ANTLR3Jar] org.antlr.Tool [LibDir] -[Absolute]o [OutputDirectory] -message-f… 23 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 34 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 35 Switch="-dfa" 42 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 43 Switch="-nfa" 51 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 52 Switch="-report" 60 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" [all …]
|
| D | antlr3treeparser.rules | 1 <?xml version="1.0" encoding="utf-8"?> 10 …java] [JavaOptions] [ANTLR3Jar] org.antlr.Tool [LibDir] -[Absolute]o [OutputDirectory] -message-f… 22 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 33 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 34 Switch="-dfa" 41 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 42 Switch="-nfa" 50 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 51 Switch="-report" 59 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" [all …]
|
| D | antlr3lexer.rules | 1 <?xml version="1.0" encoding="utf-8"?> 10 …java] [JavaOptions] [ANTLR3Jar] org.antlr.Tool [LibDir] -[Absolute]o [OutputDirectory] -message-fo… 22 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 33 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 34 Switch="-dfa" 41 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 42 Switch="-nfa" 50 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 51 Switch="-report" 59 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" [all …]
|
| /external/python/cpython2/Doc/library/ |
| D | cmd.rst | 1 :mod:`cmd` --- Support for line-oriented command interpreters 5 :synopsis: Build line-oriented command interpreters. 10 -------------- 12 The :class:`Cmd` class provides a simple framework for writing line-oriented 13 command interpreters. These are often useful for test harnesses, administrative 19 A :class:`Cmd` instance or subclass instance is a line-oriented interpreter 26 :mod:`readline` is available, command completion is done automatically. 41 .. _cmd-objects: 44 ----------- 53 the line as argument. [all …]
|
| /external/apache-commons-io/src/main/java/org/apache/commons/io/ |
| D | FileSystemUtils.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 57 private static final int INIT_PROBLEM = -1; 99 } else if (osName.contains("hp-ux") || 113 * the command line. 125 * The free space is calculated via the command line. 126 * It uses 'dir /-c' on Windows and 'df' on *nix. 139 return INSTANCE.freeSpaceOS(path, OS, false, Duration.ofMillis(-1)); in freeSpace() 144 * in kibibytes (1024 bytes) by invoking the command line. 158 return freeSpaceKb(-1); in freeSpaceKb() 163 * in kibibytes (1024 bytes) by invoking the command line. [all …]
|
| /external/tensorflow/tensorflow/python/debug/cli/ |
| D | debugger_cli_common.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 """Building Blocks of TensorFlow Debugger Command-Line Interface.""" 48 """Rich single-line text. 75 """Concatenate two chunks of maybe rich text to make a longer rich line. 138 A formatted, multi-line `RichTextLines` object. 150 """Rich multi-line text. 152 Line-by-line text output, with font attributes (e.g., color) and annotations 153 (e.g., indices in a multi-dimensional tensor). Used as the text output of CLI 166 single-line. 167 font_attr_segs: A map from 0-based row index to a list of 3-tuples. [all …]
|
| /external/libcups/berkeley/ |
| D | lpc.c | 2 * "lpc" command for CUPS. 4 * Copyright 2007-2014 by Apple Inc. 5 * Copyright 1997-2006 by Easy Software Products. 14 #include <cups/cups-private.h> 29 * 'main()' - Parse options and commands. 33 main(int argc, /* I - Number of command-line arguments */ in main() 34 char *argv[]) /* I - Command-line arguments */ in main() 37 char line[1024], /* Input line from user */ in main() local 52 * Process a single command on the command-line... in main() 60 * Do the command prompt thing... in main() [all …]
|
| /external/python/setuptools/setuptools/_distutils/ |
| D | core.py | 5 indirectly provides the Distribution and Command classes, although they are 18 from distutils.cmd import Command 24 # is generated with various --help options: global help, list commands, 25 # and per-command help. 28 or: %(script)s --help [cmd1 cmd2 ...] 29 or: %(script)s --help-commands 30 or: %(script)s cmd --help 60 to do, in a highly flexible and user-driven way. Briefly: create a 61 Distribution instance; find and parse config files; parse the command 62 line; run each Distutils command found there, customized by the options [all …]
|
| /external/python/cpython2/Lib/distutils/ |
| D | core.py | 5 indirectly provides the Distribution and Command classes, although they are 20 from distutils.cmd import Command 26 # is generated with various --help options: global help, list commands, 27 # and per-command help. 30 or: %(script)s --help [cmd1 cmd2 ...] 31 or: %(script)s --help-commands 32 or: %(script)s cmd --help 62 to do, in a highly flexible and user-driven way. Briefly: create a 63 Distribution instance; find and parse config files; parse the command 64 line; run each Distutils command found there, customized by the options [all …]
|
| /external/python/cpython3/Lib/distutils/ |
| D | core.py | 5 indirectly provides the Distribution and Command classes, although they are 17 from distutils.cmd import Command 23 # is generated with various --help options: global help, list commands, 24 # and per-command help. 27 or: %(script)s --help [cmd1 cmd2 ...] 28 or: %(script)s --help-commands 29 or: %(script)s cmd --help 59 to do, in a highly flexible and user-driven way. Briefly: create a 60 Distribution instance; find and parse config files; parse the command 61 line; run each Distutils command found there, customized by the options [all …]
|
| /external/sg3_utils/doc/ |
| D | sg_opcodes.8 | 1 .TH SG_OPCODES "8" "September 2022" "sg3_utils\-1.48" SG3_UTILS 3 sg_opcodes \- report supported SCSI commands or task management functions 6 [\fI\-\-alpha\fR] [\fI\-\-compact\fR] [\fI\-\-enumerate\fR] [\fI\-\-help\fR] 7 [\fI\-\-hex\fR] [\fI\-\-inhex=FN\fR] [\fI\-\-json[=JO]\fR] [\fI\-\-mask\fR] 8 [\fI\-\-mlu\fR] [\fI\-\-no-inquiry\fR] [\fI\-\-opcode=OP[,SA]\fR] 9 [\fI\-\-pdt=DT\fR] [\fI\-\-raw\fR] [\fI\-\-rctd\fR] [\fI\-\-repd\fR] 10 [\fI\-\-sa=SA\fR] [\fI\-\-tmf\fR] [\fI\-\-unsorted\fR] [\fI\-\-verbose\fR] 11 [\fI\-\-version\fR] \fIDEVICE\fR 14 [\fI\-a\fR] [\fI\-c\fR] [\fI\-e\fR] [\fI\-H\fR] [\fI\-i=FN\fR] [\fI\-j\fR] 15 [\fI\-m\fR] [\fI\-M\fR] [\fI\-n\fR] [\fI\-o=OP\fR] [\fI\-p=DT\fR] [\fI\-q\fR] [all …]
|