Searched defs:fContext (Results 26 - 50 of 54) sorted by relevance

123

/external/chromium_org/third_party/skia/experimental/SkiaExamples/
H A DSkExample.h74 GrContext* fContext; member in class:SkExampleWindow
/external/chromium_org/third_party/skia/include/gpu/gl/
H A DSkNativeGLContext.h66 CGLContextObj fContext; member in class:SkNativeGLContext
68 EGLContext fContext; member in class:SkNativeGLContext
72 GLXContext fContext; member in class:SkNativeGLContext
/external/chromium_org/third_party/skia/include/views/
H A DSkOSWindow_Win.h76 EGLContext fContext; member in class:SkOSWindow
/external/chromium_org/third_party/skia/src/gpu/
H A DGrTracing.h44 GrGpuTraceMarkerGeneratorContext(GrContext* context) : fContext(context) {}
48 fContext->removeGpuTraceMarker(fTraceMarker.get());
56 fContext->addGpuTraceMarker(traceMarker);
60 GrContext* fContext; member in class:GrGpuTraceMarkerGeneratorContext
H A DGrClipMaskCache.h126 back->acquireMask(fContext, clipGenID, desc, bound);
175 fContext = context;
179 return fContext;
229 GrContext* fContext; member in class:GrClipMaskCache
H A DSkGr.cpp498 fContext = context;
501 SkASSERT(NULL != fContext);
502 fContext->setMatrix(fMatrix);
505 GrContext* fContext; member in class:AutoMatrix
H A DGrDrawTarget.h782 GrContext* getContext() { return fContext; }
783 const GrContext* getContext() const { return fContext; }
952 GrContext* fContext; member in class:GrDrawTarget
H A DSkGpuDevice.cpp123 GrContext* fContext; member in struct:GrSkDrawProcs
167 fContext = context;
168 fContext->ref();
171 fMainTextContext = SkNEW_ARGS(GrDistanceFieldTextContext, (fContext, fLeakyProperties,
173 fFallbackTextContext = SkNEW_ARGS(GrBitmapTextContext, (fContext, fLeakyProperties));
241 if (fContext->getRenderTarget() == fRenderTarget) {
242 fContext->setRenderTarget(NULL);
245 if (fContext->getClip() == &fClipData) {
246 fContext->setClip(NULL);
250 fContext
[all...]
H A DGrContext.cpp73 AutoCheckFlush(GrContext* context) : fContext(context) { SkASSERT(NULL != context); }
76 if (fContext->fFlushToReduceCacheSize) {
77 fContext->flush();
82 GrContext* fContext; member in class:GrContext::AutoCheckFlush
/external/skia/experimental/SkiaExamples/
H A DSkExample.h74 GrContext* fContext; member in class:SkExampleWindow
/external/skia/include/gpu/gl/
H A DSkNativeGLContext.h66 CGLContextObj fContext; member in class:SkNativeGLContext
68 EGLContext fContext; member in class:SkNativeGLContext
72 GLXContext fContext; member in class:SkNativeGLContext
/external/skia/include/views/
H A DSkOSWindow_Win.h76 EGLContext fContext; member in class:SkOSWindow
/external/skia/src/gpu/
H A DGrTracing.h44 GrGpuTraceMarkerGeneratorContext(GrContext* context) : fContext(context) {}
48 fContext->removeGpuTraceMarker(fTraceMarker.get());
56 fContext->addGpuTraceMarker(traceMarker);
60 GrContext* fContext; member in class:GrGpuTraceMarkerGeneratorContext
H A DGrClipMaskCache.h126 back->acquireMask(fContext, clipGenID, desc, bound);
175 fContext = context;
179 return fContext;
229 GrContext* fContext; member in class:GrClipMaskCache
H A DSkGr.cpp498 fContext = context;
501 SkASSERT(NULL != fContext);
502 fContext->setMatrix(fMatrix);
505 GrContext* fContext; member in class:AutoMatrix
H A DGrDrawTarget.h782 GrContext* getContext() { return fContext; }
783 const GrContext* getContext() const { return fContext; }
952 GrContext* fContext; member in class:GrDrawTarget
H A DSkGpuDevice.cpp123 GrContext* fContext; member in struct:GrSkDrawProcs
167 fContext = context;
168 fContext->ref();
171 fMainTextContext = SkNEW_ARGS(GrDistanceFieldTextContext, (fContext, fLeakyProperties,
173 fFallbackTextContext = SkNEW_ARGS(GrBitmapTextContext, (fContext, fLeakyProperties));
241 if (fContext->getRenderTarget() == fRenderTarget) {
242 fContext->setRenderTarget(NULL);
245 if (fContext->getClip() == &fClipData) {
246 fContext->setClip(NULL);
250 fContext
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DNamespaceSupport.java69 * @see #fContext
87 protected int[] fContext = new int[8]; field in class:NamespaceSupport
114 fContext[fCurrentContext] = fNamespaceSize;
133 if (fCurrentContext + 1 == fContext.length) {
134 int[] contextarray = new int[fContext.length * 2];
135 System.arraycopy(fContext, 0, contextarray, 0, fContext.length);
136 fContext = contextarray;
140 fContext[++fCurrentContext] = fNamespaceSize;
149 fNamespaceSize = fContext[fCurrentContex
[all...]
/external/icu/icu4c/source/i18n/
H A Ddigitlst.h390 decContext fContext; // public access to status flags. member in class:DigitList
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrTextureStripAtlas.h31 GrContext* fContext; member in struct:GrTextureStripAtlas::Desc
70 GrContext* getContext() const { return fDesc.fContext; }
/external/chromium_org/third_party/skia/src/xml/
H A DSkJS.cpp166 if ((fContext = JS_NewContext(fRuntime, 0x1000)) == NULL) {
171 if ((fGlobal = JS_NewObject(fContext, &global_class, NULL, NULL)) == NULL) {
175 if (JS_InitStandardClasses(fContext, fGlobal) == NULL) {
182 InitializeDisplayables(getBitmap(), fContext, fGlobal, NULL); local
187 JS_DestroyContext(fContext);
193 return JS_EvaluateScript(fContext, fGlobal, script, strlen(script),
198 JSString* str = JS_ValueToString(fContext, value);
/external/skia/src/gpu/effects/
H A DGrTextureStripAtlas.h31 GrContext* fContext; member in struct:GrTextureStripAtlas::Desc
70 GrContext* getContext() const { return fDesc.fContext; }
/external/skia/src/xml/
H A DSkJS.cpp166 if ((fContext = JS_NewContext(fRuntime, 0x1000)) == NULL) {
171 if ((fGlobal = JS_NewObject(fContext, &global_class, NULL, NULL)) == NULL) {
175 if (JS_InitStandardClasses(fContext, fGlobal) == NULL) {
182 InitializeDisplayables(getBitmap(), fContext, fGlobal, NULL); local
187 JS_DestroyContext(fContext);
193 return JS_EvaluateScript(fContext, fGlobal, script, strlen(script),
198 JSString* str = JS_ValueToString(fContext, value);
/external/chromium_org/third_party/skia/include/gpu/
H A DGrContext.h730 fContext = context;
735 fContext = context;
738 if (NULL != fContext) {
739 fContext->setRenderTarget(fPrevTarget);
744 GrContext* fContext; member in class:GrContext::AutoRenderTarget
764 AutoMatrix() : fContext(NULL) {}
776 fContext = context;
796 fContext = context;
813 fContext = context;
831 fContext
851 GrContext* fContext; member in class:GrContext::AutoMatrix
888 GrContext* fContext; member in class:GrContext::AutoClip
1138 GrContext* fContext; member in class:GrAutoScratchTexture
[all...]
/external/skia/include/gpu/
H A DGrContext.h730 fContext = context;
735 fContext = context;
738 if (NULL != fContext) {
739 fContext->setRenderTarget(fPrevTarget);
744 GrContext* fContext; member in class:GrContext::AutoRenderTarget
764 AutoMatrix() : fContext(NULL) {}
776 fContext = context;
796 fContext = context;
813 fContext = context;
831 fContext
851 GrContext* fContext; member in class:GrContext::AutoMatrix
888 GrContext* fContext; member in class:GrContext::AutoClip
1138 GrContext* fContext; member in class:GrAutoScratchTexture
[all...]

Completed in 419 milliseconds

123