HomeSort by relevance Sort by last modified time
    Searched refs:currentContext (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/chromium/chrome/browser/ui/cocoa/
animation_utils.h 26 [[NSAnimationContext currentContext] setDuration:0.0];
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
ThreadInfo.h 41 EGLThreadInfo() : currentContext(NULL), serverConn(NULL) {}
43 EGLWrapperContext *currentContext;
egl.cpp 519 if (ti->currentContext == wctx) ti->currentContext = NULL;
548 ti->currentContext = wctx;
557 return (ti->currentContext ? ti->currentContext : EGL_NO_CONTEXT);
  /device/generic/goldfish/opengl/system/OpenglSystemCommon/
ThreadInfo.h 29 EGLThreadInfo() : currentContext(NULL), hostConn(NULL), eglError(EGL_SUCCESS) {}
31 EGLContext_t *currentContext;
  /libcore/luni/src/main/java/org/xml/sax/helpers/
NamespaceSupport.java 158 contexts[contextPos] = currentContext = new Context();
159 currentContext.declarePrefix("xml", XMLNS);
215 currentContext = contexts[contextPos];
216 if (currentContext == null) {
217 contexts[contextPos] = currentContext = new Context();
222 currentContext.setParent(contexts[contextPos - 1]);
247 currentContext = contexts[contextPos];
301 currentContext.declarePrefix(prefix, uri);
350 String myParts[] = currentContext.processName(qName, isAttribute);
376 return currentContext.getURI(prefix)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NamespaceSupport2.java 51 private Context2 currentContext; // Current point on the double-linked stack
99 currentContext = new Context2(null);
100 currentContext.declarePrefix("xml", XMLNS);
125 Context2 parentContext=currentContext;
126 currentContext = parentContext.getChild();
127 if (currentContext == null){
128 currentContext = new Context2(parentContext);
133 currentContext.setParent(parentContext);
153 Context2 parentContext=currentContext.getParent();
157 currentContext = parentContext
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
LocalCurrentGraphicsContext.mm 33 if (graphicsContext->platformContext() == [[NSGraphicsContext currentContext] graphicsPort]) {
38 m_savedNSGraphicsContext = [[NSGraphicsContext currentContext] retain];
WidgetMac.mm 245 NSGraphicsContext *currentContext = [NSGraphicsContext currentContext];
246 if (currentContext == [[view window] graphicsContext] || ![currentContext isDrawingToScreen]) {
250 CGContextRef context = (CGContextRef)[currentContext graphicsPort];
287 ASSERT(cgContext == [currentContext graphicsPort]);
  /external/webkit/Source/WebKit/mac/WebInspector/
WebNodeHighlightView.mm 73 ASSERT([[NSGraphicsContext currentContext] isFlipped]);
75 GraphicsContext context((PlatformGraphicsContext*)[[NSGraphicsContext currentContext] graphicsPort]);
  /device/generic/goldfish/opengl/system/egl/
ClientAPIExts.cpp 95 if (!thread->currentContext) { \
98 int idx = (int)thread->currentContext->version - 1; \
109 if (!thread->currentContext) { \
112 int idx = (int)thread->currentContext->version - 1; \
egl.cpp 409 if (!tInfo || !tInfo->currentContext) {
422 strPtr = &tInfo->currentContext->versionString;
425 strPtr = &tInfo->currentContext->vendorString;
428 strPtr = &tInfo->currentContext->rendererString;
431 strPtr = &tInfo->currentContext->extensionString;
777 if (tInfo && tInfo->currentContext) {
840 EGLContext_t* ctx = getEGLThreadInfo()->currentContext;
900 if (getEGLThreadInfo()->currentContext == context)
937 if (tInfo->currentContext == context &&
943 if (context && (context->flags & EGLContext_t::IS_CURRENT) && (context != tInfo->currentContext)) {
    [all...]
  /external/webkit/Tools/TestWebKitAPI/mac/
PlatformWebViewMac.mm 75 context:[NSGraphicsContext currentContext]
88 context:[NSGraphicsContext currentContext]
104 context:[NSGraphicsContext currentContext]
117 context:[NSGraphicsContext currentContext]
  /sdk/emulator/opengl/tests/ut_renderer/
Renderer.cpp 138 RendererContext *currentContext = thread->currentContext();
143 if (c->second != currentContext) {
145 if (currentContext != NULL) currentContext->unref();
157 if (currentContext != NULL) currentContext->unref();
RenderingThread.h 44 RendererContext *currentContext() { return m_currentContext; }
  /external/webkit/Source/WebCore/platform/graphics/mac/
GraphicsContextMac.mm 173 // FIXME: This code should not use NSGraphicsContext currentContext
180 NSGraphicsContext *currentContext = [NSGraphicsContext currentContext];
181 CGContextRef context = (CGContextRef)[currentContext graphicsPort];
GraphicsContext3DMac.mm 250 CGLContextObj currentContext = CGLGetCurrentContext();
251 if (currentContext != m_contextObj)
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKPrintingView.mm 409 NSGraphicsContext *nsGraphicsContext = [NSGraphicsContext currentContext];
497 NSGraphicsContext *currentContext = [NSGraphicsContext currentContext];
506 [NSGraphicsContext setCurrentContext:currentContext];
536 NSGraphicsContext *currentContext = [NSGraphicsContext currentContext];
537 [currentContext saveGraphicsState];
540 [currentContext restoreGraphicsState];
542 [currentContext saveGraphicsState];
545 [currentContext restoreGraphicsState]
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebStringTruncator.mm 62 currentRenderer = Font(f, ![[NSGraphicsContext currentContext] isDrawingToScreen]);
  /sdk/emulator/opengl/host/libs/Translator/EGL/
MacNative.m 115 NSOpenGLContext* ctx = [NSOpenGLContext currentContext];
122 NSOpenGLContext* ctx = [NSOpenGLContext currentContext];
  /external/webkit/Source/WebCore/platform/graphics/openvg/
EGLDisplayOpenVG.cpp 403 EGLContext currentContext = eglGetCurrentContext();
415 if (currentContext != EGL_NO_CONTEXT) {
416 eglMakeCurrent(currentDisplay, currentReadSurface, currentDrawSurface, currentContext);
425 if (currentContext != EGL_NO_CONTEXT) {
426 eglMakeCurrent(currentDisplay, currentReadSurface, currentDrawSurface, currentContext);
  /external/webkit/Source/WebKit/chromium/src/
WebBindings.cpp 245 WebCore::DOMWindow* window = WebCore::V8Proxy::retrieveWindow(WebCore::V8Proxy::currentContext());
256 WebCore::DOMWindow* window = WebCore::V8Proxy::retrieveWindow(WebCore::V8Proxy::currentContext());
266 WebCore::DOMWindow* window = WebCore::V8Proxy::retrieveWindow(WebCore::V8Proxy::currentContext());
  /external/webkit/Source/WebCore/bindings/v8/
DateExtension.cpp 78 v8::Local<v8::Value> result = V8Proxy::currentContext()->Global()->Get(v8::String::New("Date"));
  /external/webkit/Source/WebCore/rendering/
RenderThemeChromiumMac.mm 44 return [[NSGraphicsContext currentContext] isFlipped];
  /external/webkit/Source/WebKit/mac/WebView/
WebDynamicScrollBarsView.mm 383 NSGraphicsContext *currentContext = [NSGraphicsContext currentContext];
384 if (!_private->inUpdateScrollers && (!currentContext || [currentContext isDrawingToScreen]))
  /external/webkit/Tools/DumpRenderTree/mac/
EventSendingController.mm 329 context:[NSGraphicsContext currentContext]
394 context:[NSGraphicsContext currentContext]
452 context:[NSGraphicsContext currentContext]
515 context:[NSGraphicsContext currentContext]
702 context:[NSGraphicsContext currentContext]
715 context:[NSGraphicsContext currentContext]
    [all...]

Completed in 1071 milliseconds

1 2 3