Searched refs:metatype (Results 1 – 11 of 11) sorted by relevance
/external/bcc/src/lua/bpf/ |
D | proto.lua | 202 ffi.metatype('struct pt_regs', { 300 ffi.metatype(ffi.typeof('struct eth_t'), { 310 ffi.metatype(ffi.typeof('struct net_off_t'), { 317 ffi.metatype(ffi.typeof('struct ip_t'), { 328 ffi.metatype(ffi.typeof('struct ip6_t'), { 340 ffi.metatype(ffi.typeof('struct ip6_opt_t'), { 350 ffi.metatype(ffi.typeof('struct tcp_t'), { 360 ffi.metatype(ffi.typeof('struct udp_t'), {
|
D | elf.lua | 181 ffi.metatype('struct Elf_object', {
|
D | cdef.lua | 193 ffi.metatype('struct bpf_stacktrace', {
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 2287 _PyType_CalculateMetaclass(PyTypeObject *metatype, PyObject *bases) in _PyType_CalculateMetaclass() argument 2300 winner = metatype; in _PyType_CalculateMetaclass() 2322 type_new(PyTypeObject *metatype, PyObject *args, PyObject *kwds) in type_new() argument 2341 if (metatype == &PyType_Type) { in type_new() 2394 winner = _PyType_CalculateMetaclass(metatype, bases); in type_new() 2399 if (winner != metatype) { in type_new() 2402 metatype = winner; in type_new() 2565 type = (PyTypeObject *)metatype->tp_alloc(metatype, nslots); in type_new() 3192 PyTypeObject *metatype = Py_TYPE(type); in type_getattro() local 3214 meta_attribute = _PyType_Lookup(metatype, name); in type_getattro() [all …]
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 2094 type_new(PyTypeObject *metatype, PyObject *args, PyObject *kwds) in type_new() argument 2113 if (PyType_CheckExact(metatype) && nargs == 1 && nkwds == 0) { in type_new() 2141 winner = metatype; in type_new() 2160 if (winner != metatype) { in type_new() 2163 metatype = winner; in type_new() 2340 type = (PyTypeObject *)metatype->tp_alloc(metatype, nslots); in type_new() 2611 PyTypeObject *metatype = Py_TYPE(type); in type_getattro() local 2633 meta_attribute = _PyType_Lookup(metatype, name); in type_getattro() 2645 (PyObject *)metatype); in type_getattro() 2679 (PyObject *)metatype); in type_getattro()
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 38 metatype) initializes :c:member:`~PyTypeObject.tp_itemsize`, which means that its instances (i.e. 74 This is the type's type, in other words its metatype. It is initialized by the 833 dynamically creating a type object by calling the metatype. 1060 (The only example of this are types themselves. The metatype,
|
/external/python/cpython2/Doc/library/ |
D | inspect.rst | 523 metatype is in use, cls will be the first element of the tuple.
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 486 metatype) initializes :c:member:`~PyTypeObject.tp_itemsize`, which means that its instances (i.e. 522 This is the type's type, in other words its metatype. It is initialized by the 1502 dynamically creating a type object by calling the metatype. 1781 (The only example of this are types themselves. The metatype,
|
/external/python/cpython3/Doc/library/ |
D | inspect.rst | 1022 metatype is in use, cls will be the first element of the tuple.
|
/external/python/cpython2/Misc/ |
D | HISTORY | 5825 - A type can now inherit its metatype from its base type. Previously,
|
/external/python/cpython3/Misc/ |
D | HISTORY | 23209 - A type can now inherit its metatype from its base type. Previously,
|