OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DOMWrapperWorld
(Results
1 - 25
of
91
) sorted by null
1
2
3
4
/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()));
IsolatedWorld.h
34
#include "
DOMWrapperWorld
.h"
39
// An
DOMWrapperWorld
other than the thread's normal world.
40
class IsolatedWorld : public
DOMWrapperWorld
{
ScriptState.h
34
#include "
DOMWrapperWorld
.h"
40
class
DOMWrapperWorld
;
109
ScriptState* scriptStateFromNode(
DOMWrapperWorld
*, Node*);
110
ScriptState* scriptStateFromPage(
DOMWrapperWorld
*, Page*);
116
inline
DOMWrapperWorld
* debuggerWorld() { return mainThreadNormalWorld(); }
117
inline
DOMWrapperWorld
* pluginWorld() { return mainThreadNormalWorld(); }
/external/webkit/Source/WebKit/mac/WebView/
WebScriptWorldInternal.h
28
class
DOMWrapperWorld
;
31
WebCore::
DOMWrapperWorld
* core(WebScriptWorld *);
34
+ (WebScriptWorld *)findOrCreateWorld:(WebCore::
DOMWrapperWorld
*)world;
WebScriptWorld.mm
38
RefPtr<
DOMWrapperWorld
> world;
45
typedef HashMap<
DOMWrapperWorld
*, WebScriptWorld*> WorldMap;
54
- (id)initWithWorld:(PassRefPtr<
DOMWrapperWorld
>)world
113
DOMWrapperWorld
* core(WebScriptWorld *world)
118
+ (WebScriptWorld *)findOrCreateWorld:(
DOMWrapperWorld
*) world
/external/webkit/Source/WebCore/bindings/js/
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
...]
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());
WebCoreJSClientData.h
25
#include "
DOMWrapperWorld
.h"
48
DOMWrapperWorld
* normalWorld() { return m_normalWorld.get(); }
50
void getAllWorlds(Vector<
DOMWrapperWorld
*>& worlds)
55
void rememberWorld(
DOMWrapperWorld
* world)
60
void forgetWorld(
DOMWrapperWorld
* world)
69
HashSet<
DOMWrapperWorld
*> m_worldSet;
70
RefPtr<
DOMWrapperWorld
> m_normalWorld;
77
webCoreJSClientData->m_normalWorld =
DOMWrapperWorld
::create(globalData, true);
ScriptState.h
44
class
DOMWrapperWorld
;
68
ScriptState* scriptStateFromNode(
DOMWrapperWorld
*, Node*);
69
ScriptState* scriptStateFromPage(
DOMWrapperWorld
*, Page*);
ScriptCachedFrameData.h
42
class
DOMWrapperWorld
;
46
typedef HashMap< RefPtr<
DOMWrapperWorld
>, JSC::Strong<JSDOMWindow> > JSDOMWindowSet;
ScriptController.h
67
typedef WTF::HashMap< RefPtr<
DOMWrapperWorld
>, JSC::Strong<JSDOMWindowShell> > ShellMap;
73
static PassRefPtr<
DOMWrapperWorld
> createWorld();
75
JSDOMWindowShell* createWindowShell(
DOMWrapperWorld
*);
76
void destroyWindowShell(
DOMWrapperWorld
*);
78
JSDOMWindowShell* windowShell(
DOMWrapperWorld
* world)
83
JSDOMWindowShell* existingWindowShell(
DOMWrapperWorld
* world) const
88
JSDOMWindow* globalObject(
DOMWrapperWorld
* world)
93
static void getAllWorlds(Vector<
DOMWrapperWorld
*>&);
97
ScriptValue executeScriptInWorld(
DOMWrapperWorld
*, const String& script, bool forceUserGesture = false);
107
ScriptValue evaluateInWorld(const ScriptSourceCode&,
DOMWrapperWorld
*);
[
all
...]
ScheduledAction.h
48
static PassOwnPtr<ScheduledAction> create(JSC::ExecState*,
DOMWrapperWorld
* isolatedWorld, ContentSecurityPolicy*);
53
ScheduledAction(JSC::ExecState*, JSC::JSValue function,
DOMWrapperWorld
* isolatedWorld);
54
ScheduledAction(const String& code,
DOMWrapperWorld
* isolatedWorld)
70
RefPtr<
DOMWrapperWorld
> m_isolatedWorld;
JSNodeCustom.h
39
inline JSC::WeakHandleOwner* wrapperOwner(
DOMWrapperWorld
*, Node*)
45
inline void* wrapperContext(
DOMWrapperWorld
* world, Node*)
50
inline JSDOMWrapper* getInlineCachedWrapper(
DOMWrapperWorld
* world, Node* node)
57
inline bool setInlineCachedWrapper(
DOMWrapperWorld
* world, Node* node, JSDOMWrapper* wrapper)
66
inline bool clearInlineCachedWrapper(
DOMWrapperWorld
* world, Node* node, JSDOMWrapper* wrapper)
JSDOMGlobalObject.h
36
class
DOMWrapperWorld
;
49
JSDOMGlobalObject(JSC::JSGlobalData&, JSC::Structure*, PassRefPtr<
DOMWrapperWorld
>, JSC::JSObject* thisValue);
68
DOMWrapperWorld
* world() { return m_world.get(); }
82
RefPtr<
DOMWrapperWorld
> m_world;
101
JSDOMGlobalObject* toJSDOMGlobalObject(Document*,
DOMWrapperWorld
*);
102
JSDOMGlobalObject* toJSDOMGlobalObject(ScriptExecutionContext*,
DOMWrapperWorld
*);
JSErrorHandler.h
40
static PassRefPtr<JSErrorHandler> create(JSC::JSObject* listener, JSC::JSObject* wrapper, bool isAttribute,
DOMWrapperWorld
* isolatedWorld)
48
JSErrorHandler(JSC::JSObject* function, JSC::JSObject* wrapper, bool isAttribute,
DOMWrapperWorld
* isolatedWorld);
JSLazyEventListener.h
32
static PassRefPtr<JSLazyEventListener> create(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper,
DOMWrapperWorld
* isolatedWorld)
39
JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node*, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper,
DOMWrapperWorld
* isolatedWorld);
/external/webkit/Source/WebKit/qt/Api/
qwebscriptworld_p.h
26
class
DOMWrapperWorld
;
31
QWebScriptWorldPrivate(WTF::PassRefPtr<WebCore::
DOMWrapperWorld
> o)
41
WTF::RefPtr<WebCore::
DOMWrapperWorld
> world;
qwebscriptworld.h
29
class
DOMWrapperWorld
;
42
WebCore::
DOMWrapperWorld
* world() const;
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleScriptWorld.h
34
class
DOMWrapperWorld
;
44
static PassRefPtr<InjectedBundleScriptWorld> getOrCreate(WebCore::
DOMWrapperWorld
*);
49
WebCore::
DOMWrapperWorld
* coreWorld() const;
54
InjectedBundleScriptWorld(PassRefPtr<WebCore::
DOMWrapperWorld
>);
58
RefPtr<WebCore::
DOMWrapperWorld
> m_world;
InjectedBundleScriptWorld.cpp
29
#include <WebCore/
DOMWrapperWorld
.h>
37
typedef HashMap<
DOMWrapperWorld
*, InjectedBundleScriptWorld*> WorldMap;
50
PassRefPtr<InjectedBundleScriptWorld> InjectedBundleScriptWorld::getOrCreate(
DOMWrapperWorld
* world)
67
InjectedBundleScriptWorld::InjectedBundleScriptWorld(PassRefPtr<
DOMWrapperWorld
> world)
80
DOMWrapperWorld
* InjectedBundleScriptWorld::coreWorld() const
/external/webkit/Source/WebKit/win/
WebScriptWorld.h
32
class
DOMWrapperWorld
;
41
static COMPtr<WebScriptWorld> findOrCreateWorld(WebCore::
DOMWrapperWorld
*);
46
WebCore::
DOMWrapperWorld
* world() const { return m_world.get(); }
49
static COMPtr<WebScriptWorld> createInstance(PassRefPtr<WebCore::
DOMWrapperWorld
>);
51
WebScriptWorld(PassRefPtr<WebCore::
DOMWrapperWorld
>);
60
RefPtr<WebCore::
DOMWrapperWorld
> m_world;
/external/webkit/Source/WebCore/page/
UserScriptTypes.h
36
class
DOMWrapperWorld
;
40
typedef HashMap<RefPtr<
DOMWrapperWorld
>, UserScriptVector*> UserScriptMap;
UserStyleSheetTypes.h
37
class
DOMWrapperWorld
;
41
typedef HashMap<RefPtr<
DOMWrapperWorld
>, UserStyleSheetVector*> UserStyleSheetMap;
PageGroup.h
95
void addUserScriptToWorld(
DOMWrapperWorld
*, const String& source, const KURL&,
98
void addUserStyleSheetToWorld(
DOMWrapperWorld
*, const String& source, const KURL&,
103
void removeUserScriptFromWorld(
DOMWrapperWorld
*, const KURL&);
104
void removeUserStyleSheetFromWorld(
DOMWrapperWorld
*, const KURL&);
106
void removeUserScriptsFromWorld(
DOMWrapperWorld
*);
107
void removeUserStyleSheetsFromWorld(
DOMWrapperWorld
*);
Completed in 1457 milliseconds
1
2
3
4