/external/webkit/Tools/DumpRenderTree/win/ |
D | GCControllerWin.cpp | 39 COMPtr<IWebJavaScriptCollector> collector; in collect() local 40 …tCreateInstance(CLSID_WebJavaScriptCollector, 0, IID_IWebJavaScriptCollector, (void**)&collector))) in collect() 42 collector->collect(); in collect() 47 COMPtr<IWebJavaScriptCollector> collector; in collectOnAlternateThread() local 48 …tCreateInstance(CLSID_WebJavaScriptCollector, 0, IID_IWebJavaScriptCollector, (void**)&collector))) in collectOnAlternateThread() 50 collector->collectOnAlternateThread(waitUntilDone ? TRUE : FALSE); in collectOnAlternateThread() 55 COMPtr<IWebJavaScriptCollector> collector; in getJSObjectCount() local 56 …tCreateInstance(CLSID_WebJavaScriptCollector, 0, IID_IWebJavaScriptCollector, (void**)&collector))) in getJSObjectCount() 59 collector->objectCount(&objects); in getJSObjectCount()
|
/external/webkit/Source/WebCore/inspector/ |
D | InspectorFrontendProxy.cpp | 41 InspectorFrontendProxy::InspectorFrontendProxy(EventsCollector* collector) in InspectorFrontendProxy() argument 44 m_collector = collector; in InspectorFrontendProxy() 47 InspectorFrontendProxy::InspectorFrontendProxy(EventsCollector* collector, InspectorFrontendChannel… in InspectorFrontendProxy() argument 49 m_collector = collector; in InspectorFrontendProxy() 58 void InspectorFrontendProxy::setEventsCollector(EventsCollector* collector) in setEventsCollector() argument 60 m_collector = collector; in setEventsCollector()
|
/external/v8/test/cctest/ |
D | test-utils.cc | 139 Collector<int> collector(8); in TEST() local 144 Vector<int> block = collector.AddBlock(7, 0xbadcafe); in TEST() 146 collector.Add(i); in TEST() 152 Vector<int> result = collector.ToVector(); in TEST() 169 SequenceCollector<int> collector(8); in TEST() local 175 collector.StartSequence(); in TEST() 177 collector.Add(j); in TEST() 179 Vector<int> sequence = collector.EndSequence(); in TEST() 185 Vector<int> result = collector.ToVector(); in TEST()
|
/external/chromium/base/files/ |
D | file_path_watcher_browsertest.cc | 96 explicit TestDelegate(NotificationCollector* collector) in TestDelegate() argument 97 : collector_(collector) { in TestDelegate() 196 NotificationCollector* collector() { return collector_.get(); } in collector() function in base::files::__anone8bb28e30111::FilePathWatcherTest 207 scoped_refptr<TestDelegate> delegate(new TestDelegate(collector())); in TEST_F() 219 scoped_refptr<TestDelegate> delegate(new TestDelegate(collector())); in TEST_F() 233 scoped_refptr<TestDelegate> delegate(new TestDelegate(collector())); in TEST_F() 245 scoped_refptr<TestDelegate> delegate(new TestDelegate(collector())); in TEST_F() 289 scoped_refptr<TestDelegate> delegate(new TestDelegate(collector())); in TEST_F() 298 scoped_refptr<TestDelegate> delegate1(new TestDelegate(collector())); in TEST_F() 299 scoped_refptr<TestDelegate> delegate2(new TestDelegate(collector())); in TEST_F() [all …]
|
/external/clang/test/Analysis/ |
D | retain-release-path-notes-gc.m | 49 …ents an object's retain count and registers the object with the garbage collector. An object must … 50 …ect with the garbage collector. Since it now has a 0 retain count the object can be automatically … 66 …object with a +1 retain count since they expect the object to be managed by the garbage collector}} 71 …object with a +1 retain count since they expect the object to be managed by the garbage collector}}
|
/external/v8/src/ |
D | mark-compact.cc | 501 INLINE(static void VisitUnmarkedObject(MarkCompactCollector* collector, in INLINE() argument 508 collector->SetMark(obj); in INLINE() 510 if (!map->IsMarked()) collector->MarkUnmarkedObject(map); in INLINE() 523 MarkCompactCollector* collector = heap->mark_compact_collector(); in VisitUnmarkedObjects() local 529 VisitUnmarkedObject(collector, obj); in VisitUnmarkedObjects() 704 MarkCompactCollector* collector = map->heap()->mark_compact_collector(); in VisitSharedFunctionInfoAndFlushCode() local 705 if (!collector->is_code_flushing_enabled()) { in VisitSharedFunctionInfoAndFlushCode() 744 MarkCompactCollector* collector = heap->mark_compact_collector(); in VisitJSFunctionAndFlushCode() local 745 if (!collector->is_code_flushing_enabled()) { in VisitJSFunctionAndFlushCode() 758 collector->MarkObject(jsfunction->unchecked_shared()->unchecked_code()); in VisitJSFunctionAndFlushCode() [all …]
|
D | heap.h | 828 bool CollectGarbage(AllocationSpace space, GarbageCollector collector); 1421 bool PerformGarbageCollection(GarbageCollector collector, 2042 void set_collector(GarbageCollector collector) { collector_ = collector; } in set_collector() argument
|
D | parser.cc | 1914 TargetCollector collector(target_list); in WithHelper() local 1916 { Target target(&this->target_stack_, &collector); in WithHelper() 1940 wrapper->set_escaping_targets(collector.targets()); in WithHelper() 2060 TargetCollector collector(target_list); in ParseTryStatement() local 2063 { Target target(&this->target_stack_, &collector); in ParseTryStatement() 2135 statement->set_escaping_targets(collector.targets()); in ParseTryStatement() 2147 result->set_escaping_targets(collector.targets()); in ParseTryStatement() 2152 for (int i = 0; i < collector.targets()->length(); i++) { in ParseTryStatement() 2153 catch_collector.AddTarget(collector.targets()->at(i)); in ParseTryStatement() 3959 TargetCollector* collector = t->node()->AsTargetCollector(); in RegisterTargetUse() local [all …]
|
D | heap.cc | 481 bool Heap::CollectGarbage(AllocationSpace space, GarbageCollector collector) { in CollectGarbage() argument 503 tracer.set_collector(collector); in CollectGarbage() 505 HistogramTimer* rate = (collector == SCAVENGER) in CollectGarbage() 510 PerformGarbageCollection(collector, &tracer); in CollectGarbage() 708 bool Heap::PerformGarbageCollection(GarbageCollector collector, in PerformGarbageCollection() argument 712 if (collector != SCAVENGER) { in PerformGarbageCollection() 717 if (collector == MARK_COMPACTOR && global_gc_prologue_callback_) { in PerformGarbageCollection() 724 collector == MARK_COMPACTOR ? kGCTypeMarkSweepCompact : kGCTypeScavenge; in PerformGarbageCollection() 736 if (collector == MARK_COMPACTOR) { in PerformGarbageCollection() 774 if (collector == MARK_COMPACTOR) { in PerformGarbageCollection() [all …]
|
/external/llvm/lib/CodeGen/ |
D | README.txt | 116 With a copying garbage collector, derived pointers must not be retained across 117 collector safe points; the collector could move the objects and invalidate the 137 collector. Still, LLVM optimizations would probably undo a front-end's careful 153 It would be good to detect collector/target compatibility instead of silently
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2002-12-03 | 27 * kjs/collector.cpp: 35 Change ActivationImp to be allocated via the garbage collector 52 * kjs/collector.cpp: 190 Numerous collector changes for a net gain of 3% on JS ibench: 195 - When scanning heap in collector, skip scanning the rest of a 199 Also the following collector changes unrelated to performance: 204 * kjs/collector.cpp: 228 * kjs/collector.h: Remove _COLLECTOR hack and just make rootObjectClasses 230 * kjs/collector.cpp: Remove _COLLECTOR hack, and various other minor tweaks. 256 * kjs/collector.cpp: Change CELL_SIZE from 64 to 56. [all …]
|
D | ChangeLog | 1709 collector/ => heap/ 1710 collector/* => heap/* 1730 * collector: Removed. 1731 * collector/handles: Removed. 1732 * collector/handles/Global.h: Removed. 1733 * collector/handles/Handle.h: Removed. 1734 * collector/handles/HandleHeap.cpp: Removed. 1735 * collector/handles/HandleHeap.h: Removed. 1736 * collector/handles/HandleStack.cpp: Removed. 1737 * collector/handles/HandleStack.h: Removed. [all …]
|
D | ChangeLog-2007-10-14 | 174 * kjs/collector.cpp: 175 * kjs/collector.h: 549 * kjs/collector.cpp: 593 * kjs/collector.cpp: 670 * kjs/collector.cpp: 710 * kjs/collector.cpp: 965 … fork without first execing[*] so it is not particularly important to ensure that the collector and 1002 …//problem/5371862> crash in Dashcode due to Quartz Composer JavaScript garbage collector reentrancy 1004 * API/JSBase.cpp: (JSGarbageCollect): Don't call collector() if isBusy() returns true. 1006 * kjs/collector.h: Added isBusy(), removed the unused return value from collect() [all …]
|
D | ChangeLog-2008-08-10 | 100 * kjs/collector.cpp: 103 * kjs/collector.h: 317 * kjs/collector.h: 409 * kjs/collector.cpp: 448 * kjs/collector.cpp: 453 * kjs/collector.h: 473 * kjs/collector.h: 534 * kjs/collector.cpp: 638 * kjs/collector.cpp: 642 * kjs/collector.h: Made Heap destructor public, so that JSContextRelease can use it. [all …]
|
D | ChangeLog-2009-06-16 | 25151 * kjs/collector.cpp: Removed. 25152 * kjs/collector.h: Removed. 25178 * runtime/Collector.cpp: Copied from kjs/collector.cpp. 25179 * runtime/Collector.h: Copied from kjs/collector.h. 26840 * kjs/collector.cpp: 26841 * kjs/collector.h: 27726 * kjs/collector.h: Ditto. 27937 * kjs/collector.cpp: 27938 * kjs/collector.h: 28372 * kjs/collector.h: [all …]
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | AccessibilityUIElement.cpp | 357 AttributesCollector collector; in attributesOfChildrenCallback() local 360 collector.collectAttributes(accessibilityObject().childAt(i)); in attributesOfChildrenCallback() 361 result->set(collector.attributes()); in attributesOfChildrenCallback()
|
/external/webkit/LayoutTests/fast/js/resources/ |
D | garbage-collect-after-string-appends.js-disabled | 6 // cost to the garbage collector. It should be improved to be less tied to these implementation de…
|
/external/junit/src/junit/swingui/ |
D | TestSelector.java | 256 private Vector createTestList(TestCollector collector) { in createTestList() argument 257 Enumeration each= collector.collectTests(); in createTestList()
|
D | TestRunner.java | 531 TestCollector collector= createTestCollector(); in browseTestClasses() local 532 TestSelector selector= new TestSelector(fFrame, collector); in browseTestClasses()
|
/external/webkit/ |
D | Android.mk | 239 $(JAVASCRIPTCORE_PATH)/collector/handles \
|
/external/webkit/Source/JavaScriptGlue/ |
D | ChangeLog | 38 collector/ => heap/ 39 collector/* => heap/* 1271 Stack overflow crash in JavaScript garbage collector mark pass 3339 KJS::ValueImp::marked() when garbage collector runs inside call to 3494 (including anything that uses the collector, the parser, the protect count hash table,
|
/external/bluetooth/glib/ |
D | configure.in | 207 [turn on garbage collector friendliness [default=no]])],, 231 AC_MSG_CHECKING([whether to enable garbage collector friendliness])
|
D | ChangeLog.pre-2-16 | 1183 collector.
|
/external/webkit/Source/WebKit/ |
D | ChangeLog | 53 collector/ => heap/ 54 collector/* => heap/*
|
/external/v8/ |
D | ChangeLog | 1809 Changed the scavenging collector so that promoted objects do not
|