HomeSort by relevance Sort by last modified time
    Searched refs:func_code (Results 26 - 50 of 69) sorted by null

12 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_grammar.py 153 self.assertEqual(f2.func_code.co_varnames, ('one_argument',))
154 self.assertEqual(f3.func_code.co_varnames, ('two', 'arguments'))
156 self.assertEqual(f4.func_code.co_varnames,
159 self.assertEqual(f5.func_code.co_varnames,
162 self.assertEqual(f4.func_code.co_varnames,
164 self.assertEqual(f5.func_code.co_varnames,
201 self.assertEqual(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c'))
203 self.assertEqual(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c'))
    [all...]
test_hotshot.py 92 f_lineno = f.func_code.co_firstlineno
93 g_lineno = g.func_code.co_firstlineno
test_sys_settrace.py 272 self.compare_events(func.func_code.co_firstlineno,
282 self.compare_events(func.func_code.co_firstlineno,
441 frame.f_lineno == f.func_code.co_firstlineno + 2):
472 if not self.done and frame.f_code == self.function.func_code:
771 func_code = code variable in class:.test_jump_to_firstlineno.fake_function
test_univnewlines2k.py 86 self.assertEqual(func.func_code.co_firstlineno, 3)
test_scope.py 571 self.assertRaises(TypeError, eval, g.func_code)
574 exec g.func_code in {}
  /external/python/cpython2/Lib/lib2to3/tests/data/
py2_test_grammar.py 157 self.assertEquals(f2.func_code.co_varnames, ('one_argument',))
158 self.assertEquals(f3.func_code.co_varnames, ('two', 'arguments'))
160 self.assertEquals(f4.func_code.co_varnames,
163 self.assertEquals(f5.func_code.co_varnames,
166 self.assertEquals(f4.func_code.co_varnames,
168 self.assertEquals(f5.func_code.co_varnames,
204 self.assertEquals(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c'))
206 self.assertEquals(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c'))
  /external/python/cpython2/Lib/test/
test_hotshot.py 92 f_lineno = f.func_code.co_firstlineno
93 g_lineno = g.func_code.co_firstlineno
test_univnewlines2k.py 86 self.assertEqual(func.func_code.co_firstlineno, 3)
test_grammar.py 174 self.assertEqual(f2.func_code.co_varnames, ('one_argument',))
175 self.assertEqual(f3.func_code.co_varnames, ('two', 'arguments'))
177 self.assertEqual(f4.func_code.co_varnames,
180 self.assertEqual(f5.func_code.co_varnames,
183 self.assertEqual(f4.func_code.co_varnames,
185 self.assertEqual(f5.func_code.co_varnames,
223 self.assertEqual(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c'))
225 self.assertEqual(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c'))
    [all...]
test_sys_settrace.py 285 self.compare_events(func.func_code.co_firstlineno,
295 self.compare_events(func.func_code.co_firstlineno,
463 frame.f_lineno == f.func_code.co_firstlineno + 2):
487 self.code = function.func_code
1029 func_code = code variable in class:.test_jump_to_firstlineno.fake_function
test_scope.py 571 self.assertRaises(TypeError, eval, g.func_code)
574 exec g.func_code in {}
  /external/python/cpython3/Lib/lib2to3/tests/data/
py2_test_grammar.py 157 self.assertEquals(f2.func_code.co_varnames, ('one_argument',))
158 self.assertEquals(f3.func_code.co_varnames, ('two', 'arguments'))
160 self.assertEquals(f4.func_code.co_varnames,
163 self.assertEquals(f5.func_code.co_varnames,
166 self.assertEquals(f4.func_code.co_varnames,
168 self.assertEquals(f5.func_code.co_varnames,
204 self.assertEquals(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c'))
206 self.assertEquals(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c'))
  /external/autotest/client/common_lib/
test.py 673 return func.func_code.co_varnames[:func.func_code.co_argcount]
691 if func.func_code.co_flags & 0x04:
698 if func.func_code.co_flags & 0x08:
737 all_co_flags |= func.func_code.co_flags
738 all_varnames += func.func_code.co_varnames[:func.func_code.co_argcount]
    [all...]
  /development/tools/axl/
singletonmixin.py 86 return cls.__init__.im_func.func_code.co_argcount - 1
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
dis.py 29 if hasattr(x, 'func_code'):
30 x = x.func_code
inspect.py 148 func_code code object containing compiled function bytecode
162 object.func_code.co_flags & CO_GENERATOR)
412 object = object.func_code
569 object = object.func_code
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
dis.py 29 if hasattr(x, 'func_code'):
30 x = x.func_code
inspect.py 148 func_code code object containing compiled function bytecode
162 object.func_code.co_flags & CO_GENERATOR)
414 object = object.func_code
567 object = object.func_code
    [all...]
pdb.py 395 code = func.func_code
841 try: code = value.func_code
847 try: code = value.im_func.func_code
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
function.py 102 code = func.func_code
  /external/python/cpython2/Lib/
dis.py 29 if hasattr(x, 'func_code'):
30 x = x.func_code
inspect.py 148 func_code code object containing compiled function bytecode
161 object.func_code.co_flags & CO_GENERATOR)
411 object = object.func_code
568 object = object.func_code
    [all...]
pdb.py 395 code = func.func_code
841 try: code = value.func_code
847 try: code = value.im_func.func_code
    [all...]
  /external/python/cpython2/Tools/framer/framer/
function.py 102 code = func.func_code
  /external/libchrome/third_party/ply/
yacc.py 91 def func_code(f): function
92 return f.func_code
94 def func_code(f): function
    [all...]

Completed in 761 milliseconds

12 3