HomeSort by relevance Sort by last modified time
    Searched defs:DOMWrapperWorld (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/bindings/v8/
DOMWrapperWorld.h 43 class DOMWrapperWorld : public RefCounted<DOMWrapperWorld> {
45 static PassRefPtr<DOMWrapperWorld> create() { return adoptRef(new DOMWrapperWorld()); }
46 virtual ~DOMWrapperWorld() {}
49 DOMWrapperWorld();
52 DOMWrapperWorld* mainThreadNormalWorld();
DOMWrapperWorld.cpp 32 #include "DOMWrapperWorld.h"
39 DOMWrapperWorld::DOMWrapperWorld()
44 DOMWrapperWorld* mainThreadNormalWorld()
47 DEFINE_STATIC_LOCAL(RefPtr<DOMWrapperWorld>, cachedNormalWorld, (DOMWrapperWorld::create()));
  /external/webkit/Source/WebCore/bindings/js/
DOMWrapperWorld.cpp 22 #include "DOMWrapperWorld.h"
39 DOMWrapperWorld::DOMWrapperWorld(JSC::JSGlobalData* globalData, bool isNormal)
49 DOMWrapperWorld::~DOMWrapperWorld()
60 void DOMWrapperWorld::clearWrappers()
70 DOMWrapperWorld* normalWorld(JSC::JSGlobalData& globalData)
77 DOMWrapperWorld* mainThreadNormalWorld()
80 static DOMWrapperWorld* cachedNormalWorld = normalWorld(*JSDOMWindow::commonJSGlobalData());
DOMWrapperWorld.h 40 JSDOMWrapperOwner(DOMWrapperWorld*);
44 DOMWrapperWorld* m_world;
47 inline JSDOMWrapperOwner::JSDOMWrapperOwner(DOMWrapperWorld* world)
52 class DOMWrapperWorld : public RefCounted<DOMWrapperWorld> {
54 static PassRefPtr<DOMWrapperWorld> create(JSC::JSGlobalData* globalData, bool isNormal = false)
56 return adoptRef(new DOMWrapperWorld(globalData, isNormal));
58 ~DOMWrapperWorld();
76 DOMWrapperWorld(JSC::JSGlobalData*, bool isNormal);
85 DOMWrapperWorld* normalWorld(JSC::JSGlobalData&)
    [all...]

Completed in 86 milliseconds