Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/
Dgen_common.py243 def convert_arg_line_to_args(self, arg_line): argument
245 arg_line = arg_line.split('#', 1)[0]
247 arg_line = arg_line.replace('\\', '\\\\')
248 for arg in shlex.split(arg_line):
279 for arg_line in args_file.read().splitlines():
280 for arg in self.convert_arg_line_to_args(arg_line):
/third_party/python/Lib/
Dargparse.py2130 for arg_line in args_file.read().splitlines():
2131 for arg in self.convert_arg_line_to_args(arg_line):
2142 def convert_arg_line_to_args(self, arg_line): argument
2143 return [arg_line]
/third_party/python/Doc/library/
Dargparse.rst2040 .. method:: ArgumentParser.convert_arg_line_to_args(arg_line)
2047 This method takes a single argument *arg_line* which is a string read from
2055 def convert_arg_line_to_args(self, arg_line):
2056 return arg_line.split()
/third_party/python/Lib/test/
Dtest_argparse.py1505 def convert_arg_line_to_args(self, arg_line): argument
1506 for arg in arg_line.split():