Home
last modified time | relevance | path

Searched refs:sourceContext (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebKit/win/
DWebSerializedJSValue.cpp85 HRESULT WebSerializedJSValue::serialize(JSContextRef sourceContext, JSValueRef value, JSValueRef* e… in serialize() argument
88 ASSERT_ARG(sourceContext, sourceContext); in serialize()
90 if (!value || !sourceContext) in serialize()
93 m_value = SerializedScriptValue::create(sourceContext, value, exception); in serialize()
/external/webkit/Source/WebKit/mac/WebView/
DWebSerializedJSValue.mm43 - (id)initWithValue:(JSValueRef)value context:(JSContextRef)sourceContext exception:(JSValueRef*)ex…
46 ASSERT_ARG(sourceContext, sourceContext);
48 if (!value || !sourceContext) {
59 _private->value = SerializedScriptValue::create(sourceContext, value, exception);
DWebSerializedJSValue.h35 - (id)initWithValue:(JSValueRef)object context:(JSContextRef)sourceContext exception:(JSValueRef*)e…
/external/webkit/Source/WebCore/bridge/jni/
Djni_jsobject.mm120 …CFRunLoopSourceContext sourceContext = {0, context, NULL, NULL, NULL, NULL, NULL, NULL, NULL, comp…
121 completionSource = CFRunLoopSourceCreate(NULL, 0, &sourceContext);
143 CFRunLoopSourceContext sourceContext;
144 CFRunLoopSourceGetContext (completionSource, &sourceContext);
145 JSObjectCallContext *callContext = (JSObjectCallContext *)sourceContext.info;
167 …CFRunLoopSourceContext sourceContext = {0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, perform…
168 _performJavaScriptSource = CFRunLoopSourceCreate(NULL, 0, &sourceContext);
/external/webkit/Source/WebCore/html/canvas/
DCanvasRenderingContext2D.cpp1361 CanvasRenderingContext* sourceContext = sourceCanvas->renderingContext(); in drawImage() local
1363 …if (!isAccelerated() || !sourceContext || !sourceContext->isAccelerated() || !sourceContext->is2d(… in drawImage()