Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/unittests/
DUniqueGCFactoryBaseTest.cpp45 ContextFactory *contextFactory = new ContextFactory(10); in TEST_F() local
46 contextFactory->produce("/"); in TEST_F()
47 contextFactory->produce("ab/c"); in TEST_F()
48 ASSERT_TRUE( 2 == contextFactory->size()); in TEST_F()
49 delete contextFactory; in TEST_F()
53 ContextFactory *contextFactory = new ContextFactory(10); in TEST_F() local
54 LDContext* context1 = contextFactory->produce("/"); in TEST_F()
55 contextFactory->produce("ab/c"); in TEST_F()
56 ASSERT_TRUE( 2 == contextFactory->size()); in TEST_F()
57 LDContext* context2 = contextFactory->produce("/"); in TEST_F()
[all …]
/frameworks/base/libs/hwui/renderthread/
DRenderProxy.cpp56 RenderNode* rootRenderNode, IContextFactory* contextFactory) { in CREATE_BRIDGE4() argument
58 args->rootRenderNode, args->contextFactory); in CREATE_BRIDGE4()
61 …erProxy::RenderProxy(bool translucent, RenderNode* rootRenderNode, IContextFactory* contextFactory) in RenderProxy() argument
68 args->contextFactory = contextFactory; in RenderProxy()
DCanvasContext.h57 IContextFactory* contextFactory);
DRenderProxy.h62 … ANDROID_API RenderProxy(bool translucent, RenderNode* rootNode, IContextFactory* contextFactory);
DCanvasContext.cpp41 RenderNode* rootRenderNode, IContextFactory* contextFactory) in CanvasContext() argument
50 mAnimationContext = contextFactory->createAnimationContext(mRenderThread.timeLord()); in CanvasContext()