Home
last modified time | relevance | path

Searched refs:contextFactory (Results 1 – 9 of 9) sorted by relevance

/frameworks/compile/mclinker/unittests/
DUniqueGCFactoryBaseTest.cpp40 ContextFactory* contextFactory = new ContextFactory(10); in TEST_F() local
41 contextFactory->produce("/"); in TEST_F()
42 contextFactory->produce("ab/c"); in TEST_F()
43 ASSERT_TRUE(2 == contextFactory->size()); in TEST_F()
44 delete contextFactory; in TEST_F()
48 ContextFactory* contextFactory = new ContextFactory(10); in TEST_F() local
49 LDContext* context1 = contextFactory->produce("/"); in TEST_F()
50 contextFactory->produce("ab/c"); in TEST_F()
51 ASSERT_TRUE(2 == contextFactory->size()); in TEST_F()
52 LDContext* context2 = contextFactory->produce("/"); in TEST_F()
[all …]
/frameworks/base/libs/hwui/tests/unit/
DCanvasContextTests.cpp37 ContextFactory contextFactory; in RENDERTHREAD_TEST() local
39 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory)); in RENDERTHREAD_TEST()
DRenderNodeDrawableTests.cpp334 ContextFactory contextFactory; in RENDERTHREAD_TEST() local
336 CanvasContext::create(renderThread, false, parent.get(), &contextFactory)); in RENDERTHREAD_TEST()
398 ContextFactory contextFactory; in RENDERTHREAD_SKIA_PIPELINE_TEST() local
400 CanvasContext::create(renderThread, false, parent.get(), &contextFactory)); in RENDERTHREAD_SKIA_PIPELINE_TEST()
518 ContextFactory contextFactory; in RENDERTHREAD_SKIA_PIPELINE_TEST() local
520 CanvasContext::create(renderThread, false, parent.get(), &contextFactory)); in RENDERTHREAD_SKIA_PIPELINE_TEST()
618 ContextFactory contextFactory; in RENDERTHREAD_TEST() local
620 CanvasContext::create(renderThread, false, parent.get(), &contextFactory)); in RENDERTHREAD_TEST()
634 ContextFactory contextFactory; in drawNode() local
636 CanvasContext::create(renderThread, false, renderNode.get(), &contextFactory)); in drawNode()
DRenderNodeTests.cpp271 ContextFactory contextFactory; in RENDERTHREAD_TEST() local
273 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory)); in RENDERTHREAD_TEST()
307 ContextFactory contextFactory; in RENDERTHREAD_TEST() local
309 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory)); in RENDERTHREAD_TEST()
DSkiaDisplayListTests.cpp144 ContextFactory contextFactory; in RENDERTHREAD_SKIA_PIPELINE_TEST() local
146 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory)); in RENDERTHREAD_SKIA_PIPELINE_TEST()
203 ContextFactory contextFactory; in RENDERTHREAD_SKIA_PIPELINE_TEST() local
205 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory)); in RENDERTHREAD_SKIA_PIPELINE_TEST()
/frameworks/base/libs/hwui/renderthread/
DCanvasContext.cpp64 RenderNode* rootRenderNode, IContextFactory* contextFactory) { in create() argument
69 return new CanvasContext(thread, translucent, rootRenderNode, contextFactory, in create()
72 return new CanvasContext(thread, translucent, rootRenderNode, contextFactory, in create()
102 IContextFactory* contextFactory, in CanvasContext() argument
107 , mAnimationContext(contextFactory->createAnimationContext(mRenderThread.timeLord())) in CanvasContext()
DCanvasContext.h67 IContextFactory* contextFactory);
204 IContextFactory* contextFactory, std::unique_ptr<IRenderPipeline> renderPipeline);
DRenderProxy.h64 ANDROID_API RenderProxy(bool opaque, RenderNode* rootNode, IContextFactory* contextFactory);
DRenderProxy.cpp43 IContextFactory* contextFactory) in RenderProxy() argument
46 return CanvasContext::create(mRenderThread, translucent, rootRenderNode, contextFactory); in RenderProxy()