Home
last modified time | relevance | path

Searched refs:arg_line (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/
Dgen_common.py121 def convert_arg_line_to_args(self, arg_line): argument
123 arg_line = arg_line.split('#', 1)[0]
125 arg_line = arg_line.replace('\\', '\\\\')
126 for arg in shlex.split(arg_line):
157 for arg_line in args_file.read().splitlines():
158 for arg in self.convert_arg_line_to_args(arg_line):
/external/python/cpython2/Lib/
Dargparse.py2007 for arg_line in args_file.read().splitlines():
2008 for arg in self.convert_arg_line_to_args(arg_line):
2021 def convert_arg_line_to_args(self, arg_line): argument
2022 return [arg_line]
/external/python/cpython3/Lib/
Dargparse.py2050 for arg_line in args_file.read().splitlines():
2051 for arg in self.convert_arg_line_to_args(arg_line):
2062 def convert_arg_line_to_args(self, arg_line): argument
2063 return [arg_line]
/external/python/cpython2/Doc/library/
Dargparse.rst1891 .. method:: ArgumentParser.convert_arg_line_to_args(arg_line)
1898 This method takes a single argument *arg_line* which is a string read from
1905 def convert_arg_line_to_args(self, arg_line):
1906 return arg_line.split()
/external/python/cpython3/Doc/library/
Dargparse.rst1967 .. method:: ArgumentParser.convert_arg_line_to_args(arg_line)
1974 This method takes a single argument *arg_line* which is a string read from
1982 def convert_arg_line_to_args(self, arg_line):
1983 return arg_line.split()
/external/python/cpython2/Lib/test/
Dtest_argparse.py1399 def convert_arg_line_to_args(self, arg_line): argument
1400 for arg in arg_line.split():
/external/python/cpython3/Lib/test/
Dtest_argparse.py1419 def convert_arg_line_to_args(self, arg_line): argument
1420 for arg in arg_line.split():