Home | History | Annotate | Download | only in tools

Lines Matching refs:Command

16 be passed via the command line.
122 """Escapes a Windows command-line argument.
127 ("Parsing C++ Command-Line Arguments") to understand why we have to do
152 """Generates the command line for |tool|."""
161 # Append the list of defines and extensions to the command line switches.
174 # Generate the actual command line
180 """Runs a command interpreting the passed |args| as a command line."""
181 command = ' '.join(map(QuoteArgument, args))
183 command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
186 print command