HomeSort by relevance Sort by last modified time
    Searched full:co_argcount (Results 1 - 25 of 32) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_new.py 111 argcount = c.co_argcount
135 # negative co_argcount used to trigger a SystemError
test_import.py 480 code = type(code)(code.co_argcount, code.co_nlocals, code.co_stacksize,
test_subprocess.py 138 argcount = subprocess.Popen.__init__.__code__.co_argcount
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_new.py 111 argcount = c.co_argcount
135 # negative co_argcount used to trigger a SystemError
test_import.py 480 code = type(code)(code.co_argcount, code.co_nlocals, code.co_stacksize,
test_subprocess.py 138 argcount = subprocess.Popen.__init__.__code__.co_argcount
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
code.h 12 int co_argcount; /* #arguments, except *args */ member in struct:__anon68316
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
code.h 12 int co_argcount; /* #arguments, except *args */ member in struct:__anon68439
  /development/tools/axl/
singletonmixin.py 86 return cls.__init__.im_func.func_code.co_argcount - 1
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 155 argcount = fob.func_code.co_argcount
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 155 argcount = fob.func_code.co_argcount
  /external/lldb/examples/python/
pytracer.py 52 return self.c.co_argcount if self.c != None else 0
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py 213 co_argcount number of arguments (not including * or ** args)
753 nargs = co.co_argcount
    [all...]
modulefinder.py 601 return types.CodeType(co.co_argcount, co.co_nlocals, co.co_stacksize,
pdb.py 741 n = co.co_argcount
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py 213 co_argcount number of arguments (not including * or ** args)
753 nargs = co.co_argcount
    [all...]
modulefinder.py 601 return types.CodeType(co.co_argcount, co.co_nlocals, co.co_stacksize,
pdb.py 741 n = co.co_argcount
    [all...]
  /external/selinux/sepolgen/src/sepolgen/
yacc.py 460 if 1 and isinstance(v,types.FunctionType) and v.func_code.co_argcount == 1:
734 if f.func_code.co_argcount > reqdargs:
738 if f.func_code.co_argcount < reqdargs:
    [all...]
lex.py 660 nargs = f.func_code.co_argcount
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
yacc.py 460 if 1 and isinstance(v,types.FunctionType) and v.func_code.co_argcount == 1:
734 if f.func_code.co_argcount > reqdargs:
738 if f.func_code.co_argcount < reqdargs:
    [all...]
lex.py 660 nargs = f.func_code.co_argcount
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/
yacc.py 460 if 1 and isinstance(v,types.FunctionType) and v.func_code.co_argcount == 1:
734 if f.func_code.co_argcount > reqdargs:
738 if f.func_code.co_argcount < reqdargs:
    [all...]
lex.py 660 nargs = f.func_code.co_argcount
    [all...]
  /external/lldb/test/pexpect-2.4/examples/
rippy.py 378 argcount = func.func_code.co_argcount
    [all...]

Completed in 915 milliseconds

1 2