Home
last modified time | relevance | path

Searched refs:produce (Results 1 – 25 of 62) sorted by relevance

123

/frameworks/compile/mclinker/unittests/
DUniqueGCFactoryBaseTest.cpp46 contextFactory->produce("/"); in TEST_F()
47 contextFactory->produce("ab/c"); in TEST_F()
54 LDContext* context1 = contextFactory->produce("/"); in TEST_F()
55 contextFactory->produce("ab/c"); in TEST_F()
57 LDContext* context2 = contextFactory->produce("/"); in TEST_F()
64 LDContext* context1 = contextFactory->produce("abc/def"); in TEST_F()
65 contextFactory->produce("ab/c"); in TEST_F()
67 LDContext* context2 = contextFactory->produce("ttt/../abc/def"); in TEST_F()
79 MemoryArea* area1 = memFactory->produce(path1, FileHandle::ReadOnly); in TEST_F()
80 MemoryArea* area2 = memFactory->produce(path2, FileHandle::ReadOnly); in TEST_F()
[all …]
DFactoriesTest.cpp45 NodeAlloc::NodeType* node = m_pNodeAlloc->produce(); in TEST_F()
48 node = m_pNodeAlloc->produce(); in TEST_F()
51 node = m_pNodeAlloc->produce(); in TEST_F()
59 node = m_pNodeAlloc->produce(); in TEST_F()
78 node = m_pNodeAlloc->produce(); in TEST_F()
101 node = delegatee->produce(); in TEST_F()
127 node = m_pNodeAlloc->produce(); in TEST_F()
135 node = delegatee->produce(); in TEST_F()
160 node = m_pNodeAlloc->produce(); in TEST_F()
173 MCLDFile* file = m_pFileAlloc->produce(); in TEST_F()
[all …]
DInputTreeTest.cpp108 Input* input = m_pAlloc->produce("FileSpec", "path1"); in TEST_F()
115 Input* input = m_pAlloc->produce("FileSpec", "path1"); in TEST_F()
139 Input* input = m_pAlloc->produce("FileSpec", "path1"); in TEST_F()
155 Input* input = m_pAlloc->produce("111", "/"); in TEST_F()
159 input = m_pAlloc->produce("10", "/"); in TEST_F()
164 input = m_pAlloc->produce("7", "/"); in TEST_F()
166 input = m_pAlloc->produce("8", "/"); in TEST_F()
DMemoryAreaTest.cpp54 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly); in TEST_F()
68 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly); in TEST_F()
96 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly) ; in TEST_F()
112 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite); in TEST_F()
140 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite) ; in TEST_F()
DMCRegionFragmentTest.cpp49 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); in TEST_F()
64 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); in TEST_F()
DGCFactoryListTraitsTest.cpp19 #define ALLOCATE_NODE(i) m_pNodesAlloc[(i)] = m_NodeFactory.produce(i); in GCFactoryListTraitsTest()
95 Node *NewNode = m_NodeFactory.produce(11); in TEST_F()
DLDSymbolTest.cpp40 TEST_F( LDSymbolTest, produce ) { in TEST_F() argument
/frameworks/compile/mclinker/include/mcld/Support/
DMemoryAreaFactory.h49 MemoryArea* produce(const sys::fs::Path& pPath,
53 MemoryArea* produce(const sys::fs::Path& pPath,
59 MemoryArea* produce(void* pMemBuffer, size_t pSize);
63 MemoryArea* produce(int pFD, FileHandle::OpenMode pMode);
DUniqueGCFactory.h60 DataType* produce(const KeyType& pKey, bool& pExist) { in produce() function
73 DataType* produce(const KeyType& pKey, const DataType& pValue, bool& pExist) { in produce() function
DRegionFactory.h34 MemoryRegion* produce(Address pVMAStart, size_t pSize);
/frameworks/compile/mclinker/lib/MC/
DInputBuilder.cpp58 return m_pInputFactory->produce(pName, pPath, pType, pFileOffset); in createInput()
117 context = m_pContextFactory->produce(); in setContext()
122 context = m_pContextFactory->produce(pInput.path()); in setContext()
133 MemoryArea *memory = m_pMemFactory->produce(pInput.path(), pMode, pPerm); in setMemory()
144 MemoryArea *memory = m_pMemFactory->produce(pMemBuffer, pSize); in setMemory()
DContextFactory.cpp25 LDContext* ContextFactory::produce(const sys::fs::Path& pPath) in produce() function in ContextFactory
36 LDContext* ContextFactory::produce() in produce() function in ContextFactory
DInputFactory.cpp34 Input* InputFactory::produce(llvm::StringRef pName, in produce() function in InputFactory
/frameworks/compile/mclinker/lib/Support/
DMemoryAreaFactory.cpp35 MemoryAreaFactory::produce(const sys::fs::Path& pPath, in produce() function in MemoryAreaFactory
58 MemoryAreaFactory::produce(const sys::fs::Path& pPath, in produce() function in MemoryAreaFactory
81 MemoryArea* MemoryAreaFactory::produce(void* pMemBuffer, size_t pSize) in produce() function in MemoryAreaFactory
90 MemoryAreaFactory::produce(int pFD, FileHandle::OpenMode pMode) in produce() function in MemoryAreaFactory
DMemoryRegion.cpp35 return g_RegionFactory->produce(static_cast<Address>(pStart), pSize); in Create()
40 MemoryRegion* result = g_RegionFactory->produce(static_cast<Address>(pStart), in Create()
DRegionFactory.cpp20 RegionFactory::produce(Address pVMAStart, size_t pSize) in produce() function in RegionFactory
/frameworks/compile/mclinker/include/mcld/MC/
DContextFactory.h41 LDContext* produce();
42 LDContext* produce(const sys::fs::Path& pPath);
DInputFactory.h43 Input* produce(llvm::StringRef pName,
/frameworks/compile/mclinker/include/mcld/ADT/
DHashEntryFactory.h26 entry_type* produce(const key_type& pKey) in produce() function
DHashEntry.tcc49 EntryFactory<HashEntryTy>::produce(const typename EntryFactory<HashEntryTy>::key_type& pKey) in produce() function in EntryFactory
/frameworks/compile/mclinker/include/mcld/LD/
DBranchIslandFactory.h42 BranchIsland* produce(Fragment& pFragment);
DELFSegmentFactory.h34 ELFSegment* produce(uint32_t pType, uint32_t pFlag = llvm::ELF::PF_R);
DRelocationFactory.h46 Relocation* produce(Type pType,
/frameworks/base/libs/hwui/thread/
DFuture.h45 void produce(T result) { in produce() function
DTask.h48 mFuture->produce(result); in setResult()

123