HomeSort by relevance Sort by last modified time
    Searched full:currentcontext (Results 1 - 25 of 40) sorted by null

1 2

  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
ThreadInfo.h 41 EGLThreadInfo() : currentContext(NULL), serverConn(NULL) {}
43 EGLWrapperContext *currentContext;
egl.cpp 483 if (ti->currentContext == wctx) ti->currentContext = NULL;
512 ti->currentContext = wctx;
521 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;
  /external/v8/src/debug/
debug-scopes.cc 146 ? handle(CurrentContext()->closure())
272 return Handle<JSObject>(CurrentContext()->global_proxy());
349 Handle<Context> ScopeIterator::CurrentContext() {
371 CurrentContext()->Print(os);
377 if (!CurrentContext().is_null()) {
378 CurrentContext()->Print(os);
379 if (CurrentContext()->has_extension()) {
380 Handle<HeapObject> extension(CurrentContext()->extension(), isolate_);
391 CurrentContext()->extension()->Print(os);
396 CurrentContext()->extension()->Print(os)
    [all...]
debug-evaluate.cc 160 it.HasContext() ? it.CurrentContext() : outer_context;
173 context_chain_element.wrapped_context = it.CurrentContext();
181 Handle<Context> current_context = it.CurrentContext();
195 context_chain_element.wrapped_context = it.CurrentContext();
debug-scopes.h 75 Handle<Context> CurrentContext();
  /device/generic/goldfish-opengl/system/egl/
ClientAPIExts.cpp 97 if (!thread->currentContext) { \
100 int idx = (int)thread->currentContext->version - 1; \
111 if (!thread->currentContext) { \
114 int idx = (int)thread->currentContext->version - 1; \
egl.cpp 406 getEGLThreadInfo()->currentContext->getGoldfishSyncFd(),
585 if (!tInfo || !tInfo->currentContext) {
599 strPtr = &tInfo->currentContext->versionString;
602 strPtr = &tInfo->currentContext->vendorString;
605 strPtr = &tInfo->currentContext->rendererString;
608 strPtr = &tInfo->currentContext->shaderVersionString;
611 strPtr = &tInfo->currentContext->extensionString;
    [all...]
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 24 sys::ThreadLocal<const CrashRecoveryContextImpl> > CurrentContext;
29 // per CrashRecoveryContext and CurrentContext is a thread-local, so only one
43 Next = CurrentContext->get();
44 CurrentContext->set(this);
48 CurrentContext->set(Next);
52 /// indicate that we don't need to clear the thread-local CurrentContext.
62 CurrentContext->set(Next);
110 const CrashRecoveryContextImpl *CRCI = CurrentContext->get();
169 const CrashRecoveryContextImpl *CRCI = CurrentContext->get();
252 const CrashRecoveryContextImpl *CRCI = CurrentContext->get()
    [all...]
  /external/mesa3d/src/egl/main/
eglcontext.c 513 if (draw && draw->CurrentContext && draw->CurrentContext != ctx) {
514 if (draw->CurrentContext->Binding != t ||
515 draw->CurrentContext->ClientAPI != ctx->ClientAPI)
518 if (read && read->CurrentContext && read->CurrentContext != ctx) {
519 if (read->CurrentContext->Binding != t ||
520 read->CurrentContext->ClientAPI != ctx->ClientAPI)
584 prev_draw->CurrentContext = NULL;
586 prev_read->CurrentContext = NULL
    [all...]
eglsurface.h 48 _EGLContext *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/ImageMagick/MagickWand/
drawing-wand.c 62 #define CurrentContext (wand->graphic_context[wand->index])
339 current=CurrentContext->affine;
340 CurrentContext->affine.sx=affine->sx*current.sx+affine->ry*current.rx;
341 CurrentContext->affine.rx=affine->rx*current.sx+affine->sy*current.rx;
342 CurrentContext->affine.ry=affine->sx*current.ry+affine->ry*current.sy;
343 CurrentContext->affine.sy=affine->rx*current.ry+affine->sy*current.sy;
344 CurrentContext->affine.tx=affine->sx*current.tx+affine->ry*current.ty+
346 CurrentContext->affine.ty=affine->rx*current.tx+affine->sy*current.ty+
386 CurrentContext=DestroyDrawInfo(CurrentContext);
    [all...]
  /external/skia/src/gpu/gl/iOS/
SkCreatePlatformGLContext_iOS.mm 66 if ([EAGLContext currentContext] == EAGLCTX) {
  /packages/services/Car/service/src/com/android/car/cluster/
InstrumentClusterRendererLoader.java 76 private static Context createPackageContext(Context currentContext, String packageName) {
78 return new PackageContextWrapper(currentContext.createPackageContext(packageName,
  /external/deqp/framework/platform/ios/
tcuIOSPlatform.mm 142 if ([EAGLContext currentContext] == m_context)
152 if ([EAGLContext currentContext] == m_context)
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.c 162 PUBLIC __thread void * CurrentContext
167 static GLXContext CurrentContext = 0;
175 CurrentContext = c;
179 CurrentContext = c;
273 return CurrentContext;
277 return CurrentContext;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 528 const StackFrameContext *CurrentContext = LCtx->getCurrentStackFrame();
530 if (VarContext == CurrentContext) {
559 return VarContext->isParentOf(CurrentContext);
  /external/webrtc/webrtc/api/objc/
RTCOpenGLVideoRenderer.mm 255 if ([EAGLContext currentContext] != _context) {
259 if ([NSOpenGLContext currentContext] != _context) {
  /external/webrtc/talk/app/webrtc/objc/
RTCOpenGLVideoRenderer.mm 274 if ([EAGLContext currentContext] != _context) {
278 if ([NSOpenGLContext currentContext] != _context) {
  /external/skia/experimental/SimpleCocoaApp/
SimpleApp.mm 306 CGContextRef ctx = (CGContextRef)[[NSGraphicsContext currentContext] graphicsPort];
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Bitmap_Delegate.java 131 BridgeContext currentContext = RenderAction.getCurrentContext();
132 if (currentContext != null) {
133 RenderResources resources = currentContext.getRenderResources();
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
CameraStreamer.java 109 EGLContext context = RenderTarget.currentContext();
117 EGLContext context = RenderTarget.currentContext();
214 ImageShader copyShader = shaderForContext(RenderTarget.currentContext());
335 EGLContext clientContext = RenderTarget.currentContext();
605 EGLContext clientContext = RenderTarget.currentContext();
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d_api.c 734 if (gsurf->base.CurrentContext) {
735 gctx = egl_g3d_context(gsurf->base.CurrentContext);

Completed in 492 milliseconds

1 2