HomeSort by relevance Sort by last modified time
    Searched full:m_context (Results 26 - 50 of 166) sorted by null

12 3 4 5 6 7

  /external/webkit/Source/WebCore/fileapi/
FileStreamProxy.cpp 49 , m_context(context)
73 ASSERT(m_context->isContextThread());
74 ASSERT(m_context->fileThread());
75 return m_context->fileThread();
89 m_context->postTask(createCallbackTask(&didStart, this));
110 m_context->postTask(createCallbackTask(&derefProxyOnContext, this));
127 m_context->postTask(createCallbackTask(&didGetSize, this, size));
144 m_context->postTask(createCallbackTask(&didOpen, this, success));
155 m_context->postTask(createCallbackTask(&didOpen, this, success));
182 m_context->postTask(createCallbackTask(&didRead, this, bytesRead))
    [all...]
  /external/webkit/Source/WebCore/websockets/
WebSocketChannel.cpp 61 : m_context(context)
73 if (m_context->isDocument())
74 if (Page* page = static_cast<Document*>(m_context)->page())
78 InspectorInstrumentation::didCreateWebSocket(m_context, m_identifier, url, m_context->url());
128 if (m_identifier && m_context)
129 InspectorInstrumentation::didCloseWebSocket(m_context, m_identifier);
132 m_context = 0;
153 if (!m_context)
156 InspectorInstrumentation::willSendWebSocketHandshakeRequest(m_context, m_identifier, m_handshake.clientHandshakeRequest())
    [all...]
WebSocketHandshake.cpp 167 , m_context(context)
214 return m_context->securityOrigin()->toString();
245 if (m_context->isDocument()) {
246 Document* document = static_cast<Document*>(m_context);
289 if (m_context->isDocument()) {
290 Document* document = static_cast<Document*>(m_context);
311 m_context = 0;
331 m_context->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, makeString("Unexpected response code: ", String::number(statusCode)), 0, clientOrigin(), 0);
445 m_context->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, "Status line contains embedded null", 0, clientOrigin(), 0);
455 m_context->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, "Status line is too long", 0, clie (…)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
SolidFillShader.cpp 62 m_context->useProgram(m_program);
66 m_context->uniform4f(m_colorLocation, rgba[0] * rgba[3], rgba[1] * rgba[3], rgba[2] * rgba[3], rgba[3]);
70 m_context->uniformMatrix3fv(m_matrixLocation, false /*transpose*/, matrix, 1 /*count*/);
72 m_context->vertexAttribPointer(m_positionLocation, 2, GraphicsContext3D::FLOAT, false, 0, 0);
74 m_context->enableVertexAttribArray(m_positionLocation);
BicubicShader.cpp 114 m_context->useProgram(m_program);
117 m_context->uniformMatrix3fv(m_matrixLocation, false /*transpose*/, matrix, 1 /*count*/);
121 m_context->uniformMatrix3fv(m_texMatrixLocation, false /*transpose*/, texMatrix, 1 /*count*/);
122 m_context->uniformMatrix4fv(m_coefficientsLocation, false /*transpose*/, const_cast<float *>(coefficients), 1 /*count*/);
124 m_context->uniform2f(m_imageIncrementLocation, imageIncrement[0], imageIncrement[1]);
128 m_context->uniform1i(m_imageLocation, 0);
129 m_context->uniform1f(m_alphaLocation, alpha);
131 m_context->vertexAttribPointer(m_positionLocation, 2, GraphicsContext3D::FLOAT, false, 0, 0);
133 m_context->enableVertexAttribArray(m_positionLocation);
Texture.cpp 51 : m_context(context)
61 m_context->deleteTexture(m_tileTextureIds->at(i));
161 convertFormat(m_context, m_format, &glFormat, &glType, &swizzle);
196 m_context->bindTexture(GraphicsContext3D::TEXTURE_2D, m_tileTextureIds->at(tile));
197 m_context->texSubImage2D(GraphicsContext3D::TEXTURE_2D, 0 /* level */,
207 m_context->bindTexture(GraphicsContext3D::TEXTURE_2D, m_tileTextureIds->at(tile));
208 m_context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MIN_FILTER, GraphicsContext3D::LINEAR);
209 m_context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MAG_FILTER, GraphicsContext3D::LINEAR);
210 m_context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_WRAP_S, GraphicsContext3D::CLAMP_TO_EDGE);
211 m_context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_WRAP_T, GraphicsContext3D (…)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebGeolocationManagerProxy.cpp 41 , m_context(context)
61 if (!m_context)
64 m_context->sendToAllProcesses(Messages::WebGeolocationManager::DidChangePosition(position->data()));
69 if (!m_context)
72 m_context->sendToAllProcesses(Messages::WebGeolocationManager::DidFailToDeterminePosition());
WebContextUserMessageCoders.h 89 , m_context(context)
95 , m_context(userMessageDecoder.m_context)
113 coder.m_root = coder.m_context->process()->webPage(pageID);
120 coder.m_root = coder.m_context->process()->webFrame(frameID);
138 WebContext* m_context; member in class:WebKit::WebContextUserMessageDecoder
  /external/webkit/Source/WebCore/bindings/v8/
