HomeSort by relevance Sort by last modified time
    Searched defs:m_context (Results 51 - 70 of 70) sorted by null

1 23

  /external/webkit/Source/WebKit2/UIProcess/
WebProcessProxy.h 75 WebContext* context() const { return m_context.get(); }
162 RefPtr<WebContext> m_context; member in class:WebKit::WebProcessProxy
GenericCallback.h 48 : m_context(context)
53 void* context() const { return m_context; }
62 void* m_context; member in class:WebKit::CallbackBase
  /development/samples/BrowserPlugin/jni/
PluginObject.h 65 SurfaceSubPlugin(NPP inst) : SubPlugin(inst) { m_context = NULL; }
72 jobject m_context; member in class:SurfaceSubPlugin
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptengine_p.h 95 JSGlobalContextRef m_context; member in class:QScriptEnginePrivate
113 JSValueRef result = JSEvaluateScript(m_context, program, /* Global Object */ 0, fileName, lineNumber, &exception);
130 JSValueUnprotect(m_context, m_exception);
141 JSValueUnprotect(m_context, m_exception);
142 JSValueProtect(m_context, exception);
148 if (!hasUncaughtException() || !JSValueIsObject(m_context, m_exception))
153 JSValueRef lineNumber = JSObjectGetProperty(m_context, const_cast<JSObjectRef>(m_exception), lineNumberPropertyName.get(), &exception);
154 int result = JSValueToNumber(m_context, lineNumber, &exception);
160 if (!hasUncaughtException() || !JSValueIsObject(m_context, m_exception))
166 JSValueRef jsFileName = JSObjectGetProperty(m_context, const_cast<JSObjectRef>(m_exception), fileNamePropertyName.get(), &exception)
    [all...]
qscriptoriginalglobalobject_p.h 56 JSGlobalContextRef m_context; member in class:QScriptOriginalGlobalObject
74 : m_context(JSGlobalContextRetain(context))
76 JSObjectRef globalObject = JSContextGetGlobalObject(m_context);
87 m_hasOwnPropertyFunction = const_cast<JSObjectRef>(JSObjectGetProperty(m_context, globalObject, propertyName.get(), &exception));
88 JSValueProtect(m_context, m_hasOwnPropertyFunction);
89 Q_ASSERT(JSValueIsObject(m_context, m_hasOwnPropertyFunction));
90 Q_ASSERT(JSObjectIsFunction(m_context, m_hasOwnPropertyFunction));
95 = const_cast<JSObjectRef>(JSObjectGetProperty(m_context, globalObject, propertyName.get(), &exception));
98 = const_cast<JSObjectRef>(JSObjectGetProperty(m_context, objectConstructor, propertyName.get(), &exception));
99 JSValueProtect(m_context, m_getOwnPropertyNamesFunction)
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLCanvasElement.h 104 CanvasRenderingContext* renderingContext() const { return m_context.get(); }
152 OwnPtr<CanvasRenderingContext> m_context; member in class:WebCore::HTMLCanvasElement
  /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/Source/WebCore/workers/
WorkerContext.h 163 WorkerContext* m_context; member in class:WebCore::WorkerContext::Observer
  /external/webkit/Tools/WebKitTestRunner/
TestController.h 53 WKContextRef context() { return m_context.get(); }
107 WKRetainPtr<WKContextRef> m_context; member in class:WTR::TestController
  /external/webkit/Source/WebCore/loader/icon/
IconDatabaseBase.h 58 : m_context(context)
63 void* context() const { return m_context; }
72 void* m_context; member in class:WebCore::CallbackBase
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerRendererChromium.h 222 RefPtr<GraphicsContext3D> m_context; member in class:WebCore::LayerRendererChromium
  /external/webkit/Source/WebCore/platform/network/
ResourceHandleInternal.h 197 RefPtr<NetworkingContext> m_context; member in class:WebCore::ResourceHandleInternal
202 RefPtr<NetworkingContext> m_context; member in class:WebCore::ResourceHandleInternal
  /external/webkit/Source/WebCore/storage/
Database.cpp 146 ASSERT_UNUSED(context, context == m_context);
147 m_context.clear();
154 : m_context(context)
158 RefPtr<ScriptExecutionContext> m_context; member in class:WebCore::DerefContextTask
  /external/webkit/Source/WebCore/webaudio/
AudioContext.h 166 : m_context(context)
175 m_context->unlock();
178 AudioContext* m_context; member in class:WebCore::AudioContext::AutoLocker
AudioNode.h 54 AudioContext* context() { return m_context.get(); }
148 RefPtr<AudioContext> m_context; member in class:WebCore::AudioNode
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.h 281 GraphicsContext3D* graphicsContext3D() const { return m_context.get(); }
283 virtual PlatformLayer* platformLayer() const { return m_context->platformLayer(); }
354 RefPtr<GraphicsContext3D> m_context; member in class:WebCore::WebGLRenderingContext
358 WebGLRenderingContextRestoreTimer(WebGLRenderingContext* context) : m_context(context) { }
361 WebGLRenderingContext* m_context; member in class:WebCore::WebGLRenderingContext::WebGLRenderingContextRestoreTimer
WebGLRenderingContext.cpp 314 : m_context(context)
321 m_context->cleanupAfterGraphicsCall(m_changed);
325 WebGLRenderingContext* m_context; member in class:WebCore::__anon14772::StripComments
335 if (!m_context->m_contextLost) {
336 m_context->onLostContext();
341 if (!m_context->canvas()->hasEventListeners(eventNames().webglcontextrestoredEvent))
344 m_context->restoreContext();
345 if (m_context->m_contextLost)
383 , m_context(context)
389 ASSERT(m_context);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsContextAndroid.cpp 60 : m_context(platformContext) { }
63 if (m_context && m_context->deleteUs())
64 delete m_context;
68 PlatformGraphicsContext* context() { return m_context; }
72 PlatformGraphicsContext* m_context; member in class:WebCore::GraphicsContextPlatformPrivate
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
LocPathIterator.java 360 m_context = context;
632 return m_context;
688 m_context = DTM.NULL;
719 clone.m_context = m_context;
846 return m_context;
877 // m_context = n;
965 transient protected int m_context = DTM.NULL; field in class:LocPathIterator
970 * from m_context in that this is the context for the entire
  /external/webkit/Source/JavaScriptCore/parser/
SyntaxChecker.h 36 : m_context(&context)
38 m_context->m_topBinaryExprs.append(m_context->m_topBinaryExpr);
39 m_context->m_topBinaryExpr = 0;
43 m_context->m_topBinaryExpr = m_context->m_topBinaryExprs.last();
44 m_context->m_topBinaryExprs.removeLast();
47 SyntaxChecker* m_context; member in struct:JSC::SyntaxChecker::BinaryExprContext
51 : m_context(&context)
53 m_context->m_topUnaryTokens.append(m_context->m_topUnaryToken)
62 SyntaxChecker* m_context; member in struct:JSC::SyntaxChecker::UnaryExprContext
    [all...]

Completed in 537 milliseconds

1 23