/frameworks/compile/mclinker/unittests/ |
D | UniqueGCFactoryBaseTest.cpp | 40 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/ |
D | CanvasContextTests.cpp | 37 ContextFactory contextFactory; in RENDERTHREAD_TEST() local 39 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory)); in RENDERTHREAD_TEST()
|
D | RenderNodeDrawableTests.cpp | 335 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()
|
D | SkiaDisplayListTests.cpp | 143 ContextFactory contextFactory; in RENDERTHREAD_SKIA_PIPELINE_TEST() local 145 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory)); in RENDERTHREAD_SKIA_PIPELINE_TEST() 202 ContextFactory contextFactory; in RENDERTHREAD_SKIA_PIPELINE_TEST() local 204 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory)); in RENDERTHREAD_SKIA_PIPELINE_TEST()
|
D | RenderNodeTests.cpp | 275 ContextFactory contextFactory; in RENDERTHREAD_TEST() local 277 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory)); in RENDERTHREAD_TEST() 311 ContextFactory contextFactory; in RENDERTHREAD_TEST() local 313 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory)); in RENDERTHREAD_TEST()
|
/frameworks/base/libs/hwui/renderthread/ |
D | CanvasContext.h | 69 IContextFactory* contextFactory); 227 IContextFactory* contextFactory, std::unique_ptr<IRenderPipeline> renderPipeline);
|
D | CanvasContext.cpp | 76 RenderNode* rootRenderNode, IContextFactory* contextFactory) { in create() argument 81 return new CanvasContext(thread, translucent, rootRenderNode, contextFactory, in create() 84 return new CanvasContext(thread, translucent, rootRenderNode, contextFactory, in create() 114 IContextFactory* contextFactory, in CanvasContext() argument 119 , mAnimationContext(contextFactory->createAnimationContext(mRenderThread.timeLord())) in CanvasContext()
|
D | RenderProxy.h | 67 RenderProxy(bool opaque, RenderNode* rootNode, IContextFactory* contextFactory);
|
D | RenderProxy.cpp | 39 IContextFactory* contextFactory) in RenderProxy() argument 42 return CanvasContext::create(mRenderThread, translucent, rootRenderNode, contextFactory); in RenderProxy()
|