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

12 3 4 5

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
CustomFilterGlobalContext.h 52 GraphicsContext3D* context() const { return m_context.get(); }
75 RefPtr<GraphicsContext3D> m_context; member in class:WebCore::CustomFilterGlobalContext
CustomFilterGlobalContext.cpp 73 if (m_context.get())
81 m_context = GraphicsContext3D::create(attributes);
82 if (!m_context)
84 m_context->makeContextCurrent();
85 m_context->enable(GL_DEPTH_TEST);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MainThreadTaskRunner.cpp 65 : m_context(context)
83 if (m_context->tasksNeedSuspension() || !m_pendingTasks.isEmpty()) {
88 task->performTask(m_context);
112 task->performTask(m_context);
MainThreadTaskRunner.h 63 ExecutionContext* m_context; member in class:WebCore::MainThreadTaskRunner
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
WorkerGlobalScopeNotifications.h 53 WorkerGlobalScope* m_context; member in class:WebCore::WorkerGlobalScopeNotifications
  /external/chromium_org/third_party/WebKit/Source/platform/
LifecycleNotifier.h 63 , m_context(context)
67 Context* context() const { return m_context; }
85 Context* m_context; member in class:WebCore::LifecycleNotifier
95 ASSERT(observer->lifecycleContext() == m_context);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8DOMWrapper.h 92 , m_context(isolate->GetCurrentContext())
102 if (contextForWrapper == m_context)
104 m_context = v8::Local<v8::Context>::New(isolate, contextForWrapper);
106 m_context->Enter();
113 m_context->Exit();
116 v8::Handle<v8::Context> context() const { return m_context; }
120 v8::Handle<v8::Context> m_context; member in class:WebCore::V8WrapperInstantiationScope
ExceptionState.h 58 , m_context(UnknownContext)
66 , m_context(context)
74 , m_context(context)
78 , m_isolate(isolate) { ASSERT(m_context == ConstructionContext); }
105 Context context() const { return m_context; }
111 Context m_context; member in class:WebCore::ExceptionState
ScriptState.h 60 return m_context.newLocal(m_isolate);
91 ScopedPersistent<v8::Context> m_context; member in class:WebCore::ScriptState
114 m_context.set(scriptState->isolate(), scriptState->context());
121 ScopedPersistent<v8::Context> m_context; member in class:WebCore::ScriptStateProtectedPtr
CustomElementConstructorBuilder.cpp 60 : m_context(state->context())
64 ASSERT(m_context == v8::Isolate::GetCurrent()->GetCurrentContext());
70 return !DOMWrapperWorld::isolatedWorld(m_context);
86 v8::Local<v8::Object> basePrototype = V8PerContextData::from(m_context)->prototypeForType(&V8HTMLElement::wrapperTypeInfo);
94 if (!V8PerContextData::from(m_context)) {
141 RefPtr<ExecutionContext> executionContext(toExecutionContext(m_context));
170 v8::Isolate* isolate = m_context->GetIsolate();
194 V8HiddenPropertyName::setNamedHiddenReference(m_constructor, "customElementDocument", toV8(document, m_context->Global(), isolate));
218 if (m_prototype->InternalFieldCount() || !m_prototype->GetHiddenValue(V8HiddenPropertyName::customElementIsInterfacePrototypeObject(m_context->GetIsolate())).IsEmpty()) {
223 if (m_prototype->GetPropertyAttributes(v8String(m_context->GetIsolate(), "constructor")) & v8::DontDelete)
    [all...]
V8PerContextData.h 83 : m_context(v8::Isolate::GetCurrent(), context)
87 m_context.SetWeak(this, &V8PerContextDataHolder::weakCallback);
96 data.GetParameter()->m_context.Reset();
100 v8::Persistent<v8::Context> m_context; member in class:WebCore::V8PerContextDataHolder
166 , m_context(m_isolate, context)
190 v8::Persistent<v8::Context> m_context; member in class:WebCore::V8PerContextData
ScriptState.cpp 47 : m_context(context->GetIsolate(), context)
50 m_context.setWeak(this, &setWeakCallback);
60 return toDOMWindow(m_context.newLocal(m_isolate));
66 return toExecutionContext(m_context.newLocal(m_isolate));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
GraphicsContextAnnotator.cpp 83 ASSERT(!m_context);
124 m_context = paintInfo.context;
125 m_context->beginAnnotation(rendererName, paintPhase, elementId, elementClass, elementTag);
130 ASSERT(m_context);
131 m_context->endAnnotation();
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLDrawBuffers.cpp 74 if (!m_context->m_framebufferBinding) {
76 m_context->synthesizeGLError(GL_INVALID_VALUE, "drawBuffersWEBGL", "more than one buffer");
80 m_context->synthesizeGLError(GL_INVALID_OPERATION, "drawBuffersWEBGL", "BACK or NONE");
85 m_context->graphicsContext3D()->extensions()->drawBuffersEXT(1, &value);
86 m_context->setBackDrawBuffer(bufs[0]);
88 if (n > m_context->maxDrawBuffers()) {
89 m_context->synthesizeGLError(GL_INVALID_VALUE, "drawBuffersWEBGL", "more than max draw buffers");
94 m_context->synthesizeGLError(GL_INVALID_OPERATION, "drawBuffersWEBGL", "COLOR_ATTACHMENTi_EXT or NONE");
98 m_context->m_framebufferBinding->drawBuffers(buffers);
WebGLRenderingContext.cpp 472 explicit WebGLRenderingContextLostCallback(WebGLRenderingContext* cb) : m_context(cb) { }
473 virtual void onContextLost() { m_context->forceLostContext(WebGLRenderingContext::RealLostContext); }
476 WebGLRenderingContext* m_context; member in class:WebCore::WebGLRenderingContextLostCallback
482 explicit WebGLRenderingContextErrorMessageCallback(WebGLRenderingContext* cb) : m_context(cb) { }
485 if (m_context->m_synthesizedErrorsToConsole)
486 m_context->printGLErrorToConsole(message);
487 InspectorInstrumentation::didFireWebGLErrorOrWarning(m_context->canvas(), message);
491 WebGLRenderingContext* m_context; member in class:WebCore::WebGLRenderingContextErrorMessageCallback
542 , m_context(context)
559 ASSERT(m_context);
    [all...]
ANGLEInstancedArrays.cpp 77 m_context->drawArraysInstancedANGLE(mode, first, count, primcount);
85 m_context->drawElementsInstancedANGLE(mode, count, type, offset, primcount);
93 m_context->vertexAttribDivisorANGLE(index, divisor);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutAttributes.h 54 RenderSVGInlineText* context() const { return m_context; }
62 RenderSVGInlineText* m_context; member in class:WebCore::SVGTextLayoutAttributes
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerBridge.cpp 76 , m_context(context)
160 m_context->makeContextCurrent();
218 m_context->flush();
229 return m_context->webContext();
237 if (m_context->webContext()->isContextLost() || !m_surfaceIsValid) {
245 m_context = sharedContext;
247 RefPtr<SkSurface> surface(createSkSurface(m_context.get(), size, m_msaaSampleCount));
280 m_context->makeContextCurrent();
313 m_context->bindTexture(GL_TEXTURE_2D, mailboxInfo->m_image->getTexture()->getTextureHandle());
314 m_context->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR)
    [all...]
GraphicsContextRecorder.cpp 42 ASSERT(!m_context);
46 m_context = adoptPtr(new GraphicsContext(canvas));
47 m_context->setTrackOpaqueRegion(isCertainlyOpaque);
48 m_context->setCertainlyOpaque(isCertainlyOpaque);
49 return m_context.get();
55 m_context.clear();
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
XUnresolvedVariable.java 38 transient private int m_context; field in class:XUnresolvedVariable
83 m_context = sourceNode;
126 XObject var = velem.getValue(m_transformer, m_context);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
PrefixResolverDefault.java 39 Node m_context; field in class:PrefixResolverDefault
50 m_context = xpathExpressionContext;
63 return getNamespaceForPrefix(prefix, m_context);
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScope.cpp 280 : m_context(context)
282 ASSERT(m_context && m_context->isContextThread());
283 m_context->registerObserver(this);
288 if (!m_context)
290 ASSERT(m_context->isContextThread());
291 m_context->unregisterObserver(this);
296 if (!m_context)
298 ASSERT(m_context->isContextThread());
299 m_context->unregisterObserver(this)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLengthContext.cpp 40 : m_context(context)
45 : m_context(context)
222 RenderStyle* style = renderStyleForLengthResolving(m_context);
239 RenderStyle* style = renderStyleForLengthResolving(m_context);
250 RenderStyle* style = renderStyleForLengthResolving(m_context);
269 RenderStyle* style = renderStyleForLengthResolving(m_context);
282 if (!m_context)
292 if (m_context->isOutermostSVGSVGElement()) {
293 viewportSize = toSVGSVGElement(m_context)->currentViewportSize();
298 SVGElement* viewportElement = m_context->viewportElement()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.h 56 xmlParserCtxtPtr context() const { return m_context; }
60 : m_context(context)
63 xmlParserCtxtPtr m_context; member in class:WebCore::XMLParserContext
160 xmlParserCtxtPtr context() const { return m_context ? m_context->context() : 0; };
161 RefPtr<XMLParserContext> m_context; member in class:WebCore::XMLDocumentParser
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
AttributeIterator.java 57 ? m_cdtm.getFirstAttribute(m_context)

Completed in 478 milliseconds

12 3 4 5