Searched refs:Write (Results 1 - 25 of 1244) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Doutput_stream.h32 virtual void Write(ByteVector* buffer) = 0;
33 virtual void Write(byte_t b) = 0;
35 // Note: C++ port offered both versions of Write() here. The first one is
38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length) = 0;
41 virtual void Write(byte_t* buffer, int32_t offset, int32_t length) = 0;
H A Dmemory_output_stream.h37 virtual void Write(ByteVector* buffer);
38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length);
39 virtual void Write(byte_t* buffer, int32_t offset, int32_t length);
40 virtual void Write(byte_t b);
/external/sfntly/cpp/src/sfntly/port/
H A Doutput_stream.h32 virtual void Write(ByteVector* buffer) = 0;
33 virtual void Write(byte_t b) = 0;
35 // Note: C++ port offered both versions of Write() here. The first one is
38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length) = 0;
41 virtual void Write(byte_t* buffer, int32_t offset, int32_t length) = 0;
H A Dmemory_output_stream.h37 virtual void Write(ByteVector* buffer);
38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length);
39 virtual void Write(byte_t* buffer, int32_t offset, int32_t length);
40 virtual void Write(byte_t b);
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dfont_output_stream.cc32 void FontOutputStream::Write(byte_t b) { function in class:sfntly::FontOutputStream
34 stream_->Write(b);
39 void FontOutputStream::Write(ByteVector* b) { function in class:sfntly::FontOutputStream
41 Write(b, 0, b->size());
46 void FontOutputStream::Write(ByteVector* b, int32_t off, int32_t len) { function in class:sfntly::FontOutputStream
58 stream_->Write(b, off, len);
62 void FontOutputStream::Write(byte_t* b, int32_t off, int32_t len) { function in class:sfntly::FontOutputStream
73 stream_->Write(b, off, len);
78 Write(c);
82 Write((byte_
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_output_stream.cc32 void FontOutputStream::Write(byte_t b) { function in class:sfntly::FontOutputStream
34 stream_->Write(b);
39 void FontOutputStream::Write(ByteVector* b) { function in class:sfntly::FontOutputStream
41 Write(b, 0, b->size());
46 void FontOutputStream::Write(ByteVector* b, int32_t off, int32_t len) { function in class:sfntly::FontOutputStream
58 stream_->Write(b, off, len);
62 void FontOutputStream::Write(byte_t* b, int32_t off, int32_t len) { function in class:sfntly::FontOutputStream
73 stream_->Write(b, off, len);
78 Write(c);
82 Write((byte_
[all...]
/external/chromium_org/gpu/command_buffer/
H A Dbuild_gles2_cmd_buffer.py2740 def Write(self, string): member in class:CWriter
2782 self.Write(_LICENSE)
2783 self.Write(_DO_NOT_EDIT_WARNING)
2785 self.Write(file_comment)
2786 self.Write("#ifndef %s\n" % self.guard)
2787 self.Write("#define %s\n\n" % self.guard)
2790 self.Write("#endif // %s\n\n" % self.guard)
2814 file.Write(comment)
2815 file.Write("struct %s {\n" % func.name)
2816 file.Write(" typede
[all...]
/external/lzma/CPP/7zip/Archive/Common/
H A DDummyOutStream.cpp7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:CDummyOutStream
17 result = _stream->Write(data, size, &realProcessedSize);
H A DOutStreamWithCRC.cpp7 STDMETHODIMP COutStreamWithCRC::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:COutStreamWithCRC
11 result = _stream->Write(data, size, &size);
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dutil.cc12 base::JSONWriter::Write(value, &json);
/external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
H A DwriteYUV420file.m12 % Write luminance
15 % Write U channel
18 % Write V channel
/external/chromium_org/base/json/
H A Djson_writer_unittest.cc16 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
22 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
28 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
34 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
40 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
46 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
52 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
58 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
64 EXPECT_TRUE(JSONWriter::Write(root, &output_js));
86 EXPECT_TRUE(JSONWriter::Write(
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dlog_test.cc121 void Write(const std::string& msg) { function in class:leveldb::log::LogTest
122 ASSERT_TRUE(!reading_) << "Write() after starting to read";
188 Write(record);
243 Write("foo");
244 Write("bar");
245 Write("");
246 Write("xxxx");
257 Write(NumberString(i));
266 Write("small");
267 Write(BigStrin
[all...]
/external/chromium_org/tools/clang/blink_gc_plugin/
H A DJsonWriter.h25 Write(key);
42 void Write(const size_t val) { function in class:JsonWriter
46 void Write(const std::string val) { function in class:JsonWriter
50 void Write(const std::string key, const size_t val) { function in class:JsonWriter
54 void Write(const std::string key, const std::string val) { function in class:JsonWriter
/external/chromium_org/ipc/
H A Dparam_traits_write_macros.h26 void ParamTraits<struct_name>::Write(Message* m, const param_type& p) {
28 #define IPC_STRUCT_TRAITS_PARENT(type) ParamTraits<type>::Write(m, p);
33 void ParamTraits<enum_name>::Write(Message* m, const param_type& value) { \
/external/chromium_org/content/common/input/
H A Dinput_param_traits.h21 static void Write(Message* m, const param_type& p);
29 static void Write(Message* m, const param_type& p);
/external/compiler-rt/test/profile/
H A Dinstrprof-without-libc.c31 int Write = __llvm_profile_write_buffer(Buffer); local
33 return Write;
/external/lldb/source/Core/
H A DStreamAsynchronousIO.cpp48 StreamAsynchronousIO::Write (const void *s, size_t length) function in class:StreamAsynchronousIO
50 m_accumulated_data.Write (s, length);
/external/chromium_org/ppapi/proxy/
H A Dppapi_param_traits.cc78 void ParamTraits<PP_Bool>::Write(Message* m, const param_type& p) { function in class:IPC::ParamTraits
79 ParamTraits<bool>::Write(m, PP_ToBool(p));
103 void ParamTraits<PP_NetAddress_Private>::Write(Message* m, function in class:IPC::ParamTraits
138 void ParamTraits<ppapi::HostResource>::Write(Message* m, function in class:IPC::ParamTraits
140 ParamTraits<PP_Instance>::Write(m, p.instance());
141 ParamTraits<PP_Resource>::Write(m, p.host_resource());
165 void ParamTraits<ppapi::proxy::SerializedVar>::Write(Message* m, function in class:IPC::ParamTraits
184 void ParamTraits< std::vector<ppapi::proxy::SerializedVar> >::Write( function in class:IPC::ParamTraits
206 void ParamTraits<ppapi::PpapiPermissions>::Write(Message* m, function in class:IPC::ParamTraits
208 ParamTraits<uint32_t>::Write(
230 void ParamTraits<ppapi::proxy::SerializedHandle>::Write(Message* m, function in class:IPC::ParamTraits
294 void ParamTraits<ppapi::proxy::PPBURLLoader_UpdateProgress_Params>::Write( function in class:IPC::ParamTraits
328 void ParamTraits<ppapi::proxy::PPBFlash_DrawGlyphs_Params>::Write( function in class:IPC::ParamTraits
388 void ParamTraits<ppapi::proxy::SerializedDirEntry>::Write(Message* m, function in class:IPC::ParamTraits
410 void ParamTraits<ppapi::proxy::SerializedFontDescription>::Write( function in class:IPC::ParamTraits
449 void ParamTraits<ppapi::proxy::SerializedTrueTypeFontDesc>::Write( function in class:IPC::ParamTraits
485 void ParamTraits<ppapi::PepperFilePath>::Write(Message* m, function in class:IPC::ParamTraits
520 void ParamTraits<ppapi::proxy::SerializedFlashMenu>::Write( function in class:IPC::ParamTraits
542 void ParamTraits<ppapi::PPB_X509Certificate_Fields>::Write( function in class:IPC::ParamTraits
563 void ParamTraits<ppapi::SocketOptionData>::Write(Message* m, function in class:IPC::ParamTraits
639 void ParamTraits<ppapi::CompositorLayerData::Transform>::Write( function in class:IPC::ParamTraits
[all...]
H A Dppapi_param_traits.h50 static void Write(Message* m, const param_type& p);
58 static void Write(Message* m, const param_type& p);
67 static void Write(Message* m, const param_type& p);
76 static void Write(Message* m, const param_type& p);
84 static void Write(Message* m, const param_type& p);
92 static void Write(Message* m, const param_type& p);
101 static void Write(Message* m, const param_type& p);
109 static void Write(Message* m, const param_type& p);
117 static void Write(Message* m, const param_type& p);
125 static void Write(Messag
[all...]
/external/chromium_org/chromecast/media/cma/ipc_streamer/
H A Daudio_decoder_config_marshaller.h17 static void Write(
H A Ddecoder_buffer_base_marshaller.h19 static void Write(
H A Ddecrypt_config_marshaller.h21 static void Write(
H A Dvideo_decoder_config_marshaller.h17 static void Write(
/external/chromium_org/remoting/protocol/
H A Dhost_video_dispatcher.cc30 writer_.Write(SerializeAndFrameMessage(*packet), done);

Completed in 1768 milliseconds

1234567891011>>