Home
last modified time | relevance | path

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

123

/frameworks/compile/mclinker/unittests/
DUniqueGCFactoryBaseTest.cpp41 contextFactory->produce("/"); in TEST_F()
42 contextFactory->produce("ab/c"); in TEST_F()
49 LDContext* context1 = contextFactory->produce("/"); in TEST_F()
50 contextFactory->produce("ab/c"); in TEST_F()
52 LDContext* context2 = contextFactory->produce("/"); in TEST_F()
59 LDContext* context1 = contextFactory->produce("abc/def"); in TEST_F()
60 contextFactory->produce("ab/c"); in TEST_F()
62 LDContext* context2 = contextFactory->produce("ttt/../abc/def"); in TEST_F()
74 memFactory->produce(path1, FileHandle::OpenMode(FileHandle::ReadOnly), in TEST_F()
77 memFactory->produce(path2, FileHandle::OpenMode(FileHandle::ReadOnly), in TEST_F()
[all …]
DFactoriesTest.cpp40 NodeAlloc::NodeType* node = m_pNodeAlloc->produce(); in TEST_F()
43 node = m_pNodeAlloc->produce(); in TEST_F()
46 node = m_pNodeAlloc->produce(); in TEST_F()
54 node = m_pNodeAlloc->produce(); in TEST_F()
73 node = m_pNodeAlloc->produce(); in TEST_F()
96 node = delegatee->produce(); in TEST_F()
122 node = m_pNodeAlloc->produce(); in TEST_F()
130 node = delegatee->produce(); in TEST_F()
155 node = m_pNodeAlloc->produce(); in TEST_F()
168 MCLDFile* file = m_pFileAlloc->produce(); in TEST_F()
[all …]
DInputTreeTest.cpp97 Input* input = m_pAlloc->produce("FileSpec", "path1"); in TEST_F()
103 Input* input = m_pAlloc->produce("FileSpec", "path1"); in TEST_F()
126 Input* input = m_pAlloc->produce("FileSpec", "path1"); in TEST_F()
140 Input* input = m_pAlloc->produce("111", "/"); in TEST_F()
144 input = m_pAlloc->produce("10", "/"); in TEST_F()
149 input = m_pAlloc->produce("7", "/"); in TEST_F()
151 input = m_pAlloc->produce("8", "/"); in TEST_F()
DMCRegionFragmentTest.cpp44 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); in TEST_F()
59 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); in TEST_F()
DGCFactoryListTraitsTest.cpp18 #define ALLOCATE_NODE(i) m_pNodesAlloc[(i)] = m_NodeFactory.produce(i); in GCFactoryListTraitsTest()
93 Node* NewNode = m_NodeFactory.produce(11); in TEST_F()
DLDSymbolTest.cpp35 TEST_F(LDSymbolTest, produce) { in TEST_F() argument
DFragmentRefTest.cpp47 areaFactory->produce(path, FileHandle::OpenMode(FileHandle::ReadWrite),
/frameworks/compile/mclinker/include/mcld/Support/
DMemoryAreaFactory.h45 MemoryArea* produce(const sys::fs::Path& pPath, FileHandle::OpenMode pMode);
48 MemoryArea* produce(const sys::fs::Path& pPath,
54 MemoryArea* produce(void* pMemBuffer, size_t pSize);
58 MemoryArea* produce(int pFD, FileHandle::OpenMode pMode);
DUniqueGCFactory.h54 DataType* produce(const KeyType& pKey, bool& pExist) { in produce() function
67 DataType* produce(const KeyType& pKey, const DataType& pValue, bool& pExist) { in produce() function
/frameworks/compile/mclinker/lib/MC/
DContextFactory.cpp24 LDContext* ContextFactory::produce(const sys::fs::Path& pPath) { in produce() function in mcld::ContextFactory
34 LDContext* ContextFactory::produce(const char* pPath) { in produce() function in mcld::ContextFactory
35 return produce(sys::fs::Path(pPath)); in produce()
38 LDContext* ContextFactory::produce() { in produce() function in mcld::ContextFactory
DInputBuilder.cpp58 return m_pInputFactory->produce(pName, pPath, pType, pFileOffset); in createInput()
110 context = m_pContextFactory->produce(); in setContext()
114 context = m_pContextFactory->produce(pInput.path()); in setContext()
124 MemoryArea* memory = m_pMemFactory->produce(pInput.path(), pMode, pPerm); in setMemory()
130 MemoryArea* memory = m_pMemFactory->produce(pMemBuffer, pSize); in setMemory()
DInputFactory.cpp33 Input* InputFactory::produce(llvm::StringRef pName, in produce() function in mcld::InputFactory
42 Input* InputFactory::produce(llvm::StringRef pName, in produce() function in mcld::InputFactory
/frameworks/compile/mclinker/include/mcld/MC/
DContextFactory.h36 LDContext* produce();
37 LDContext* produce(const sys::fs::Path& pPath);
38 LDContext* produce(const char* pPath);
DInputFactory.h39 Input* produce(llvm::StringRef pName,
44 Input* produce(llvm::StringRef pName,
/frameworks/compile/mclinker/lib/Support/
DMemoryAreaFactory.cpp25 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath, in produce() function in mcld::MemoryAreaFactory
38 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath, in produce() function in mcld::MemoryAreaFactory
52 MemoryArea* MemoryAreaFactory::produce(void* pMemBuffer, size_t pSize) { in produce() function in mcld::MemoryAreaFactory
65 MemoryArea* MemoryAreaFactory::produce(int pFD, FileHandle::OpenMode pMode) { in produce() function in mcld::MemoryAreaFactory
/frameworks/compile/mclinker/lib/LD/
DBranchIslandFactory.cpp54 produce(*frag); in group()
60 produce(sd.back()); in group()
67 BranchIsland* BranchIslandFactory::produce(Fragment& pFragment) { in produce() function in mcld::BranchIslandFactory
/frameworks/base/data/keyboards/
DVendor_0f0d_Product_00c1.kl19 # Button labeled as "Y" but should really produce keycode "X"
21 # Button labeled as "B" but should really produce keycode "A"
23 # Button labeled as "A" but should really produce keycode "B"
DVendor_057e_Product_2009.kl22 # Button labeled as "Y" but should really produce keycode "X"
24 # Button labeled as "B" but should really produce keycode "A"
26 # Button labeled as "A" but should really produce keycode "B"
/frameworks/base/startop/view_compiler/
DREADME.md5 It will take a layout XML file and produce a CompiledLayout.java file with a
13 This will produce a `CompiledView.java`, which can then be compiled into your
35 build step produce the DEX files that will be tested on device. See the
42 1. Modify `dex_testcase_generator` to produce the DEX file.
/frameworks/compile/mclinker/include/mcld/ADT/
DHashEntryFactory.h25 entry_type* produce(const key_type& pKey) { in produce() function
DHashEntry.tcc43 HashEntryTy* EntryFactory<HashEntryTy>::produce( in produce() function in EntryFactory
DHashEntry.h76 HashEntryTy* produce(const key_type& pKey);
/frameworks/libs/native_bridge_support/overriding/libc/
DAndroid.bp71 // Arm 32 bit does not produce complete exidx unwind information
86 // Leave the symbols in the shared library so that stack unwinders can produce
/frameworks/compile/mclinker/include/mcld/LD/
DBranchIslandFactory.h44 BranchIsland* produce(Fragment& pFragment);
DRelocationFactory.h43 Relocation* produce(Type pType, FragmentRef& pFragRef, Address pAddend = 0);

123