/external/skia/src/android/ |
SkBitmapRegionDecoder.cpp | 14 SkBitmapRegionDecoder* SkBitmapRegionDecoder::Create( 16 return SkBitmapRegionDecoder::Create(new SkMemoryStream(data), 20 SkBitmapRegionDecoder* SkBitmapRegionDecoder::Create( 28 SkCodecPrintf("Error: Failed to create codec.\n");
|
/external/skia/src/gpu/ |
GrGpuFactory.cpp | 16 GrGpu* GrGpu::Create(GrBackend backend, 22 return GrGLGpu::Create(backendContext, options, context); 25 return GrVkGpu::Create(backendContext, options, context); 28 return GrMockGpu::Create(backendContext, options, context);
|
/external/skia/src/ports/ |
SkDiscardableMemory_none.cpp | 12 SkDiscardableMemory* SkDiscardableMemory::Create(size_t bytes) { 13 return SkGetGlobalDiscardableMemoryPool()->create(bytes);
|
/art/compiler/utils/ |
jni_macro_assembler.cc | 49 MacroAsm32UniquePtr JNIMacroAssembler<PointerSize::k32>::Create( 84 MacroAsm64UniquePtr JNIMacroAssembler<PointerSize::k64>::Create(
|
/art/runtime/arch/ |
context.cc | 21 Context* Context::Create() {
|
/external/webrtc/talk/media/webrtc/ |
webrtcvideocapturerfactory.cc | 34 VideoCapturer* WebRtcVideoDeviceCapturerFactory::Create(const Device& device) {
|
/external/webrtc/webrtc/modules/desktop_capture/ |
screen_capturer_null.cc | 16 ScreenCapturer* ScreenCapturer::Create(const DesktopCaptureOptions& options) {
|
screen_capturer_win.cc | 22 ScreenCapturer* ScreenCapturer::Create(const DesktopCaptureOptions& options) {
|
window_capturer.cc | 18 WindowCapturer* WindowCapturer::Create() { 19 return Create(DesktopCaptureOptions::CreateDefault());
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
rtp_format.cc | 19 RtpPacketizer* RtpPacketizer::Create(RtpVideoCodecTypes type, 40 RtpDepacketizer* RtpDepacketizer::Create(RtpVideoCodecTypes type) {
|
/art/compiler/ |
compiler.cc | 26 Compiler* Compiler::Create(CompilerDriver* driver, Compiler::Kind kind) {
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/ |
TableFunction.py | 2 # This file is used to create/update/query/erase table for functions
32 ## Create table
34 # Create table Function
51 def Create(self):
52 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY,
67 Table.Create(self, SqlCommand)
|
TableIdentifier.py | 2 # This file is used to create/update/query/erase table for Identifiers
33 ## Create table
35 # Create table Identifier
50 def Create(self):
51 SqlCommand = """create table IF NOT EXISTS %s(ID INTEGER PRIMARY KEY,
64 Table.Create(self, SqlCommand)
|
TablePcd.py | 2 # This file is used to create/update/query/erase table for pcds
33 ## Create table
35 # Create table Pcd
50 def Create(self):
51 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY,
64 Table.Create(self, SqlCommand)
|
TableQuery.py | 2 # This file is used to create/update/query/erase table for Queries
33 ## Create table
35 # Create table Query
43 def Create(self):
44 SqlCommand = """create table IF NOT EXISTS %s(ID INTEGER PRIMARY KEY,
50 Table.Create(self, SqlCommand)
|
/external/clang/lib/AST/ |
DeclGroup.cpp | 20 DeclGroup* DeclGroup::Create(ASTContext &C, Decl **Decls, unsigned NumDecls) {
|
/external/webrtc/talk/media/devices/ |
dummydevicemanager.cc | 34 DeviceManagerInterface* DeviceManagerFactory::Create() {
|
/external/webrtc/webrtc/call/ |
rtc_event_log.cc | 109 rtc::scoped_ptr<FileWrapper>(FileWrapper::Create()); 176 : file_(FileWrapper::Create()), 447 // Create a LogEnd event 482 // TODO(terelius): Doesn't this create a new EventStream per event? 504 rtc::scoped_ptr<FileWrapper> dump_file(FileWrapper::Create()); 519 rtc::scoped_ptr<RtcEventLog> RtcEventLog::Create() {
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/ |
compound_packet.cc | 16 bool CompoundPacket::Create(uint8_t* packet,
|
pli.cc | 53 bool Pli::Create(uint8_t* packet,
|
/external/webrtc/webrtc/modules/video_capture/external/ |
video_capture_external.cc | 18 VideoCaptureModule* VideoCaptureImpl::Create(
|
/external/webrtc/webrtc/modules/video_capture/ |
video_capture_factory.cc | 18 VideoCaptureModule* VideoCaptureFactory::Create(const int32_t id, 23 return videocapturemodule::VideoCaptureImpl::Create(id, deviceUniqueIdUTF8); 27 VideoCaptureModule* VideoCaptureFactory::Create(const int32_t id, 29 return videocapturemodule::VideoCaptureImpl::Create(id, externalCapture);
|
/external/webrtc/webrtc/modules/video_capture/windows/ |
video_capture_factory_windows.cc | 22 return DeviceInfoDS::Create(id); 25 VideoCaptureModule* VideoCaptureImpl::Create(const int32_t id,
|
/external/webrtc/webrtc/modules/video_coding/codecs/h264/ |
h264.cc | 38 H264Encoder* H264Encoder::Create() { 52 H264Decoder* H264Decoder::Create() {
|
/frameworks/rs/rsov/compiler/spirit/ |
word_stream.cpp | 25 InputWordStream *InputWordStream::Create() { return new WordStreamImpl(); } 27 InputWordStream *InputWordStream::Create(std::vector<uint32_t> &&words) { 31 InputWordStream *InputWordStream::Create(const std::vector<uint32_t> &words) { 35 InputWordStream *InputWordStream::Create(const std::vector<uint8_t> &bytes) { 38 return InputWordStream::Create(words); 41 InputWordStream *InputWordStream::Create(const char *filePath) { 42 return InputWordStream::Create(readFile<uint32_t>(filePath)); 45 OutputWordStream *OutputWordStream::Create() { return new WordStreamImpl(); } 47 WordStream *WordStream::Create() { return new WordStreamImpl(); } 49 WordStream *WordStream::Create(const std::vector<uint32_t> &words) [all...] |