Home
last modified time | relevance | path

Searched refs:contextFactory (Results 1 – 5 of 5) 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/renderthread/
DRenderProxy.cpp63 RenderNode* rootRenderNode, IContextFactory* contextFactory) { in CREATE_BRIDGE4() argument
65 args->rootRenderNode, args->contextFactory); in CREATE_BRIDGE4()
68 …erProxy::RenderProxy(bool translucent, RenderNode* rootRenderNode, IContextFactory* contextFactory) in RenderProxy() argument
75 args->contextFactory = contextFactory; in RenderProxy()
DRenderProxy.h62 … ANDROID_API RenderProxy(bool translucent, RenderNode* rootNode, IContextFactory* contextFactory);
DCanvasContext.h64 IContextFactory* contextFactory);
DCanvasContext.cpp43 RenderNode* rootRenderNode, IContextFactory* contextFactory) in CanvasContext() argument
47 , mAnimationContext(contextFactory->createAnimationContext(mRenderThread.timeLord())) in CanvasContext()