HomeSort by relevance Sort by last modified time
    Searched refs:mro (Results 1 - 25 of 48) sorted by null

1 2

  /external/protobuf/python/
stubout.py 69 mro = list(inspect.getmro(obj.__class__))
71 mro = list(inspect.getmro(obj))
73 mro.reverse()
77 for cls in mro:
  /external/python/cpython2/Objects/
typeobject.c 79 classes, mro, or attributes of the type are altered.
119 Check that all base classes or elements of the mro of type are
121 classes or mro of the type are altered.
125 appears in the MRO of a new-style class. No support either for
130 each subclass when their mro is recursively updated.
521 PyObject* mro; local
523 "", 2, 2, &cls, &mro); local
524 Py_INCREF(mro);
526 cls->tp_mro = mro;
1168 PyObject *mro; local
1360 PyObject *mro; local
1656 PyObject *mro, *result, *tuple; local
2529 PyObject *mro, *res, *base, *dict; local
6606 PyObject *mro, *res, *tmp, *dict; local
    [all...]
object.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
typeobject.c 58 classes, mro, or attributes of the type are altered.
98 Check that all base classes or elements of the mro of type are
100 classes or mro of the type are altered.
104 appears in the MRO of a new-style class. No support either for
109 each subclass when their mro is recursively updated.
501 PyObject* mro; local
503 "", 2, 2, &cls, &mro); local
504 Py_INCREF(mro);
506 cls->tp_mro = mro;
1148 PyObject *mro; local
1336 PyObject *mro; local
1632 PyObject *mro, *result, *tuple; local
2488 PyObject *mro, *res, *base, *dict; local
6507 PyObject *mro, *res, *tmp, *dict; local
    [all...]
object.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
typeobject.c 58 classes, mro, or attributes of the type are altered.
98 Check that all base classes or elements of the mro of type are
100 classes or mro of the type are altered.
104 appears in the MRO of a new-style class. No support either for
109 each subclass when their mro is recursively updated.
495 PyObject* mro; local
497 "", 2, 2, &cls, &mro); local
498 Py_INCREF(mro);
500 cls->tp_mro = mro;
1130 PyObject *mro; local
1318 PyObject *mro; local
1614 PyObject *mro, *result, *tuple; local
2468 PyObject *mro, *res, *base, *dict; local
6471 PyObject *mro, *res, *tmp, *dict; local
    [all...]
object.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
pkgutil.py 41 mro = cls.__mro__
46 mro = cls.__mro__[1:]
48 mro = object, # must be an ExtensionClass or some such :(
49 for t in mro:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pkgutil.py 41 mro = cls.__mro__
46 mro = cls.__mro__[1:]
48 mro = object, # must be an ExtensionClass or some such :(
49 for t in mro:
pydoc.py 727 # List the mro, if non-trivial.
728 mro = deque(inspect.getmro(object))
729 if len(mro) > 2:
732 for base in mro:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_typechecks.py 17 return any(c in candidates for c in sub.mro())
  /external/python/cpython2/Lib/
pkgutil.py 41 mro = cls.__mro__
46 mro = cls.__mro__[1:]
48 mro = object, # must be an ExtensionClass or some such :(
49 for t in mro:
pydoc.py 766 # List the mro, if non-trivial.
767 mro = deque(inspect.getmro(object))
768 if len(mro) > 2:
771 for base in mro:
    [all...]
  /external/python/cpython2/Lib/test/
test_typechecks.py 17 return any(c in candidates for c in sub.mro())
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pkgutil.py 41 mro = cls.__mro__
46 mro = cls.__mro__[1:]
48 mro = object, # must be an ExtensionClass or some such :(
49 for t in mro:
pydoc.py 727 # List the mro, if non-trivial.
728 mro = deque(inspect.getmro(object))
729 if len(mro) > 2:
732 for base in mro:
805 if mro:
806 thisclass = mro.popleft()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_typechecks.py 17 return any(c in candidates for c in sub.mro())
  /prebuilts/gdb/linux-x86/lib/python2.7/
pkgutil.py 41 mro = cls.__mro__
46 mro = cls.__mro__[1:]
48 mro = object, # must be an ExtensionClass or some such :(
49 for t in mro:
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_typechecks.py 17 return any(c in candidates for c in sub.mro())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pkgutil.py 41 mro = cls.__mro__
46 mro = cls.__mro__[1:]
48 mro = object, # must be an ExtensionClass or some such :(
49 for t in mro:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_typechecks.py 17 return any(c in candidates for c in sub.mro())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pkgutil.py 41 mro = cls.__mro__
46 mro = cls.__mro__[1:]
48 mro = object, # must be an ExtensionClass or some such :(
49 for t in mro:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_typechecks.py 17 return any(c in candidates for c in sub.mro())
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
pydoc.py 727 # List the mro, if non-trivial.
728 mro = deque(inspect.getmro(object))
729 if len(mro) > 2:
732 for base in mro:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
pydoc.py 778 # List the mro, if non-trivial.
779 mro = deque(inspect.getmro(object))
780 if len(mro) > 2:
783 for base in mro:
    [all...]

Completed in 1710 milliseconds

1 2