Home
last modified time | relevance | path

Searched refs:garbage (Results 1 – 17 of 17) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_gc.py137 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 …]
Dregrtest.py576 if gc.garbage:
577 print "Warning: test created", len(gc.garbage),
581 found_garbage.extend(gc.garbage)
582 del gc.garbage[:]
Dtest_csv.py974 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/
Dpipes.py222 garbage = []
229 garbage.append(temp)
254 if garbage:
256 for file in garbage:
Durllib.py244 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/
Dgcmodule.c58 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/
Dgcmodule.c58 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 …]
Dgc_weakref.txt186 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/
DREADME.txt8 Note: be careful to check for cyclic garbage. Sometimes it may be helpful
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DCHANGES_FROM_131.txt175 [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
DCHANGES_FROM_133_BEFORE_MR13.txt2760 in guard predicates resulted in the use of "garbage".
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlistobject.c2626 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/
Dlistobject.c2627 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/
DREADME75 --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/
DChangeLog623 on to attempt decompressing extra garbage data. This affected minigzip too.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
DChangeLog1240 on to attempt decompressing extra garbage data. This affected minigzip too.
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/
DCHANGES_FROM_133_before_mr13.txt2760 in guard predicates resulted in the use of "garbage".