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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
gcmodule.c 64 static PyObject *delstr = NULL; variable
507 assert(delstr != NULL);
508 return _PyInstance_Lookup(op, delstr) != NULL;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
gcmodule.c 64 static PyObject *delstr = NULL; variable
470 assert(delstr != NULL);
471 return _PyInstance_Lookup(op, delstr) != NULL;
833 if (delstr == NULL) {
834 delstr = PyString_InternFromString("__del__");
835 if (delstr == NULL)
    [all...]
  /external/python/cpython2/Modules/
gcmodule.c 64 static PyObject *delstr = NULL; variable
507 assert(delstr != NULL);
508 return _PyInstance_Lookup(op, delstr) != NULL;
884 if (delstr == NULL) {
885 delstr = PyString_InternFromString("__del__");
886 if (delstr == NULL)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
classobject.c 635 static PyObject *delstr; local
649 if (delstr == NULL) {
650 delstr = PyString_InternFromString("__del__");
651 if (delstr == NULL)
654 if (delstr && (del = instance_getattr2(inst, delstr)) != NULL) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
classobject.c 625 static PyObject *delstr; local
639 if (delstr == NULL) {
640 delstr = PyString_InternFromString("__del__");
641 if (delstr == NULL)
644 if (delstr && (del = instance_getattr2(inst, delstr)) != NULL) {
    [all...]
  /external/python/cpython2/Objects/
classobject.c 635 static PyObject *delstr; local
649 if (delstr == NULL) {
650 delstr = PyString_InternFromString("__del__");
651 if (delstr == NULL)
654 if (delstr && (del = instance_getattr2(inst, delstr)) != NULL) {
    [all...]

Completed in 339 milliseconds