Home
last modified time | relevance | path

Searched refs:newContext (Results 1 – 25 of 44) sorted by relevance

12

/third_party/jsframework/runtime/main/model/
Dcompiler.ts757 const newContext = mergeContext(context, mergedData); constant
758 vms.push(newContext);
759 compile(newContext, target, fragBlock, { repeat: item });
921 const newContext = Object.create(context); constant
922 newContext.__data = mergedData;
923 newContext.__shareData = {};
924 initData(newContext);
925 initComputed(newContext);
926 newContext.__realParent = context;
927 return newContext;
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/android/
DDisplayAndroid.cpp517 EGLContext newContext = EGL_NO_CONTEXT; in makeCurrent() local
521 newContext = contextEGL->getContext(); in makeCurrent()
528 ASSERT(newContext == EGL_NO_CONTEXT || currentContext.context == EGL_NO_CONTEXT || in makeCurrent()
529 newContext == currentContext.context); in makeCurrent()
531 newContext = mRenderer->getContext(); in makeCurrent()
550 if (newSurface != currentContext.surface || newContext != currentContext.context) in makeCurrent()
552 if (mEGL->makeCurrent(newSurface, newContext) == EGL_FALSE) in makeCurrent()
557 currentContext.context = newContext; in makeCurrent()
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetEncoderICU.java182 …al void setFromUCallback(CoderResult err, CharsetCallback.Encoder newCallback, Object newContext) { in setFromUCallback() argument
191 if (fromUContext == null || !fromUContext.equals(newContext)) { in setFromUCallback()
192 setFromUContext(newContext); in setFromUCallback()
203 public final void setFromUContext(Object newContext) { in setFromUContext() argument
204 fromUContext = newContext; in setFromUContext()
DCharsetDecoderICU.java168 …inal void setToUCallback(CoderResult err, CharsetCallback.Decoder newCallback, Object newContext) { in setToUCallback() argument
177 if (toUContext == null || !toUContext.equals(newContext)) { in setToUCallback()
178 toUContext = newContext; in setToUCallback()
/third_party/icu/icu4c/source/test/cintltst/
Dtracetst.c234 const void *newContext = (const char *)originalTContext + 1; in TestTraceAPI() local
240 utrace_setFunctions(newContext, testTraceEntry, testTraceExit, testTraceData); in TestTraceAPI()
245 TEST_ASSERT(context == newContext); in TestTraceAPI()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/
DDisplayEGL.cpp732 EGLContext newContext = EGL_NO_CONTEXT; in makeCurrent() local
736 newContext = contextEGL->getContext(); in makeCurrent()
747 currentContext.context = newContext; in makeCurrent()
757 ASSERT(currentContext.context == newContext); in makeCurrent()
759 ASSERT(newContext != EGL_NO_CONTEXT); in makeCurrent()
768 ASSERT(newContext == EGL_NO_CONTEXT); in makeCurrent()
779 if (newSurface != currentContext.surface || newContext != currentContext.context) in makeCurrent()
781 if (mEGL->makeCurrent(newSurface, newContext) == EGL_FALSE) in makeCurrent()
786 currentContext.context = newContext; in makeCurrent()
/third_party/flutter/skia/tools/
DDDLTileHelper.cpp58 GrContext* newContext = subCanvas->getGrContext(); in createDDL() local
62 gpuImage->resetContext(sk_ref_sp(newContext)); in createDDL()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DRendererGL.cpp387 WorkerContext *newContext = createWorkerContext(infoLog); in bindWorkerContext() local
388 if (newContext == nullptr) in bindWorkerContext()
392 workerContext.reset(newContext); in bindWorkerContext()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/
DDisplayWGL.cpp684 HGLRC newContext = currentContext.glrc; in makeCurrent() local
688 newContext = contextWGL->getContext(); in makeCurrent()
692 newContext = 0; in makeCurrent()
695 if (newDC != currentContext.dc || newContext != currentContext.glrc) in makeCurrent()
699 if (!mFunctionsWGL->makeCurrent(newDC, newContext)) in makeCurrent()
705 currentContext.glrc = newContext; in makeCurrent()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/
DDisplayWGL.cpp703 HGLRC newContext = currentContext.glrc; in makeCurrent() local
707 newContext = contextWGL->getContext(); in makeCurrent()
711 newContext = 0; in makeCurrent()
714 if (newDC != currentContext.dc || newContext != currentContext.glrc) in makeCurrent()
718 if (!mFunctionsWGL->makeCurrent(newDC, newContext)) in makeCurrent()
724 currentContext.glrc = newContext; in makeCurrent()
/third_party/typescript/scripts/
DbrowserIntegrationTest.js23 const context = await browser.newContext();
/third_party/flutter/skia/third_party/externals/sdl/src/main/haiku/
DSDL_BApp.h192 void SetCurrentContext(BGLView *newContext) { in SetCurrentContext() argument
195 _current_context = newContext; in SetCurrentContext()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/
DDisplayGLX.cpp402 glx::Context newContext = mContext; in makeCurrent() local
408 newContext = 0; in makeCurrent()
411 newContext != mCurrentNativeContexts[std::this_thread::get_id()]) in makeCurrent()
413 if (mGLX.makeCurrent(newDrawable, newContext) != True) in makeCurrent()
417 mCurrentNativeContexts[std::this_thread::get_id()] = newContext; in makeCurrent()
/third_party/flutter/skia/src/image/
DSkImage_GpuBase.cpp35 void SkImage_GpuBase::resetContext(sk_sp<GrContext> newContext) { in resetContext() argument
36 SkASSERT(fContext->priv().matches(newContext.get())); in resetContext()
37 fContext = newContext; in resetContext()
DSkImage_GpuBase.h57 void resetContext(sk_sp<GrContext> newContext);
/third_party/skia/third_party/externals/angle2/util/windows/
DWGLWindow.cpp320 HGLRC newContext = createContext(mConfigParams, shareContext); in createContextGeneric() local
328 return reinterpret_cast<GLWindowContext>(newContext); in createContextGeneric()
/third_party/flutter/skia/third_party/externals/angle2/src/libGL/
Dentry_points_wgl.cpp238 BOOL GL_APIENTRY wglMakeCurrent(HDC hDc, HGLRC newContext) in wglMakeCurrent() argument
243 GetContextIfValid(display, reinterpret_cast<gl::Context *>(newContext)); in wglMakeCurrent()
/third_party/skia/third_party/externals/angle2/src/libGL/
Dentry_points_wgl.cpp242 BOOL GL_APIENTRY wglMakeCurrent(HDC hDc, HGLRC newContext) in wglMakeCurrent() argument
247 GetContextIfValid(display, reinterpret_cast<gl::Context *>(newContext)); in wglMakeCurrent()
/third_party/node/deps/icu-small/source/common/unicode/
Ducnv.h1058 const void* newContext,
1081 const void *newContext,
Dubidi.h2067 const void *newContext, UBiDiClassCallback **oldFn,
/third_party/icu/icu4c/source/common/unicode/
Ducnv.h1059 const void* newContext,
1082 const void *newContext,
/third_party/skia/third_party/externals/icu/source/common/unicode/
Ducnv.h1059 const void* newContext,
1082 const void *newContext,
Dubidi.h2066 const void *newContext, UBiDiClassCallback **oldFn,
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/
Ducnv.h1056 const void* newContext,
1079 const void *newContext,
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DRendererGL.cpp633 WorkerContext *newContext = createWorkerContext(infoLog); in bindWorkerContext() local
634 if (newContext == nullptr) in bindWorkerContext()
638 workerContext.reset(newContext); in bindWorkerContext()

12