HomeSort by relevance Sort by last modified time
    Searched refs:star_args (Results 1 - 13 of 13) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
ast.py 282 def __init__(self, node, args, star_args = None, dstar_args = None, lineno=None):
285 self.star_args = star_args
293 children.append(self.star_args)
301 if self.star_args is not None:
302 nodelist.append(self.star_args)
308 return "CallFunc(%s, %s, %s, %s)" % (repr(self.node), repr(self.args), repr(self.star_args), repr(self.dstar_args))
    [all...]
pycodegen.py     [all...]
  /external/python/cpython2/Lib/compiler/
ast.py 282 def __init__(self, node, args, star_args = None, dstar_args = None, lineno=None):
285 self.star_args = star_args
293 children.append(self.star_args)
301 if self.star_args is not None:
302 nodelist.append(self.star_args)
308 return "CallFunc(%s, %s, %s, %s)" % (repr(self.node), repr(self.args), repr(self.star_args), repr(self.dstar_args))
    [all...]
pycodegen.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
ast.py 282 def __init__(self, node, args, star_args = None, dstar_args = None, lineno=None):
285 self.star_args = star_args
293 children.append(self.star_args)
301 if self.star_args is not None:
302 nodelist.append(self.star_args)
308 return "CallFunc(%s, %s, %s, %s)" % (repr(self.node), repr(self.args), repr(self.star_args), repr(self.dstar_args))
    [all...]
pycodegen.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
ast.py 282 def __init__(self, node, args, star_args = None, dstar_args = None, lineno=None):
285 self.star_args = star_args
293 children.append(self.star_args)
301 if self.star_args is not None:
302 nodelist.append(self.star_args)
308 return "CallFunc(%s, %s, %s, %s)" % (repr(self.node), repr(self.args), repr(self.star_args), repr(self.dstar_args))
    [all...]
pycodegen.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 282 def __init__(self, node, args, star_args = None, dstar_args = None, lineno=None):
285 self.star_args = star_args
293 children.append(self.star_args)
301 if self.star_args is not None:
302 nodelist.append(self.star_args)
308 return "CallFunc(%s, %s, %s, %s)" % (repr(self.node), repr(self.args), repr(self.star_args), repr(self.dstar_args))
    [all...]
pycodegen.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 282 def __init__(self, node, args, star_args = None, dstar_args = None, lineno=None):
285 self.star_args = star_args
293 children.append(self.star_args)
301 if self.star_args is not None:
302 nodelist.append(self.star_args)
308 return "CallFunc(%s, %s, %s, %s)" % (repr(self.node), repr(self.args), repr(self.star_args), repr(self.dstar_args))
    [all...]
pycodegen.py     [all...]
  /external/python/cpython3/Lib/
argparse.py 121 star_args = {}
128 star_args[name] = value
129 if star_args:
130 arg_strings.append('**%s' % repr(star_args))
    [all...]

Completed in 446 milliseconds