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

1 2 3 4 5 6

  /prebuilts/gdb/darwin-x86/include/python2.7/
funcobject.h 13 * They reference a code object in their func_code attribute, which is a
23 PyObject *func_code; /* A code object */ member in struct:__anon44268
34 * func_closure contains the bindings for func_code->co_freevars, so
35 * PyTuple_Size(func_closure) == PyCode_GetNumFree(func_code)
36 * (func_closure may be NULL if PyCode_GetNumFree(func_code) == 0).
56 (((PyFunctionObject *)func) -> func_code)
  /prebuilts/gdb/linux-x86/include/python2.7/
funcobject.h 13 * They reference a code object in their func_code attribute, which is a
23 PyObject *func_code; /* A code object */ member in struct:__anon44390
34 * func_closure contains the bindings for func_code->co_freevars, so
35 * PyTuple_Size(func_closure) == PyCode_GetNumFree(func_code)
36 * (func_closure may be NULL if PyCode_GetNumFree(func_code) == 0).
56 (((PyFunctionObject *)func) -> func_code)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
funcobject.h 13 * They reference a code object in their func_code attribute, which is a
23 PyObject *func_code; /* A code object */ member in struct:__anon72506
34 * func_closure contains the bindings for func_code->co_freevars, so
35 * PyTuple_Size(func_closure) == PyCode_GetNumFree(func_code)
36 * (func_closure may be NULL if PyCode_GetNumFree(func_code) == 0).
56 (((PyFunctionObject *)func) -> func_code)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
funcobject.h 13 * They reference a code object in their func_code attribute, which is a
23 PyObject *func_code; /* A code object */ member in struct:__anon72629
34 * func_closure contains the bindings for func_code->co_freevars, so
35 * PyTuple_Size(func_closure) == PyCode_GetNumFree(func_code)
36 * (func_closure may be NULL if PyCode_GetNumFree(func_code) == 0).
56 (((PyFunctionObject *)func) -> func_code)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_dis.py 21 """%(_f.func_code.co_firstlineno + 1,
22 _f.func_code.co_firstlineno + 2)
45 """%(bug708901.func_code.co_firstlineno + 1,
46 bug708901.func_code.co_firstlineno + 2,
47 bug708901.func_code.co_firstlineno + 3)
75 """%(bug1333982.func_code.co_firstlineno + 1,
76 bug1333982.func_code.co_firstlineno + 2,
77 bug1333982.func_code.co_firstlineno + 3)
test_code.py 9 >>> dump(f.func_code)
20 >>> dump(f(4).func_code)
37 >>> dump(h.func_code)
53 >>> dump(attrs.func_code)
70 >>> dump(optimize_away.func_code)
test_funcattrs.py 60 test.func_code = self.b.func_code
117 self.assertEqual(type(func.func_code), types.CodeType)
120 d.func_code = c.func_code
121 self.assertEqual(c.func_code, d.func_code)
125 b.func_code = c.func_code
129 self.fail("func_code with different numbers of free vars should
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_dis.py 21 """%(_f.func_code.co_firstlineno + 1,
22 _f.func_code.co_firstlineno + 2)
45 """%(bug708901.func_code.co_firstlineno + 1,
46 bug708901.func_code.co_firstlineno + 2,
47 bug708901.func_code.co_firstlineno + 3)
75 """%(bug1333982.func_code.co_firstlineno + 1,
76 bug1333982.func_code.co_firstlineno + 2,
77 bug1333982.func_code.co_firstlineno + 3)
test_code.py 9 >>> dump(f.func_code)
20 >>> dump(f(4).func_code)
37 >>> dump(h.func_code)
53 >>> dump(attrs.func_code)
70 >>> dump(optimize_away.func_code)
test_funcattrs.py 60 test.func_code = self.b.func_code
117 self.assertEqual(type(func.func_code), types.CodeType)
120 d.func_code = c.func_code
121 self.assertEqual(c.func_code, d.func_code)
125 b.func_code = c.func_code
129 self.fail("func_code with different numbers of free vars should
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dis.py 21 """%(_f.func_code.co_firstlineno + 1,
22 _f.func_code.co_firstlineno + 2)
45 """%(bug708901.func_code.co_firstlineno + 1,
46 bug708901.func_code.co_firstlineno + 2,
47 bug708901.func_code.co_firstlineno + 3)
75 """%(bug1333982.func_code.co_firstlineno + 1,
76 bug1333982.func_code.co_firstlineno + 2,
77 bug1333982.func_code.co_firstlineno + 3)
test_code.py 9 >>> dump(f.func_code)
20 >>> dump(f(4).func_code)
37 >>> dump(h.func_code)
53 >>> dump(attrs.func_code)
70 >>> dump(optimize_away.func_code)
test_funcattrs.py 60 test.func_code = self.b.func_code
117 self.assertEqual(type(func.func_code), types.CodeType)
120 d.func_code = c.func_code
121 self.assertEqual(c.func_code, d.func_code)
125 b.func_code = c.func_code
129 self.fail("func_code with different numbers of free vars should
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dis.py 21 """%(_f.func_code.co_firstlineno + 1,
22 _f.func_code.co_firstlineno + 2)
45 """%(bug708901.func_code.co_firstlineno + 1,
46 bug708901.func_code.co_firstlineno + 2,
47 bug708901.func_code.co_firstlineno + 3)
75 """%(bug1333982.func_code.co_firstlineno + 1,
76 bug1333982.func_code.co_firstlineno + 2,
77 bug1333982.func_code.co_firstlineno + 3)
test_code.py 9 >>> dump(f.func_code)
20 >>> dump(f(4).func_code)
37 >>> dump(h.func_code)
53 >>> dump(attrs.func_code)
70 >>> dump(optimize_away.func_code)
test_funcattrs.py 60 test.func_code = self.b.func_code
117 self.assertEqual(type(func.func_code), types.CodeType)
120 d.func_code = c.func_code
121 self.assertEqual(c.func_code, d.func_code)
125 b.func_code = c.func_code
129 self.fail("func_code with different numbers of free vars should
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_funcattrs.py 14 | 'func_name' | 'func_defaults' | 'func_code'
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_funcattrs.py 14 | 'func_name' | 'func_defaults' | 'func_code'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_funcattrs.py 14 | 'func_name' | 'func_defaults' | 'func_code'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_funcattrs.py 14 | 'func_name' | 'func_defaults' | 'func_code'
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 244 STRINGIFY_CODE(FUNC_CODE, DECLAREBLOCKS)
245 STRINGIFY_CODE(FUNC_CODE, INST_BINOP)
246 STRINGIFY_CODE(FUNC_CODE, INST_CAST)
247 STRINGIFY_CODE(FUNC_CODE, INST_GEP_OLD)
248 STRINGIFY_CODE(FUNC_CODE, INST_INBOUNDS_GEP_OLD)
249 STRINGIFY_CODE(FUNC_CODE, INST_SELECT)
250 STRINGIFY_CODE(FUNC_CODE, INST_EXTRACTELT)
251 STRINGIFY_CODE(FUNC_CODE, INST_INSERTELT)
252 STRINGIFY_CODE(FUNC_CODE, INST_SHUFFLEVEC)
253 STRINGIFY_CODE(FUNC_CODE, INST_CMP
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
types.py 45 CodeType = type(_f.func_code)
81 GetSetDescriptorType = type(FunctionType.func_code)
  /prebuilts/gdb/linux-x86/lib/python2.7/
types.py 45 CodeType = type(_f.func_code)
81 GetSetDescriptorType = type(FunctionType.func_code)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
types.py 45 CodeType = type(_f.func_code)
81 GetSetDescriptorType = type(FunctionType.func_code)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
types.py 45 CodeType = type(_f.func_code)
81 GetSetDescriptorType = type(FunctionType.func_code)

Completed in 855 milliseconds

1 2 3 4 5 6