HomeSort by relevance Sort by last modified time
    Searched refs:__code__ (Results 1 - 25 of 38) sorted by null

1 2

  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
appletrawmain.py 58 __code__ = marshal.load(_fp) variable
60 # Again, we create an almost-normal environment (only __code__ is
64 exec __code__
bundlebuilder.py 639 site.__code__ = self._getSiteCode()
640 mf.scan_code(site.__code__, site)
663 if path and mod.__code__ is None:
678 mod.__code__ = code
680 if mod.__code__ is not None:
685 self.pymodules.append((name, mod.__code__, ispkg))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
appletrawmain.py 58 __code__ = marshal.load(_fp) variable
60 # Again, we create an almost-normal environment (only __code__ is
64 exec __code__
bundlebuilder.py 639 site.__code__ = self._getSiteCode()
640 mf.scan_code(site.__code__, site)
663 if path and mod.__code__ is None:
678 mod.__code__ = code
680 if mod.__code__ is not None:
685 self.pymodules.append((name, mod.__code__, ispkg))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_code.py 132 coderef = weakref.ref(f.__code__, callback)
test_trace.py 27 return func.__code__.co_firstlineno
test_gdb.py 585 print foo.__code__''',
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_code.py 132 coderef = weakref.ref(f.__code__, callback)
test_trace.py 27 return func.__code__.co_firstlineno
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_code.py 132 coderef = weakref.ref(f.__code__, callback)
test_trace.py 27 return func.__code__.co_firstlineno
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_code.py 132 coderef = weakref.ref(f.__code__, callback)
test_trace.py 27 return func.__code__.co_firstlineno
  /external/selinux/sepolgen/src/sepolgen/
yacc.py 466 if 1 and isinstance(v,types.FunctionType) and v.__code__.co_argcount == 1:
470 sys.stderr.write("%s:%d: Warning. Possible grammar rule '%s' defined without p_ prefix.\n" % (v.__code__.co_filename, v.__code__.co_firstlineno,n))
731 line = f.__code__.co_firstlineno
732 file = f.__code__.co_filename
740 if f.__code__.co_argcount > reqdargs:
744 if f.__code__.co_argcount < reqdargs:
    [all...]
lex.py 307 func.__code__.co_filename, func.__code__.co_firstlineno,
644 f.sort(key=lambda x: x[1].__code__.co_firstlineno)
658 line = f.__code__.co_firstlineno
659 file = f.__code__.co_filename
666 nargs = f.__code__.co_argcount
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
yacc.py 466 if 1 and isinstance(v,types.FunctionType) and v.__code__.co_argcount == 1:
470 sys.stderr.write("%s:%d: Warning. Possible grammar rule '%s' defined without p_ prefix.\n" % (v.__code__.co_filename, v.__code__.co_firstlineno,n))
731 line = f.__code__.co_firstlineno
732 file = f.__code__.co_filename
740 if f.__code__.co_argcount > reqdargs:
744 if f.__code__.co_argcount < reqdargs:
    [all...]
lex.py 307 func.__code__.co_filename, func.__code__.co_firstlineno,
644 f.sort(key=lambda x: x[1].__code__.co_firstlineno)
658 line = f.__code__.co_firstlineno
659 file = f.__code__.co_filename
666 nargs = f.__code__.co_argcount
    [all...]
  /external/opencv3/3rdparty/jinja2/
_compat.py 129 code_type = type(_C.method.__code__)
utils.py 81 internal_code.add(f.__code__)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
modulefinder.py 57 self.__code__ = None
304 m.__code__ = co
430 if mm.__code__ is None:
  /prebuilts/gdb/linux-x86/lib/python2.7/
modulefinder.py 57 self.__code__ = None
304 m.__code__ = co
430 if mm.__code__ is None:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
modulefinder.py 57 self.__code__ = None
304 m.__code__ = co
430 if mm.__code__ is None:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
modulefinder.py 57 self.__code__ = None
304 m.__code__ = co
430 if mm.__code__ is None:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py3_test_grammar.py 168 self.assertEquals(f2.__code__.co_varnames, ('one_argument',))
169 self.assertEquals(f3.__code__.co_varnames, ('two', 'arguments'))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py3_test_grammar.py 168 self.assertEquals(f2.__code__.co_varnames, ('one_argument',))
169 self.assertEquals(f3.__code__.co_varnames, ('two', 'arguments'))

Completed in 1354 milliseconds

1 2