Searched defs:GCController (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Tools/DumpRenderTree/
H A DGCController.h34 class GCController { class
36 GCController();
37 ~GCController();
H A DGCController.cpp30 #include "GCController.h"
35 GCController::GCController() function in class:GCController
39 GCController::~GCController()
47 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject));
58 GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject));
66 GCController* controlle
[all...]
/external/webkit/Tools/DumpRenderTree/qt/
H A DGCControllerQt.h37 class GCController : public QObject class in inherits:QObject
41 GCController(QWebPage* parent);
H A DGCControllerQt.cpp36 GCController::GCController(QWebPage* parent) function in class:GCController
41 void GCController::collect() const
46 void GCController::collectOnAlternateThread(bool waitUntilDone) const
51 unsigned int GCController::getJSObjectCount() const
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DGCController.h34 class GCController : public JSWrappable { class in namespace:WTR
36 static PassRefPtr<GCController> create();
37 virtual ~GCController();
49 GCController();
H A DGCController.cpp27 #include "GCController.h"
35 PassRefPtr<GCController> GCController::create()
37 return adoptRef(new GCController);
40 GCController::GCController() function in class:WTR::GCController
44 GCController::~GCController()
48 JSClassRef GCController::wrapperClass()
53 void GCController
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DGCController.h33 class GCController { class in namespace:WebCore
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();
H A DGCController.cpp27 #include "GCController.h"
46 GCController& gcController()
48 DEFINE_STATIC_LOCAL(GCController, staticGCController, ());
52 GCController::GCController() function in class:WebCore::GCController
53 : m_GCTimer(this, &GCController::gcTimerFired)
57 void GCController::garbageCollectSoon()
63 void GCController::gcTimerFired(Timer<GCController>*)
68 void GCController
[all...]

Completed in 116 milliseconds