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

1 2

  /external/webkit/Tools/DumpRenderTree/wx/
GCControllerWx.cpp 30 #include "GCController.h"
32 void GCController::collect() const
36 void GCController::collectOnAlternateThread(bool waitUntilDone) const
40 size_t GCController::getJSObjectCount() const
  /external/webkit/Source/WebCore/bindings/js/
GCController.h 33 class GCController {
34 WTF_MAKE_NONCOPYABLE(GCController); WTF_MAKE_FAST_ALLOCATED;
35 friend GCController& gcController();
44 GCController(); // Use gcController() instead
45 void gcTimerFired(Timer<GCController>*);
47 Timer<GCController> m_GCTimer;
51 GCController& gcController();
    [all...]
GCController.cpp 27 #include "GCController.h"
46 GCController& gcController()
48 DEFINE_STATIC_LOCAL(GCController, staticGCController, ());
52 GCController::GCController()
53 : m_GCTimer(this, &GCController::gcTimerFired)
57 void GCController::garbageCollectSoon()
63 void GCController::gcTimerFired(Timer<GCController>*)
    [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
GCController.cpp 27 #include "GCController.h"
35 PassRefPtr<GCController> GCController::create()
37 return adoptRef(new GCController);
40 GCController::GCController()
44 GCController::~GCController()
48 JSClassRef GCController::wrapperClass()
53 void GCController::collect(
    [all...]
GCController.h 34 class GCController : public JSWrappable {
36 static PassRefPtr<GCController> create();
37 virtual ~GCController();
49 GCController();
InjectedBundle.h 30 #include "GCController.h"
55 GCController* gcController() { return m_gcController.get(); }
99 RefPtr<GCController> m_gcController;
  /external/webkit/Tools/DumpRenderTree/qt/
GCControllerQt.cpp 36 GCController::GCController(QWebPage* parent)
41 void GCController::collect() const
46 void GCController::collectOnAlternateThread(bool waitUntilDone) const
51 unsigned int GCController::getJSObjectCount() const
GCControllerQt.h 37 class GCController : public QObject
41 GCController(QWebPage* parent);
DumpRenderTreeQt.h 62 class GCController;
155 GCController* m_gcController;
  /external/webkit/Tools/DumpRenderTree/gtk/
GCControllerGtk.cpp 30 #include "GCController.h"
37 void GCController::collect() const
42 void GCController::collectOnAlternateThread(bool waitUntilDone) const
47 size_t GCController::getJSObjectCount() const
  /external/webkit/Tools/DumpRenderTree/mac/
GCControllerMac.mm 31 #import "GCController.h"
36 void GCController::collect() const
41 void GCController::collectOnAlternateThread(bool waitUntilDone) const
46 size_t GCController::getJSObjectCount() const
FrameLoadDelegate.h 32 class GCController;
37 GCController* gcController;
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
GCController.idl 28 interface GCController {
  /external/webkit/Tools/DumpRenderTree/
GCController.h 34 class GCController {
36 GCController();
37 ~GCController();
GCController.cpp 30 #include "GCController.h"
35 GCController::GCController()
39 GCController::~GCController()
47 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject));
58 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject));
66 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject))
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
GCControllerWin.cpp 30 #include "GCController.h"
37 void GCController::collect() const
45 void GCController::collectOnAlternateThread(bool waitUntilDone) const
53 size_t GCController::getJSObjectCount() const
FrameLoadDelegate.h 36 class GCController;
171 OwnPtr<GCController> m_gcController;
  /cts/tests/tests/webkitsecurity/assets/
var-shadows-arg-gc-crash.js 7 if (this.GCController)
8 GCController.collect();
duplicate-param-gc-crash.js 7 if (this.GCController)
8 GCController.collect();
remove-remote-context-in-error-callback-crash.js 4 if (window.GCController) {
5 GCController.collect();
  /external/webkit/LayoutTests/fast/dom/Attr/script-tests/
access-after-element-destruction.js 5 if (window.GCController)
6 return GCController.collect();
  /external/webkit/LayoutTests/storage/
multiple-databases-garbage-collection.js 4 if (window.GCController)
5 GCController.collect();
  /external/webkit/Source/WebKit/win/
WebJavaScriptCollector.cpp 32 #include <WebCore/GCController.h>
95 gcController().garbageCollectNow();
102 gcController().garbageCollectOnAlternateThreadForDebugging(!!waitUntilDone);
  /external/webkit/Source/WebKit/mac/Misc/
WebCoreStatistics.mm 39 #import <WebCore/GCController.h>
115 gcController().garbageCollectNow();
120 gcController().garbageCollectOnAlternateThreadForDebugging(waitUntilDone);
  /external/webkit/LayoutTests/fast/js/resources/
js-test-pre.js 287 if (typeof GCController !== "undefined")
288 GCController.collect();

Completed in 1086 milliseconds

1 2