ScriptState.h 58 return v8::Local<v8::Context>::New(m_context);
75 v8::Persistent<v8::Context> m_context; member in class:WebCore::ScriptState
92 m_context = v8::Persistent<v8::Context>::New(scriptState->context());
96 if (!m_context.IsEmpty()) {
97 m_context.Dispose();
98 m_context.Clear();
104 v8::Persistent<v8::Context> m_context; member in class:WebCore::ScriptStateProtectedPtr
ScriptScope.cpp 41 : m_context(scriptState->context())
42 , m_scope(m_context)
46 ASSERT(!m_context.IsEmpty());
V8DOMWindowShell.cpp 167 // m_context, m_global, and m_wrapperBoilerplates should
168 // all be non-empty if if m_context is non-empty.
169 ASSERT(m_context.IsEmpty() || !m_global.IsEmpty());
170 return !m_context.IsEmpty();
175 if (!m_context.IsEmpty()) {
177 m_context.Dispose();
178 m_context.Clear();
208 if (!m_context.IsEmpty()) {
218 if (!m_context.IsEmpty()) {
222 v8::Context::Scope contextScope(m_context);
    [all...]
WorkerContextExecutionProxy.cpp 105 if (!m_context.IsEmpty()) {
106 m_context.Dispose();
107 m_context.Clear();
133 if (!m_context.IsEmpty())
144 m_context = v8::Context::New(0, globalTemplate);
145 if (m_context.IsEmpty())
149 v8::Local<v8::Context> context = v8::Local<v8::Context>::New(m_context);
177 v8::Handle<v8::Object> globalObject = v8::Handle<v8::Object>::Cast(m_context->Global()->GetPrototype());
198 v8::Context::Scope scope(m_context);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
DrawingBufferChromium.cpp 78 : m_context(context)
94 if (!m_context->getExtensions()->supports("GL_CHROMIUM_copy_texture_to_parent_texture")) {
95 m_context.clear();
112 if (!m_context)
115 m_context->bindFramebuffer(GraphicsContext3D::FRAMEBUFFER, m_fbo);
116 m_context->deleteTexture(m_colorBuffer);
124 if (!m_context)
137 m_context->makeContextCurrent();
142 static_cast<Extensions3DChromium*>(m_context->getExtensions())->copyTextureToParentTextureCHROMIUM(m_colorBuffer, parentTexture);
143 m_context->flush()
    [all...]
LayerTexture.cpp 37 : m_context(context)
77 m_context->bindTexture(GraphicsContext3D::TEXTURE_2D, m_textureId);
82 m_context->framebufferTexture2D(GraphicsContext3D::FRAMEBUFFER, GraphicsContext3D::COLOR_ATTACHMENT0, GraphicsContext3D::TEXTURE_2D, m_textureId, 0);
ProgramBinding.h 52 GraphicsContext3D* m_context; member in class:WebCore::ProgramBindingBase
65 if (!m_vertexShader.init(m_context, m_program))
67 if (!m_fragmentShader.init(m_context, m_program))
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
LegacyCACFLayerTreeHost.cpp 104 , m_context(wkCACFContextCreate())
116 wkCACFContextDestroy(m_context);
121 wkCACFContextSetUserData(m_context, userData);
122 wkCACFContextSetLayer(m_context, layer->platformLayer());
189 wkCACFContextSetD3DDevice(m_context, m_d3dDevice.get());
201 wkCACFContextSetLayer(m_context, 0);
203 wkCACFContextSetD3DDevice(m_context, 0);
261 if (!wkCACFContextBeginUpdate(m_context, space, sizeof(space), CACurrentMediaTime(), bounds, windowDirtyRects.data(), windowDirtyRects.size()))
270 WKCACFUpdateRectEnumerator* e = wkCACFContextCopyUpdateRectEnumerator(m_context);
286 timeToNextRender = wkCACFContextGetNextUpdateTime(m_context);
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebKitLoseContext.cpp 38 , m_context(context)
58 if (m_context)
59 m_context->forceLostContext();
WebGLObject.h 53 m_context = 0;
56 WebGLRenderingContext* context() const { return m_context; }
90 WebGLRenderingContext* m_context; member in class:WebCore::WebGLObject
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextPlatformPrivate.h 44 : m_context(platformContext) { }
46 PlatformContextSkia* context() { return m_context; }
50 PlatformContextSkia* m_context; member in class:WebCore::GraphicsContextPlatformPrivate
  /external/webkit/Source/WebCore/platform/graphics/gtk/
GraphicsContext3DInternal.cpp 196 : m_context(context)
204 : m_context(context)
213 if (m_context) {
219 ::glXDestroyContext(sharedDisplay(), m_context); local
220 m_context = 0;
239 if (::glXGetCurrentContext() == m_context)
241 if (!m_context)
244 ::glXMakeCurrent(sharedDisplay(), m_pbuffer, m_context); local
249 ::glXMakeCurrent(sharedDisplay(), m_glxPixmap, m_context); local
  /external/webkit/Tools/DumpRenderTree/cairo/
PixelDumpSupportCairo.h 64 cairo_destroy(m_context);
67 cairo_t* cairoContext() const { return m_context; }
73 , m_context(context)
78 cairo_t* m_context; member in class:BitmapContext
  /external/webkit/Source/WebCore/platform/graphics/opengl/
Extensions3DOpenGL.cpp 46 , m_context(context)
109 ANGLEWebKitBridge& compiler = m_context->m_compiler;
125 ANGLEWebKitBridge& compiler = m_context->m_compiler;
149 m_context->makeContextCurrent();
164 m_context->makeContextCurrent();
175 m_context->makeContextCurrent();
188 m_context->makeContextCurrent();
  /external/webkit/Source/WebCore/platform/graphics/pango/
FontPlatformData.h 40 : m_context(0)
49 : m_context(0)
94 PangoContext* m_context; member in class:WebCore::FontPlatformData
  /external/webkit/Source/WebKit2/Shared/
WebData.h 67 m_freeDataFunction(const_cast<unsigned char*>(m_bytes), m_context); local
78 , m_context(context)
94 const void* m_context; member in class:WebKit::WebData
  /external/webkit/Tools/DumpRenderTree/cg/
PixelDumpSupportCG.h 67 CGContextRef cgContext() const { return m_context.get(); }
73 , m_context(AdoptCF, context)
78 RetainPtr<CGContextRef> m_context; member in class:BitmapContext

Completed in 6603 milliseconds

12 3 4 5 6 7