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.cpp335 ContextFactory contextFactory; in RENDERTHREAD_TEST() local
337 CanvasContext::create(renderThread, false, parent.get(), &contextFactory)); in RENDERTHREAD_TEST()
399 ContextFactory contextFactory; in RENDERTHREAD_SKIA_PIPELINE_TEST() local
401 CanvasContext::create(renderThread, false, parent.get(), &contextFactory)); in RENDERTHREAD_SKIA_PIPELINE_TEST()
519 ContextFactory contextFactory; in RENDERTHREAD_SKIA_PIPELINE_TEST() local
521 CanvasContext::create(renderThread, false, parent.get(), &contextFactory)); in RENDERTHREAD_SKIA_PIPELINE_TEST()
619 ContextFactory contextFactory; in RENDERTHREAD_TEST() local
621 CanvasContext::create(renderThread, false, parent.get(), &contextFactory)); in RENDERTHREAD_TEST()
635 ContextFactory contextFactory; in drawNode() local
637 CanvasContext::create(renderThread, false, renderNode.get(), &contextFactory)); in drawNode()
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()
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()
/frameworks/base/libs/hwui/renderthread/
DCanvasContext.h67 IContextFactory* contextFactory);
202 IContextFactory* contextFactory, std::unique_ptr<IRenderPipeline> renderPipeline);
DCanvasContext.cpp60 RenderNode* rootRenderNode, IContextFactory* contextFactory) { in create() argument
65 return new CanvasContext(thread, translucent, rootRenderNode, contextFactory, in create()
68 return new CanvasContext(thread, translucent, rootRenderNode, contextFactory, in create()
98 IContextFactory* contextFactory, in CanvasContext() argument
103 , mAnimationContext(contextFactory->createAnimationContext(mRenderThread.timeLord())) in CanvasContext()
DRenderProxy.h65 ANDROID_API RenderProxy(bool opaque, RenderNode* rootNode, IContextFactory* contextFactory);
DRenderProxy.cpp37 IContextFactory* contextFactory) in RenderProxy() argument
40 return CanvasContext::create(mRenderThread, translucent, rootRenderNode, contextFactory); in RenderProxy()