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

1 2 3

  /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('\\', '\\\\'))
  /external/vixl/tools/
util.py 29 import shlex namespace
41 args = shlex.split(command)
  /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)
  /external/lldb/examples/customization/pwd-cd-and-system/
utils.py 3 import os, shlex, subprocess namespace
38 args = shlex.split(command_line)
  /external/lldb/examples/python/
stacks.py 6 import shlex namespace
9 command_args = shlex.split(command)
cmdtemplate.py 15 import shlex namespace
34 command_args = shlex.split(command)
delta.py 22 import shlex namespace
51 command_args = shlex.split(command)
lldb_module_utils.py 5 import shlex namespace
18 command_args = shlex.split(command)
  /external/deqp/scripts/
cppcheck.py 5 import shlex namespace
  /external/chromium_org/build/
landmine_utils.py 9 import shlex namespace
48 for arg in shlex.split(os.environ.get('GYP_DEFINES', '')))
gyp_chromium 14 import shlex namespace
123 shlex.split(os.environ.get('GYP_DEFINES', '')))
150 env_items = shlex.split(os.environ.get('GYP_GENERATOR_FLAGS', ''))
237 # path separators even on Windows due to the use of shlex.split().
238 args.extend(shlex.split(gyp_file))
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
action_useragentstylesheets.py 49 import shlex namespace
102 splitOptions = shlex.split(options[definesIndex + 1])
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader_win.py 31 import shlex namespace
104 gyp_defines = shlex.split(gyp_defines)
  /external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
run_audio_test.py 23 import shlex namespace
113 command = shlex.split(options.compare) + [options.input, options.output]
  /external/deqp/android/scripts/
common.py 5 import shlex namespace
59 args = shlex.split(commandLine)
  /external/deqp/scripts/build/
common.py 4 import shlex namespace
  /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/pylib/gtest/
test_package_apk.py 10 import shlex namespace
69 args = shlex.split(device.old_interface.Adb()._target_arg)
  /external/chromium_org/third_party/skia/platform_tools/android/bin/
adb_list_devices.py 12 import shlex namespace
143 line_list = shlex.split(line)
  /external/chromium_org/v8/build/
gyp_v8 36 import shlex namespace
137 # path separators even on Windows due to the use of shlex.split().
138 args.extend(shlex.split(gyp_file))
  /external/skia/platform_tools/android/bin/
adb_list_devices.py 12 import shlex namespace
143 line_list = shlex.split(line)

Completed in 927 milliseconds

1 2 3