Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/
Dgen_common.py244 def convert_arg_line_to_args(self, arg_line): argument
246 arg_line = arg_line.split('#', 1)[0]
248 arg_line = arg_line.replace('\\', '\\\\')
249 for arg in shlex.split(arg_line):
280 for arg_line in args_file.read().splitlines():
281 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/llvm-project/polly/utils/
Dargparse.py1985 for arg_line in args_file.read().splitlines():
1986 for arg in self.convert_arg_line_to_args(arg_line):
1999 def convert_arg_line_to_args(self, arg_line): argument
2000 return [arg_line]
/external/python/cpython3/Lib/
Dargparse.py2123 for arg_line in args_file.read().splitlines():
2124 for arg in self.convert_arg_line_to_args(arg_line):
2135 def convert_arg_line_to_args(self, arg_line): argument
2136 return [arg_line]
/external/python/cpython3/Doc/library/
Dargparse.rst2025 .. method:: ArgumentParser.convert_arg_line_to_args(arg_line)
2032 This method takes a single argument *arg_line* which is a string read from
2040 def convert_arg_line_to_args(self, arg_line):
2041 return arg_line.split()
/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/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.py1505 def convert_arg_line_to_args(self, arg_line): argument
1506 for arg in arg_line.split():