Searched refs:context (Results 201 - 225 of 2231) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/graphics/cg/
H A DPDFDocumentImage.cpp98 void PDFDocumentImage::adjustCTM(GraphicsContext* context) const
113 CGContextTranslateCTM(context->platformContext(), floorf(-min(zero, min(rx.x, ry.x))), floorf(-min(zero, min(rx.y, ry.y))));
116 CGContextRotateCTM(context->platformContext(), -m_rotation);
119 CGContextTranslateCTM(context->platformContext(), m_mediaBox.x() - m_cropBox.x(), m_mediaBox.y() - m_cropBox.y());
156 void PDFDocumentImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace, CompositeOperator op) argument
161 context->save();
163 context->setCompositeOperation(op);
171 CGContextTranslateCTM(context->platformContext(), dstRect.x() - srcRect.x() * hScale, dstRect.y() - srcRect.y() * vScale);
172 CGContextScaleCTM(context->platformContext(), hScale, vScale);
173 CGContextScaleCTM(context
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DDrawingBufferChromium.cpp56 static unsigned generateColorTexture(GraphicsContext3D* context, const IntSize& size) argument
58 unsigned offscreenColorTexture = context->createTexture();
62 context->bindTexture(GraphicsContext3D::TEXTURE_2D, offscreenColorTexture);
63 context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MAG_FILTER, GraphicsContext3D::NEAREST);
64 context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MIN_FILTER, GraphicsContext3D::NEAREST);
65 context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_WRAP_S, GraphicsContext3D::CLAMP_TO_EDGE);
66 context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_WRAP_T, GraphicsContext3D::CLAMP_TO_EDGE);
67 context->texImage2DResourceSafe(GraphicsContext3D::TEXTURE_2D, 0, GraphicsContext3D::RGBA, size.width(), size.height(), 0, GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE);
68 context->framebufferTexture2D(GraphicsContext3D::FRAMEBUFFER, GraphicsContext3D::COLOR_ATTACHMENT0, GraphicsContext3D::TEXTURE_2D, offscreenColorTexture, 0);
74 DrawingBuffer::DrawingBuffer(GraphicsContext3D* context, argument
170 setGrContext(GrContext* context) argument
[all...]
H A DCanvas2DLayerChromium.cpp67 GraphicsContext3D* context = layerRendererContext(); local
69 context->deleteTexture(m_textureId);
70 m_textureId = context->createTexture();
71 context->activeTexture(GraphicsContext3D::TEXTURE0);
72 context->bindTexture(GraphicsContext3D::TEXTURE_2D, m_textureId);
74 context->texImage2DResourceSafe(GraphicsContext3D::TEXTURE_2D, 0, GraphicsContext3D::RGBA, size.width(), size.height(), 0, GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE);
77 context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MIN_FILTER, GraphicsContext3D::LINEAR);
78 context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MAG_FILTER, GraphicsContext3D::LINEAR);
79 context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_WRAP_S, GraphicsContext3D::CLAMP_TO_EDGE);
80 context
[all...]
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebNetscapeContainerCheckPrivate.h43 typedef uint32_t (*WKN_CheckIfAllowedToLoadURLProcPtr)(NPP npp, const char* url, const char* frame, void (*callbackFunc)(NPP npp, uint32_t, NPBool allowed, void* context), void* context);
47 uint32_t WKN_CheckIfAllowedToLoadURL(NPP npp, const char* url, const char* frame, void (*callbackFunc)(NPP npp, uint32_t, NPBool allowed, void* context), void* context);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebSerializedJSValue.idl38 [local] HRESULT serialize([in] JSContextRef context, [in] JSValueRef value, [out, retval] JSValueRef* exception);
39 [local] HRESULT deserialize([in] JSContextRef context, [out, retval] JSValueRef* value);
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkcontext_p.h34 RefPtr<WebKit::WebContext> context; member in class:QWKContextPrivate
/external/webkit/Source/WebKit2/UIProcess/
H A DWebContextInjectedBundleClient.cpp36 void WebContextInjectedBundleClient::didReceiveMessageFromInjectedBundle(WebContext* context, const String& messageName, APIObject* messageBody) argument
41 m_client.didReceiveMessageFromInjectedBundle(toAPI(context), toAPI(messageName.impl()), toAPI(messageBody), m_client.clientInfo);
44 void WebContextInjectedBundleClient::didReceiveSynchronousMessageFromInjectedBundle(WebContext* context, const String& messageName, APIObject* messageBody, RefPtr<APIObject>& returnData) argument
50 m_client.didReceiveSynchronousMessageFromInjectedBundle(toAPI(context), toAPI(messageName.impl()), toAPI(messageBody), &returnDataRef, m_client.clientInfo);
H A DWebGeolocationManagerProxy.cpp34 PassRefPtr<WebGeolocationManagerProxy> WebGeolocationManagerProxy::create(WebContext* context) argument
36 return adoptRef(new WebGeolocationManagerProxy(context));
39 WebGeolocationManagerProxy::WebGeolocationManagerProxy(WebContext* context) argument
41 , m_context(context)
/external/webkit/Tools/DumpRenderTree/cairo/
H A DPixelDumpSupportCairo.h51 static PassRefPtr<BitmapContext> createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, cairo_t* context) argument
53 return adoptRef(new BitmapContext(buffer, context));
71 BitmapContext(PlatformBitmapBuffer buffer, cairo_t* context) argument
73 , m_context(context)
/external/webkit/Tools/DumpRenderTree/cg/
H A DPixelDumpSupportCG.h52 static PassRefPtr<BitmapContext> createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, CGContextRef context) argument
54 return adoptRef(new BitmapContext(buffer, context));
71 BitmapContext(PlatformBitmapBuffer buffer, CGContextRef context) argument
73 , m_context(AdoptCF, context)
/external/webkit/Tools/DumpRenderTree/win/
H A DEventSender.h38 JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame);
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
H A DPreventEmptyUserAgent.cpp39 static void didRunJavaScript(WKSerializedScriptValueRef resultSerializedScriptValue, WKErrorRef error, void* context) argument
41 TEST_ASSERT(context == reinterpret_cast<void*>(0x1234578));
61 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
62 PlatformWebView webView(context.get());
/external/apache-http/src/org/apache/http/client/
H A DRedirectHandler.java59 * @param context the context for the request execution
64 boolean isRedirectRequested(HttpResponse response, HttpContext context); argument
69 * execution context.
72 * @param context the context for the request execution
76 URI getLocationURI(HttpResponse response, HttpContext context) argument
/external/chromium/android/autofill/
H A Dandroid_url_request_context_getter.h37 AndroidURLRequestContextGetter(net::URLRequestContext* context, base::Thread* ioThread) argument
38 : context_(context)
/external/clang/test/Sema/
H A Dwarn-shadow.c50 void test7(void *context, void (*callback)(void *context)) {} argument
/external/dnsmasq/dbus/
H A Ddnsmasq.conf9 <policy context="default">
/external/libsepol/include/sepol/
H A Dcontext.h10 extern int sepol_check_context(const char *context);
16 const sepol_context_t * context);
/external/replicaisland/src/com/replica/replicaisland/
H A DVibrationSystem.java36 if (params != null && params.context != null) {
37 Vibrator vibrator = (Vibrator)params.context.getSystemService(Context.VIBRATOR_SERVICE);
/external/webkit/Source/WebCore/bindings/generic/
H A DActiveDOMCallback.cpp66 ActiveDOMObjectCallbackImpl(ScriptExecutionContext* context) argument
67 : ActiveDOMObject(context, this)
116 ScriptExecutionContext* context = implOwnPtr->scriptExecutionContext(); local
118 if (context && !context->isContextThread())
119 context->postTask(DestroyOnContextThreadTask::create(implOwnPtr.release()));
122 ActiveDOMCallback::ActiveDOMCallback(ScriptExecutionContext* context) argument
123 : m_impl(new ActiveDOMObjectCallbackImpl(context))
/external/webkit/Source/WebCore/bindings/js/
H A DScriptWrappable.h46 void setWrapper(JSC::JSGlobalData& globalData, JSDOMWrapper* wrapper, JSC::WeakHandleOwner* wrapperOwner, void* context) argument
48 m_wrapper.set(globalData, wrapper, wrapperOwner, context);
/external/webkit/Source/WebCore/bindings/v8/
H A DWorldContextHandle.cpp44 if (V8IsolatedContext* context = V8IsolatedContext::getEntered())
45 m_context = context->sharedContext();
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLObject.cpp36 WebGLObject::WebGLObject(WebGLRenderingContext* context) argument
38 , m_context(context)
H A DWebGLRenderbuffer.cpp50 setObject(context()->graphicsContext3D()->createRenderbuffer());
55 context()->graphicsContext3D()->deleteRenderbuffer(object);
H A DWebGLShader.cpp46 setObject(context()->graphicsContext3D()->createShader(type));
51 context()->graphicsContext3D()->deleteShader(object);
/external/webkit/Source/WebCore/inspector/
H A DInspectorDatabaseInstrumentation.h41 inline void InspectorInstrumentation::didOpenDatabase(ScriptExecutionContext* context, PassRefPtr<Database> database, const String& domain, const String& name, const String& version) argument
44 if (InspectorAgent* inspectorAgent = inspectorAgentForContext(context))

Completed in 334 milliseconds

1234567891011>>