Searched refs:Create (Results 1 - 25 of 223) sorted by relevance

123456789

/frameworks/rs/rsov/compiler/spirit/
H A Dword_stream.cpp25 InputWordStream *InputWordStream::Create() { return new WordStreamImpl(); } function in class:android::spirit::InputWordStream
27 InputWordStream *InputWordStream::Create(std::vector<uint32_t> &&words) { function in class:android::spirit::InputWordStream
31 InputWordStream *InputWordStream::Create(const std::vector<uint32_t> &words) { function in class:android::spirit::InputWordStream
35 InputWordStream *InputWordStream::Create(const std::vector<uint8_t> &bytes) { function in class:android::spirit::InputWordStream
38 return InputWordStream::Create(words);
41 InputWordStream *InputWordStream::Create(const char *filePath) { function in class:android::spirit::InputWordStream
42 return InputWordStream::Create(readFile<uint32_t>(filePath));
45 OutputWordStream *OutputWordStream::Create() { return new WordStreamImpl(); } function in class:android::spirit::OutputWordStream
47 WordStream *WordStream::Create() { return new WordStreamImpl(); } function in class:android::spirit::WordStream
49 WordStream *WordStream::Create(cons function in class:android::spirit::WordStream
[all...]
H A Dword_stream.h36 static InputWordStream *Create();
37 static InputWordStream *Create(std::vector<uint32_t> &&words);
38 static InputWordStream *Create(const std::vector<uint32_t> &words);
39 static InputWordStream *Create(const std::vector<uint8_t> &bytes);
40 static InputWordStream *Create(const char *fileName);
90 static OutputWordStream *Create();
135 static WordStream *Create();
136 static WordStream *Create(const std::vector<uint32_t> &words);
H A Dword_stream_test.cpp27 std::unique_ptr<OutputWordStream> OS(OutputWordStream::Create());
38 std::unique_ptr<OutputWordStream> OS(OutputWordStream::Create());
53 std::unique_ptr<InputWordStream> IS(InputWordStream::Create(words));
64 std::unique_ptr<InputWordStream> IS(InputWordStream::Create(words));
/frameworks/compile/mclinker/unittests/
H A DSymbolCategoryTest.cpp43 ResolveInfo* a = ResolveInfo::Create("a");
44 ResolveInfo* b = ResolveInfo::Create("b");
45 ResolveInfo* c = ResolveInfo::Create("c");
46 ResolveInfo* d = ResolveInfo::Create("d");
47 ResolveInfo* e = ResolveInfo::Create("e");
55 LDSymbol* aa = LDSymbol::Create(*a);
56 LDSymbol* bb = LDSymbol::Create(*b);
57 LDSymbol* cc = LDSymbol::Create(*c);
58 LDSymbol* dd = LDSymbol::Create(*d);
59 LDSymbol* ee = LDSymbol::Create(*
[all...]
H A DFragmentTest.cpp38 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
39 SectionData* s = SectionData::Create(*test);
53 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
54 SectionData* s = SectionData::Create(*test);
H A DSectionDataTest.cpp39 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
41 SectionData* s = SectionData::Create(*test);
49 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
50 SectionData* s = SectionData::Create(*test);
/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntryFactory.h26 return HashEntryTy::Create(pKey);
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64CA53ErratumStub.cpp81 // Create LDSymbol for the stub.
90 FragmentRef::Create(*this, initSymValue()),
94 // Create the target symbol of the stub to the next instruction of erratum
96 FragmentRef* target = FragmentRef::Create(*pSrcFragRef.frag(),
106 Relocation::Create((*it)->type(),
107 *(FragmentRef::Create(*this, (*it)->offset())),
119 reloc = Relocation::Create((*it)->type(),
120 *(FragmentRef::Create(*this, (*it)->offset())),
/frameworks/compile/mclinker/lib/Target/
H A DOutputRelocSection.cpp38 Relocation* reloc = Relocation::Create();
45 m_pRelocData->append(*Relocation::Create());
/frameworks/native/libs/vr/libpdx_uds/private/uds/
H A Dclient_channel_factory.h14 static std::unique_ptr<pdx::ClientChannelFactory> Create(
16 static std::unique_ptr<pdx::ClientChannelFactory> Create(LocalHandle socket);
/frameworks/native/services/vr/bufferhubd/
H A Dbufferhubd.cpp19 dispatcher = android::pdx::default_transport::ServiceDispatcher::Create();
22 service = android::dvr::BufferHubService::Create();
/frameworks/native/opengl/libs/EGL/
H A DCallStack.h25 // Create a callstack with the current thread's stack trace.
29 Backtrace::Create(BACKTRACE_CURRENT_PROCESS, BACKTRACE_CURRENT_THREAD));
/frameworks/compile/slang/
H A Dslang_rs_export_element.cpp64 ElementInfoMap.insert(ElementInfoMapTy::value_type::Create(
71 RSExportType *RSExportElement::Create(RSContext *Context, function in class:slang::RSExportElement
74 // Create RSExportType corresponded to the @T first and then verify
94 RSExportPrimitiveType::Create(Context,
107 RSExportVectorType::Create(Context,
122 fprintf(stderr, "RSExportElement::Create : type '%s' is not exportable\n",
141 return RSExportType::Create(Context, T, NotLegacyKernelArgument);
161 return RSExportType::Create(Context, T, NotLegacyKernelArgument);
163 return RSExportElement::Create(Context, T, EI);
H A Dslang_rs_export_element.h57 static RSExportType *Create(RSContext *Context,
/frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/
H A Dbuffer_hub_queue_client.h32 // Create a new consumer queue that is attached to the producer. Returns
36 // Create a new consumer queue that is attached to the producer. This queue
50 // Create a new consumer in handle form for immediate transport over RPC.
285 static std::unique_ptr<ProducerQueue> Create() { function in class:android::dvr::ProducerQueue
286 return BASE::Create(sizeof(Meta));
288 static std::unique_ptr<ProducerQueue> Create(size_t meta_size_bytes) { function in class:android::dvr::ProducerQueue
289 return BASE::Create(meta_size_bytes);
304 static std::unique_ptr<ProducerQueue> Create(uint32_t usage_set_mask, function in class:android::dvr::ProducerQueue
308 return BASE::Create(sizeof(Meta), usage_set_mask, usage_clear_mask,
311 static std::unique_ptr<ProducerQueue> Create(size_ function in class:android::dvr::ProducerQueue
375 inline std::unique_ptr<ProducerQueue> ProducerQueue::Create<void>() { function in class:android::dvr::ProducerQueue
379 inline std::unique_ptr<ProducerQueue> ProducerQueue::Create<void>( function in class:android::dvr::ProducerQueue
[all...]
/frameworks/compile/mclinker/lib/Fragment/
H A DStub.cpp52 FragmentRef::Create(*this, initSymValue()),
59 Relocation::Create((*it)->type(),
60 *(FragmentRef::Create(*this, (*it)->offset())),
/frameworks/native/libs/vr/libbufferhub/
H A Dbufferhub_tests.cpp29 std::unique_ptr<BufferProducer> p = BufferProducer::Create(
70 std::unique_ptr<BufferProducer> p = BufferProducer::Create(
96 std::unique_ptr<BufferProducer> p = BufferProducer::Create(
113 std::unique_ptr<BufferProducer> p = BufferProducer::Create(
129 std::unique_ptr<BufferProducer> p = BufferProducer::Create(
145 BufferProducer::Create(kWidth, kHeight, kFormat, kUsage);
159 BufferProducer::Create(kWidth, kHeight, kFormat, kUsage);
170 auto p = BufferProducer::Create("TestPersistentBuffer", -1, -1, kWidth,
190 p = BufferProducer::Create("TestPersistentBuffer");
197 auto p = BufferProducer::Create("TestPersistentBuffe
[all...]
/frameworks/av/include/media/stagefright/
H A DDataURISource.h29 static sp<DataURISource> Create(const char *uri);
/frameworks/av/media/libstagefright/foundation/include/
H A DDataURISource.h29 static sp<DataURISource> Create(const char *uri);
/frameworks/av/media/libstagefright/include/
H A DDataURISource.h29 static sp<DataURISource> Create(const char *uri);
/frameworks/compile/mclinker/include/mcld/LD/
H A DDebugString.h30 static DebugString* Create(LDSection& pSection);
/frameworks/compile/mclinker/lib/LD/
H A DSectionData.cpp31 SectionData* SectionData::Create(LDSection& pSection) { function in class:mcld::SectionData
/frameworks/native/libs/vr/libdvr/
H A Ddvr_vsync.cpp14 auto client = android::dvr::VSyncClient::Create();
/frameworks/native/libs/vr/libperformance/
H A Dperformance_client.cpp16 : BASE(pdx::default_transport::ClientChannelFactory::Create(
98 if (auto client = android::dvr::PerformanceClient::Create(&error))
107 if (auto client = android::dvr::PerformanceClient::Create(&error))
115 if (auto client = android::dvr::PerformanceClient::Create(&error))
/frameworks/native/services/vr/virtual_touchpad/include/
H A DVirtualTouchpadClient.h15 static std::unique_ptr<VirtualTouchpad> Create();

Completed in 1209 milliseconds

123456789