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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
output_stream.h 32 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;
memory_output_stream.h 37 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/
font_output_stream.cc 32 void FontOutputStream::Write(byte_t b) {
34 stream_->Write(b);
39 void FontOutputStream::Write(ByteVector* b) {
41 Write(b, 0, b->size());
46 void FontOutputStream::Write(ByteVector* b, int32_t off, int32_t len) {
58 stream_->Write(b, off, len);
62 void FontOutputStream::Write(byte_t* b, int32_t off, int32_t len) {
73 stream_->Write(b, off, len);
78 Write(c);
82 Write((byte_t)((us >> 8) & 0xff))
    [all...]
font_output_stream.h 53 virtual void Write(byte_t b);
54 virtual void Write(ByteVector* b);
55 virtual void Write(ByteVector* b, int32_t off, int32_t len);
56 virtual void Write(byte_t* b, int32_t off, int32_t len);
  /external/lzma/CPP/7zip/Archive/Common/
DummyOutStream.cpp 7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
17 result = _stream->Write(data, size, &realProcessedSize);
OutStreamWithCRC.cpp 7 STDMETHODIMP COutStreamWithCRC::Write(const void *data, UInt32 size, UInt32 *processedSize)
11 result = _stream->Write(data, size, &size);
  /art/runtime/base/unix_file/
string_file_test.cc 38 TEST_F(StringFileTest, Write) {
null_file_test.cc 51 ASSERT_EQ(content.size(), static_cast<uint64_t>(f.Write(content.data(), content.size(), 0)));
55 TEST_F(NullFileTest, Write) {
58 // You can't write at a negative offset...
59 ASSERT_EQ(-EINVAL, f.Write(content.data(), content.size(), -128));
60 // But you can write anywhere else...
61 ASSERT_EQ(content.size(), static_cast<uint64_t>(f.Write(content.data(), content.size(), 0)));
62 ASSERT_EQ(content.size(), static_cast<uint64_t>(f.Write(content.data(), content.size(), 128)));
  /external/chromium_org/chrome/test/chromedriver/chrome/
util.cc 12 base::JSONWriter::Write(value, &json);
  /external/chromium_org/chromecast/media/cma/ipc_streamer/
audio_decoder_config_marshaller.h 17 static void Write(
decoder_buffer_base_marshaller.h 19 static void Write(
decrypt_config_marshaller.h 21 static void Write(
video_decoder_config_marshaller.h 17 static void Write(
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
writeYUV420file.m 12 % Write luminance
15 % Write U channel
18 % Write V channel
  /external/chromium_org/base/json/
json_writer_unittest.cc 16 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(&root_dict, &output_js))
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
log_test.cc 121 void Write(const std::string& msg) {
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(BigString("medium", 50000))
    [all...]
  /external/chromium_org/remoting/host/
chromoting_param_traits.h 20 static void Write(Message* m, const param_type& p);
28 static void Write(Message* m, const param_type& p);
36 static void Write(Message* m, const param_type& p);
44 static void Write(Message* m, const param_type& p);
52 static void Write(Message* m, const param_type& p);
  /external/chromium_org/tools/clang/blink_gc_plugin/
JsonWriter.h 10 // Helper to write information for the points-to graph.
25 Write(key);
42 void Write(const size_t val) {
46 void Write(const std::string val) {
50 void Write(const std::string key, const size_t val) {
54 void Write(const std::string key, const std::string val) {
  /external/chromium_org/gpu/command_buffer/
build_gles2_cmd_buffer.py     [all...]
  /external/chromium_org/content/common/indexed_db/
indexed_db_param_traits.h 24 static void Write(Message* m, const param_type& p);
32 static void Write(Message* m, const param_type& p);
40 static void Write(Message* m, const param_type& p);
  /external/chromium_org/ipc/
param_traits_write_macros.h 20 // Set up so next include will generate write methods.
26 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/
input_param_traits.h 21 static void Write(Message* m, const param_type& p);
29 static void Write(Message* m, const param_type& p);
  /external/chromium_org/content/common/media/
media_param_traits.h 22 static void Write(Message* m, const param_type& p);
30 static void Write(Message* m, const param_type& p);
  /external/compiler-rt/test/profile/
instrprof-without-libc.c 31 int Write = __llvm_profile_write_buffer(Buffer);
33 return Write;
36 // Don't write it out. Since we're checking the symbols, we don't have libc
40 // Actually write it out so we can FileCheck the output.
  /external/lldb/source/Core/
StreamAsynchronousIO.cpp 48 StreamAsynchronousIO::Write (const void *s, size_t length)
50 m_accumulated_data.Write (s, length);

Completed in 727 milliseconds

1 2 3 4 5 6 7 8 91011>>