HomeSort by relevance Sort by last modified time
    Searched full:shlex (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/tools/gyp/test/intermediate_dir/src/
script.py 11 import shlex namespace
15 sys.argv[2], fourth = shlex.split(sys.argv[2].replace('\\', '\\\\'))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shlex.py 19 __all__ = ["shlex", "split"]
21 class shlex: class in inherits:
56 print 'shlex: reading from %s, line %d' \
62 print "shlex: pushing token " + repr(tok)
75 print 'shlex: pushing to file %s' % (self.infile,)
77 print 'shlex: pushing to stream %s' % (self.instream,)
84 print 'shlex: popping to %s, line %d' \
93 print "shlex: popping token " + repr(tok)
115 print "shlex: token=" + repr(raw)
117 print "shlex: token=EOF
    [all...]
netrc.py 5 import os, shlex namespace
35 lexer = shlex.shlex(fp)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shlex.py 19 __all__ = ["shlex", "split"]
21 class shlex: class in inherits:
56 print 'shlex: reading from %s, line %d' \
62 print "shlex: pushing token " + repr(tok)
75 print 'shlex: pushing to file %s' % (self.infile,)
77 print 'shlex: pushing to stream %s' % (self.instream,)
84 print 'shlex: popping to %s, line %d' \
93 print "shlex: popping token " + repr(tok)
115 print "shlex: token=" + repr(raw)
117 print "shlex: token=EOF
    [all...]
netrc.py 5 import os, shlex namespace
35 lexer = shlex.shlex(fp)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_shlex.py 3 import shlex namespace
155 l = shlex.split(data[i][0], comments=comments)
162 lex = shlex.shlex(StringIO(s))
181 # Allow this test to be used with old shlex.py
182 if not getattr(shlex, "split", None):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_shlex.py 3 import shlex namespace
155 l = shlex.split(data[i][0], comments=comments)
162 lex = shlex.shlex(StringIO(s))
181 # Allow this test to be used with old shlex.py
182 if not getattr(shlex, "split", None):
  /external/chromium_org/build/android/gyp/
process_resources.py 11 import shlex namespace
73 res_dirs = shlex.split(options.res_dirs)
  /external/chromium_org/build/android/gyp/util/
build_utils.py 9 import shlex namespace
56 return shlex.split(gyp_string)
  /external/chromium_org/tools/telemetry/telemetry/unittest/
system_stub.py 11 import shlex namespace
56 args = shlex.split(args)
  /external/chromium_org/build/android/pylib/utils/
findbugs.py 10 import shlex namespace
77 out = cmd_helper.GetCmdOutput(shlex.split(cmd))
135 proc = subprocess.Popen(shlex.split(cmd),
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
user.py 34 import shlex namespace
127 args = shlex.split(editor)
139 args = shlex.split(edit_application)
  /external/chromium_org/v8/build/
gyp_v8 36 import shlex namespace
142 # path separators even on Windows due to the use of shlex.split().
143 args.extend(shlex.split(gyp_file))
  /external/chromium/build/
gyp_chromium 12 import shlex namespace
138 # path separators even on Windows due to the use of shlex.split().
139 args.extend(shlex.split(gyp_file))
  /external/chromium_org/build/
gyp_chromium 13 import shlex namespace
121 # path separators even on Windows due to the use of shlex.split().
122 args.extend(shlex.split(gyp_file))
landmines.py 26 import shlex namespace
67 for arg in shlex.split(os.environ.get('GYP_DEFINES', '')))
  /external/v8/build/
gyp_v8 35 import shlex namespace
135 # path separators even on Windows due to the use of shlex.split().
136 args.extend(shlex.split(gyp_file))
  /external/chromium_org/build/android/pylib/gtest/
test_package_apk.py 9 import shlex namespace
75 args = shlex.split(adb.Adb()._target_arg)
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_compiler.py 48 import shlex namespace
77 options.additional_idl_files = shlex.split(options.additional_idl_files)
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
action_useragentstylesheets.py 49 import shlex namespace
102 splitOptions = shlex.split(options[definesIndex + 1])
in_generator.py 30 import shlex namespace
88 defines_strings = shlex.split(defines_arg_string)
  /external/chromium_org/tools/telemetry/docs/
telemetry.core.browser_options.html 28 </td><td width="25%" valign=top><a href="shlex.html">shlex</a><br>
  /external/chromium_org/tools/telemetry/telemetry/core/
browser_options.py 9 import shlex namespace
206 tmp = shlex.split(
211 tmp = shlex.split(
  /external/chromium_org/net/tools/quic/benchmark/
run_client.py 11 import shlex namespace
101 cmd_in_list = shlex.split(cmd)
  /external/chromium_org/v8/tools/
run-deopt-fuzzer.py 38 import shlex namespace
238 options.command_prefix = shlex.split(options.command_prefix)
239 options.extra_flags = shlex.split(options.extra_flags)

Completed in 616 milliseconds

1 2