/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_gc.py | 137 for obj in gc.garbage: 143 gc.garbage.remove(obj) 161 for obj in gc.garbage: 167 gc.garbage.remove(obj) 193 self.assertEqual(gc.garbage, []) 205 self.assertEqual(len(gc.garbage), 1) 206 obj = gc.garbage.pop() 314 garbagelen = len(gc.garbage) 324 self.assertEqual(len(gc.garbage), garbagelen) 343 garbagelen = len(gc.garbage) [all …]
|
D | regrtest.py | 576 if gc.garbage: 577 print "Warning: test created", len(gc.garbage), 581 found_garbage.extend(gc.garbage) 582 del gc.garbage[:]
|
D | test_csv.py | 974 self.assertEqual(gc.garbage, []) 990 self.assertEqual(gc.garbage, []) 1006 self.assertEqual(gc.garbage, []) 1023 self.assertEqual(gc.garbage, [])
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | pipes.py | 222 garbage = [] 229 garbage.append(temp) 254 if garbage: 256 for file in garbage:
|
D | urllib.py | 244 garbage, path = splittype(url) 245 garbage, path = splithost(path or "") 246 path, garbage = splitquery(path or "") 247 path, garbage = splitattr(path or "")
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | gcmodule.c | 58 static PyObject *garbage = NULL; variable 782 if (garbage == NULL) { in handle_finalizers() 783 garbage = PyList_New(0); in handle_finalizers() 784 if (garbage == NULL) in handle_finalizers() 791 if (PyList_Append(garbage, op) < 0) in handle_finalizers() 815 PyList_Append(garbage, op); in delete_garbage() 1398 if (garbage == NULL) { in initgc() 1399 garbage = PyList_New(0); in initgc() 1400 if (garbage == NULL) in initgc() 1403 Py_INCREF(garbage); in initgc() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | gcmodule.c | 58 static PyObject *garbage = NULL; variable 731 if (garbage == NULL) { in handle_finalizers() 732 garbage = PyList_New(0); in handle_finalizers() 733 if (garbage == NULL) in handle_finalizers() 740 if (PyList_Append(garbage, op) < 0) in handle_finalizers() 764 PyList_Append(garbage, op); in delete_garbage() 1344 if (garbage == NULL) { in initgc() 1345 garbage = PyList_New(0); in initgc() 1346 if (garbage == NULL) in initgc() 1349 Py_INCREF(garbage); in initgc() [all …]
|
D | gc_weakref.txt | 186 with __del__ methods, refusing to collect them, appending them to gc.garbage
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/leakers/ |
D | README.txt | 8 Note: be careful to check for cyclic garbage. Sometimes it may be helpful
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/ |
D | CHANGES_FROM_131.txt | 175 [With respect to token object garbage collection (GC), 1.32b7 190 ANTLRCommonNoRefCountToken. The common token now does garbage 193 o "Smart" pointers are now used for garbage collection. That is, 371 To correctly manage the garbage collection, you should use 384 o The default is to perform token object garbage collection. 386 garbage collection. 450 garbage collection; i.e., use parser->noGarbageCollectTokens() and
|
D | CHANGES_FROM_133_BEFORE_MR13.txt | 2760 in guard predicates resulted in the use of "garbage".
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | listobject.c | 2626 PyObject **garbage; in list_ass_subscript() local 2642 garbage = (PyObject**) in list_ass_subscript() 2644 if (!garbage) { in list_ass_subscript() 2660 garbage[i] = PyList_GET_ITEM(self, cur); in list_ass_subscript() 2682 Py_DECREF(garbage[i]); in list_ass_subscript() 2684 PyMem_FREE(garbage); in list_ass_subscript() 2691 PyObject **garbage, **seqitems, **selfitems; in list_ass_subscript() local 2723 garbage = (PyObject**) in list_ass_subscript() 2725 if (!garbage) { in list_ass_subscript() 2735 garbage[i] = selfitems[cur]; in list_ass_subscript() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | listobject.c | 2627 PyObject **garbage; in list_ass_subscript() local 2643 garbage = (PyObject**) in list_ass_subscript() 2645 if (!garbage) { in list_ass_subscript() 2661 garbage[i] = PyList_GET_ITEM(self, cur); in list_ass_subscript() 2683 Py_DECREF(garbage[i]); in list_ass_subscript() 2685 PyMem_FREE(garbage); in list_ass_subscript() 2692 PyObject **garbage, **seqitems, **selfitems; in list_ass_subscript() local 2724 garbage = (PyObject**) in list_ass_subscript() 2726 if (!garbage) { in list_ass_subscript() 2736 garbage[i] = selfitems[cur]; in list_ass_subscript() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
D | README | 75 --with-gc enable garbage collection (0) 117 * disabled garbage collection 344 - garbage collection is turned off per default
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | ChangeLog | 623 on to attempt decompressing extra garbage data. This affected minigzip too.
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | ChangeLog | 1240 on to attempt decompressing extra garbage data. This affected minigzip too.
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/ |
D | CHANGES_FROM_133_before_mr13.txt | 2760 in guard predicates resulted in the use of "garbage".
|