HomeSort by relevance Sort by last modified time
    Searched refs:produce (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /frameworks/compile/mclinker/unittests/
LDSymbolTest.cpp 40 TEST_F( LDSymbolTest, produce ) {
UniqueGCFactoryBaseTest.cpp 46 contextFactory->produce("/");
47 contextFactory->produce("ab/c");
54 LDContext* context1 = contextFactory->produce("/");
55 contextFactory->produce("ab/c");
57 LDContext* context2 = contextFactory->produce("/");
64 LDContext* context1 = contextFactory->produce("abc/def");
65 contextFactory->produce("ab/c");
67 LDContext* context2 = contextFactory->produce("ttt/../abc/def");
79 MemoryArea* area1 = memFactory->produce(path1, FileHandle::ReadOnly);
80 MemoryArea* area2 = memFactory->produce(path2, FileHandle::ReadOnly)
    [all...]
FactoriesTest.cpp 45 NodeAlloc::NodeType* node = m_pNodeAlloc->produce();
48 node = m_pNodeAlloc->produce();
51 node = m_pNodeAlloc->produce();
59 node = m_pNodeAlloc->produce();
78 node = m_pNodeAlloc->produce();
101 node = delegatee->produce();
125 // produce agent
127 node = m_pNodeAlloc->produce();
133 // produce delegatee
135 node = delegatee->produce();
    [all...]
MCRegionFragmentTest.cpp 49 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite);
64 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite);
InputTreeTest.cpp 108 Input* input = m_pAlloc->produce("FileSpec", "path1");
115 Input* input = m_pAlloc->produce("FileSpec", "path1");
139 Input* input = m_pAlloc->produce("FileSpec", "path1");
155 Input* input = m_pAlloc->produce("111", "/");
159 input = m_pAlloc->produce("10", "/");
164 input = m_pAlloc->produce("7", "/");
166 input = m_pAlloc->produce("8", "/");
MemoryAreaTest.cpp 54 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly);
68 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly);
96 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly) ;
112 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite);
140 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite) ;
  /frameworks/compile/mclinker/include/mcld/Support/
MemoryAreaFactory.h 48 // produce - create a MemoryArea and open its file.
49 MemoryArea* produce(const sys::fs::Path& pPath,
52 // produce - create a MemoryArea and open its file.
53 MemoryArea* produce(const sys::fs::Path& pPath,
59 MemoryArea* produce(void* pMemBuffer, size_t pSize);
63 MemoryArea* produce(int pFD, FileHandle::OpenMode pMode);
RegionFactory.h 34 MemoryRegion* produce(Address pVMAStart, size_t pSize);
UniqueGCFactory.h 60 DataType* produce(const KeyType& pKey, bool& pExist) { function in class:mcld::UniqueGCFactoryBase
73 DataType* produce(const KeyType& pKey, const DataType& pValue, bool& pExist) { function in class:mcld::UniqueGCFactoryBase
  /frameworks/compile/mclinker/include/mcld/MC/
ContextFactory.h 41 LDContext* produce();
42 LDContext* produce(const sys::fs::Path& pPath);
InputFactory.h 43 Input* produce(llvm::StringRef pName,
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
rdfseg.asm 3 ;; [1] should produce segment base ref
4 ;; [2] should produce standard relocation
  /frameworks/compile/mclinker/include/mcld/ADT/
HashEntryFactory.h 26 entry_type* produce(const key_type& pKey) function in class:mcld::HashEntryFactory
HashEntry.h 86 HashEntryTy* produce(const key_type& pKey);
  /frameworks/compile/mclinker/lib/MC/
ContextFactory.cpp 25 LDContext* ContextFactory::produce(const sys::fs::Path& pPath) function in class:ContextFactory
36 LDContext* ContextFactory::produce() function in class:ContextFactory
InputBuilder.cpp 58 return m_pInputFactory->produce(pName, pPath, pType, pFileOffset);
115 // pInput is an object in an archive file. Produce a new context in this
117 context = m_pContextFactory->produce();
122 context = m_pContextFactory->produce(pInput.path());
133 MemoryArea *memory = m_pMemFactory->produce(pInput.path(), pMode, pPerm);
144 MemoryArea *memory = m_pMemFactory->produce(pMemBuffer, pSize);
InputFactory.cpp 34 Input* InputFactory::produce(llvm::StringRef pName, function in class:InputFactory
  /frameworks/base/libs/hwui/thread/
Future.h 45 void produce(T result) { function in class:android::uirenderer::Future
Task.h 48 mFuture->produce(result);
  /frameworks/compile/mclinker/include/mcld/LD/
BranchIslandFactory.h 40 /// produce - produce a island for the given fragment
42 BranchIsland* produce(Fragment& pFragment);
ELFSegmentFactory.h 31 /// produce - produce an empty ELF segment information.
34 ELFSegment* produce(uint32_t pType, uint32_t pFlag = llvm::ELF::PF_R);
RelocationFactory.h 42 /// produce - produce a relocation entry
46 Relocation* produce(Type pType,
50 /// produceEmptyEntry - produce an empty relocation which
  /frameworks/compile/mclinker/lib/Support/
RegionFactory.cpp 20 RegionFactory::produce(Address pVMAStart, size_t pSize) function in class:RegionFactory
MemoryAreaFactory.cpp 35 MemoryAreaFactory::produce(const sys::fs::Path& pPath, function in class:MemoryAreaFactory
58 MemoryAreaFactory::produce(const sys::fs::Path& pPath, function in class:MemoryAreaFactory
81 MemoryArea* MemoryAreaFactory::produce(void* pMemBuffer, size_t pSize) function in class:MemoryAreaFactory
90 MemoryAreaFactory::produce(int pFD, FileHandle::OpenMode pMode) function in class:MemoryAreaFactory
MemoryRegion.cpp 35 return g_RegionFactory->produce(static_cast<Address>(pStart), pSize);
40 MemoryRegion* result = g_RegionFactory->produce(static_cast<Address>(pStart),

Completed in 150 milliseconds

1 2 3 4 5