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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
genobject.h 23 PyObject *gi_code; member in struct:__anon4333
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
genobject.h 23 PyObject *gi_code; member in struct:__anon4640
  /external/python/cpython2/Include/
genobject.h 23 PyObject *gi_code; member in struct:__anon32581
  /prebuilts/gdb/darwin-x86/include/python2.7/
genobject.h 23 PyObject *gi_code; member in struct:__anon66472
  /prebuilts/gdb/linux-x86/include/python2.7/
genobject.h 23 PyObject *gi_code; member in struct:__anon66594
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
genobject.h 23 PyObject *gi_code; member in struct:__anon987
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
genobject.h 23 PyObject *gi_code; member in struct:__anon1110
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
genobject.c 14 Py_VISIT(gen->gi_code);
39 Py_CLEAR(gen->gi_code);
288 code_name = PyString_AsString(((PyCodeObject *)gen->gi_code)->co_name);
299 PyObject *name = ((PyCodeObject *)gen->gi_code)->co_name;
317 {"gi_code", T_OBJECT, offsetof(PyGenObject, gi_code), RO},
389 gen->gi_code = (PyObject *)(f->f_code);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
genobject.c 14 Py_VISIT(gen->gi_code);
39 Py_CLEAR(gen->gi_code);
291 code_name = PyString_AsString(((PyCodeObject *)gen->gi_code)->co_name);
302 PyObject *name = ((PyCodeObject *)gen->gi_code)->co_name;
320 {"gi_code", T_OBJECT, offsetof(PyGenObject, gi_code), RO},
392 gen->gi_code = (PyObject *)(f->f_code);
  /external/python/cpython2/Objects/
genobject.c 14 Py_VISIT(gen->gi_code);
39 Py_CLEAR(gen->gi_code);
291 code_name = PyString_AsString(((PyCodeObject *)gen->gi_code)->co_name);
302 PyObject *name = ((PyCodeObject *)gen->gi_code)->co_name;
320 {"gi_code", T_OBJECT, offsetof(PyGenObject, gi_code), RO},
392 gen->gi_code = (PyObject *)(f->f_code);
  /external/python/cpython3/Lib/
types.py 188 def gi_code(self): member in class:_GeneratorWrapper
189 return self.__wrapped.gi_code
199 cr_code = gi_code
250 coro.__class__ is GeneratorType and coro.gi_code.co_flags & 0x100):
dis.py 47 if hasattr(x, 'gi_code'): # Generator
48 x = x.gi_code
115 if hasattr(x, 'gi_code'): # Generator
116 x = x.gi_code
inspect.py 207 gi_code code object
225 bool(object.gi_code.co_flags & CO_ITERABLE_COROUTINE) or
    [all...]
  /external/python/cpython3/Lib/asyncio/
coroutines.py 142 def gi_code(self): member in class:CoroWrapper
143 return self.gen.gi_code
276 if not hasattr(coro, 'cr_code') and not hasattr(coro, 'gi_code'):
312 coro_code = coro.gi_code
  /external/python/cpython3/Objects/
genobject.c 22 Py_VISIT(gen->gi_code);
64 if (gen->gi_code != NULL &&
65 ((PyCodeObject *)gen->gi_code)->co_flags & CO_COROUTINE &&
115 Py_CLEAR(gen->gi_code);
227 if (gen->gi_code != NULL &&
228 ((PyCodeObject *)gen->gi_code)->co_flags &
734 {"gi_code", T_OBJECT, offsetof(PyGenObject, gi_code), READONLY},
811 gen->gi_code = (PyObject *)(f->f_code);
817 gen->gi_name = ((PyCodeObject *)gen->gi_code)->co_name
    [all...]
  /external/python/cpython3/Lib/test/
test_types.py     [all...]
test_generators.py 324 self.assertEqual(gen_b.gi_yieldfrom.gi_code.co_name, 'a')
700 ['close', 'gi_code', 'gi_frame', 'gi_running', 'gi_yieldfrom', 'send', 'throw']
1183 Test the gi_code attribute
1189 >>> g.gi_code is f.__code__
1196 >>> g.gi_code is f.__code__
    [all...]
test_coroutines.py 879 self.assertEqual(coro_b.cr_await.cr_await.gi_code.co_name, 'a')
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_tasks.py 360 code = gen.gi_code
375 code = gen.gi_code
    [all...]

Completed in 525 milliseconds