/external/python/cpython2/Objects/ |
D | codeobject.c | 131 co->co_names = names; in PyCode_New() 207 {"co_names", T_OBJECT, OFF(co_names), READONLY}, 349 Py_XDECREF(co->co_names); in code_dealloc() 401 cmp = PyObject_Compare(co->co_names, cp->co_names); in code_compare() 599 eq = PyObject_RichCompareBool(co->co_names, cp->co_names, Py_EQ); in code_richcompare() 637 h3 = PyObject_Hash(co->co_names); in code_hash()
|
/external/python/cpython3/Lib/ |
D | dis.py | 159 if co.co_names: 161 for i_n in enumerate(co.co_names): 269 return _get_instructions_bytes(co.co_code, co.co_varnames, co.co_names, 356 _disassemble_bytes(co.co_code, lasti, co.co_varnames, co.co_names, 484 return _get_instructions_bytes(co.co_code, co.co_varnames, co.co_names, 513 names=co.co_names, constants=co.co_consts,
|
D | types.py | 263 co.co_consts, co.co_names, co.co_varnames, co.co_filename,
|
D | modulefinder.py | 342 names = co.co_names 564 co.co_code, tuple(consts), co.co_names,
|
/external/python/setuptools/setuptools/ |
D | depends.py | 147 if symbol not in code.co_names: 151 name_idx = list(code.co_names).index(symbol)
|
/external/python/cpython3/Objects/ |
D | codeobject.c | 203 co->co_names = names; in PyCode_New() 282 {"co_names", T_OBJECT, OFF(co_names), READONLY}, 447 Py_XDECREF(co->co_names); in code_dealloc() 667 eq = PyObject_RichCompareBool(co->co_names, cp->co_names, Py_EQ); in code_richcompare() 705 h3 = PyObject_Hash(co->co_names); in code_hash()
|
/external/python/cpython2/Doc/library/ |
D | dis.rst | 586 :attr:`co_names` of the code object. The compiler tries to use ``STORE_FAST`` 592 Implements ``del name``, where *namei* is the index into :attr:`co_names` 611 :attr:`co_names`. 616 Implements ``del TOS.name``, using *namei* as index into :attr:`co_names`. 636 Pushes the value associated with ``co_names[namei]`` onto the stack. 665 Replaces TOS with ``getattr(TOS, co_names[namei])``. 676 Imports the module ``co_names[namei]``. TOS and TOS1 are popped and provide 685 Loads the attribute ``co_names[namei]`` from the module found in TOS. The 732 Loads the global named ``co_names[namei]`` onto the stack.
|
D | inspect.rst | 196 | | co_names | tuple of names of local | |
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_rpc.py | 16 self.assertEqual(code.co_names, ('a', 'b', 'c'))
|
/external/python/cpython2/Include/ |
D | code.h | 18 PyObject *co_names; /* list of strings (names used) */ member
|
/external/libchrome/third_party/jinja2/ |
D | debug.py | 274 code.co_names, code.co_varnames, filename, 281 code.co_names, code.co_varnames, filename,
|
/external/python/cpython3/Include/ |
D | code.h | 31 PyObject *co_names; /* list of strings (names used) */ member
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 750 :attr:`co_names` of the code object. The compiler tries to use 756 Implements ``del name``, where *namei* is the index into :attr:`co_names` 781 :attr:`co_names`. 786 Implements ``del TOS.name``, using *namei* as index into :attr:`co_names`. 806 Pushes the value associated with ``co_names[namei]`` onto the stack. 912 Replaces TOS with ``getattr(TOS, co_names[namei])``. 923 Imports the module ``co_names[namei]``. TOS and TOS1 are popped and provide 932 Loads the attribute ``co_names[namei]`` from the module found in TOS. The 987 Loads the global named ``co_names[namei]`` onto the stack. 1119 Loads a method named ``co_names[namei]`` from TOS object. TOS is popped and
|
/external/python/cpython2/Lib/ |
D | modulefinder.py | 364 names = co.co_names 381 names = co.co_names 610 co.co_flags, co.co_code, tuple(consts), co.co_names,
|
D | dis.py | 97 print '(' + co.co_names[oparg] + ')',
|
/external/python/cpython2/Lib/test/ |
D | test_new.py | 117 names = c.co_names
|
D | test_compiler.py | 92 self.assertIn('__doc__', c.co_names)
|
D | test_import.py | 507 code.co_names, code.co_varnames, code.co_filename,
|
/external/python/cpython3/Lib/test/ |
D | test_code.py | 161 c.co_stacksize, c.co_flags, c.co_code, c.co_consts, c.co_names,
|
/external/scapy/scapy/ |
D | automaton.py | 474 for n in st.atmt_origfunc.__code__.co_names+st.atmt_origfunc.__code__.co_consts: 483 for n in f.__code__.co_names+f.__code__.co_consts: 493 for n in f.__code__.co_names+f.__code__.co_consts:
|
/external/python/setuptools/setuptools/command/ |
D | bdist_egg.py | 444 for name in code.co_names:
|
/external/python/cpython2/Python/ |
D | marshal.c | 437 w_object(co->co_names, p); in w_object()
|
/external/python/cpython3/Lib/test/test_import/ |
D | __init__.py | 611 code.co_names, code.co_varnames, code.co_filename,
|
/external/python/cpython3/Python/ |
D | marshal.c | 558 w_object(co->co_names, p); in w_complex_object()
|
D | ceval.c | 878 names = co->co_names; in _PyEval_EvalFrameDefault() 5041 PyObject *names = f->f_code->co_names; in unicode_concatenate()
|