HomeSort by relevance Sort by last modified time
    Searched full:worldcontext (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/WebCore/bindings/v8/
V8WindowErrorHandler.h 42 static PassRefPtr<V8WindowErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
44 return adoptRef(new V8WindowErrorHandler(listener, isInline, worldContext));
48 V8WindowErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext);
V8WorkerContextErrorHandler.h 44 static PassRefPtr<V8WorkerContextErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
46 return adoptRef(new V8WorkerContextErrorHandler(listener, isInline, worldContext));
50 V8WorkerContextErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext);
V8EventListener.h 47 static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
49 return adoptRef(new V8EventListener(listener, isAttribute, worldContext));
53 V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext);
V8LazyEventListener.h 49 static PassRefPtr<V8LazyEventListener> create(const String& functionName, bool isSVGEvent, const String& code, const String& sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext)
51 return adoptRef(new V8LazyEventListener(functionName, isSVGEvent, code, sourceURL, position, worldContext));
60 V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext);
V8WorkerContextEventListener.h 47 static PassRefPtr<V8WorkerContextEventListener> create(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
49 return adoptRef(new V8WorkerContextEventListener(listener, isInline, worldContext));
55 V8WorkerContextEventListener(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext);
V8WorkerContextErrorHandler.cpp 42 V8WorkerContextErrorHandler::V8WorkerContextErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
43 : V8WorkerContextEventListener(listener, isInline, worldContext)
V8AbstractEventListener.h 99 const WorldContextHandle& worldContext() const { return m_worldContext; }
102 V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldContext);
V8EventListener.cpp 38 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
39 : V8AbstractEventListener(isAttribute, worldContext)
V8WindowErrorHandler.cpp 40 V8WindowErrorHandler::V8WindowErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
41 : V8EventListener(listener, isInline, worldContext)
V8WorkerContextEventListener.cpp 52 V8WorkerContextEventListener::V8WorkerContextEventListener(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
53 : V8EventListener(listener, isInline, worldContext)
V8AbstractEventListener.cpp 55 V8AbstractEventListener::V8AbstractEventListener(bool isAttribute, const WorldContextHandle& worldContext)
59 , m_worldContext(worldContext)
95 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
137 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
V8LazyEventListener.cpp 45 V8LazyEventListener::V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext)
46 : V8AbstractEventListener(true, worldContext)
94 v8::Local<v8::Context> v8Context = worldContext().adjustedContext(proxy);
ScriptEventListener.cpp 93 v8::Handle<v8::Context> context = toV8Context(document, v8Listener->worldContext());
109 v8::Handle<v8::Context> context = toV8Context(document, v8Listener->worldContext());
V8Proxy.cpp 862 v8::Local<v8::Context> toV8Context(ScriptExecutionContext* context, const WorldContextHandle& worldContext)
866 return worldContext.adjustedContext(proxy);
V8Proxy.h 387 v8::Local<v8::Context> toV8Context(ScriptExecutionContext*, const WorldContextHandle& worldContext);

Completed in 313 milliseconds