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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/bcinfo/Wrap/
wrapper_output.cpp 19 bool WrapperOutput::Write(const uint8_t* buffer, size_t buffer_size) {
20 // Default implementation that uses the byte write routine.
22 if (!Write(buffer[i])) return false;
file_wrapper_output.cpp 34 bool FileWrapperOutput::Write(uint8_t byte) {
38 bool FileWrapperOutput::Write(const uint8_t* buffer, size_t buffer_size) {
  /external/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);
  /frameworks/compile/libbcc/include/bcinfo/Wrap/
wrapper_output.h 36 // Writes a single byte, returning false if unable to write.
37 virtual bool Write(uint8_t byte) = 0;
39 // output. Returns false if unable to write.
40 virtual bool Write(const uint8_t* buffer, size_t buffer_size);
file_wrapper_output.h 32 // Writes a single byte, returning false if unable to write.
33 virtual bool Write(uint8_t byte);
35 // output. Returns false if unable to write.
36 virtual bool Write(const uint8_t* buffer, size_t buffer_size);
  /external/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);
  /external/chromium/base/json/
json_writer_unittest.cc 15 JSONWriter::Write(root, false, &output_js);
21 JSONWriter::Write(root, false, &output_js);
27 JSONWriter::Write(root, false, &output_js);
33 JSONWriter::Write(root, false, &output_js);
39 JSONWriter::Write(root, false, &output_js);
45 JSONWriter::Write(root, false, &output_js);
62 JSONWriter::Write(&root_dict, false, &output_js);
64 JSONWriter::Write(&root_dict, true, &output_js);
88 JSONWriter::Write(&period_dict, false, &output_js);
94 JSONWriter::Write(&period_dict3, false, &output_js)
    [all...]
  /art/runtime/base/unix_file/
string_file_test.cc 38 TEST_F(StringFileTest, Write) {
null_file_test.cc 51 ASSERT_EQ(content.size(), 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(), f.Write(content.data(), content.size(), 0));
62 ASSERT_EQ(content.size(), f.Write(content.data(), content.size(), 128));
null_file.h 42 virtual int64_t Write(const char* buf, int64_t byte_count, int64_t offset);
  /external/chromium_org/gpu/command_buffer/
build_gles2_cmd_buffer.py     [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer.cc 105 if (!Write(kHeader) ||
138 Write(kFolderChildrenEnd);
139 Write(kNewline);
182 bool Write(const std::string& text) {
183 size_t wrote = file_stream_.Write(text.c_str(), text.length(), NULL);
191 bool Write(const std::string& text, TextType type) {
210 return Write(utf8_string);
215 return Write(indent_);
223 return Write(base::Int64ToString(
263 !Write(kBookmarkStart) |
    [all...]
  /frameworks/base/tools/aidl/
AST.h 30 // Write the modifiers that are set in both mod and mask
39 virtual void Write(FILE* to) = 0;
45 virtual void Write(FILE* to) = 0;
54 virtual void Write(FILE* to);
64 virtual void Write(FILE* to);
80 void Write(FILE* to);
93 void Write(FILE* to);
108 virtual void Write(FILE* to);
114 virtual void Write(FILE* to) = 0;
123 virtual void Write(FILE* to)
    [all...]
AST.cpp 41 arguments[i]->Write(to);
81 Field::Write(FILE* to)
109 LiteralExpression::Write(FILE* to)
124 StringLiteralExpression::Write(FILE* to)
172 Variable::Write(FILE* to)
196 FieldVariable::Write(FILE* to)
199 this->object->Write(to);
221 StatementBlock::Write(FILE* to)
226 this->statements[i]->Write(to);
253 ExpressionStatement::Write(FILE* to
    [all...]
  /external/chromium_org/base/json/
json_writer_unittest.cc 15 JSONWriter::Write(root, &output_js);
21 JSONWriter::Write(root, &output_js);
27 JSONWriter::Write(root, &output_js);
33 JSONWriter::Write(root, &output_js);
39 JSONWriter::Write(root, &output_js);
45 JSONWriter::Write(root, &output_js);
62 JSONWriter::Write(&root_dict, &output_js);
88 JSONWriter::Write(&period_dict, &output_js);
94 JSONWriter::Write(&period_dict3, &output_js);
  /external/chromium_org/ppapi/proxy/
ppapi_param_traits.cc 79 void ParamTraits<PP_Bool>::Write(Message* m, const param_type& p) {
80 ParamTraits<bool>::Write(m, PP_ToBool(p));
104 void ParamTraits<PP_FileInfo>::Write(Message* m, const param_type& p) {
105 ParamTraits<int64_t>::Write(m, p.size);
106 ParamTraits<int>::Write(m, static_cast<int>(p.type));
107 ParamTraits<int>::Write(m, static_cast<int>(p.system_type));
108 ParamTraits<double>::Write(m, p.creation_time);
109 ParamTraits<double>::Write(m, p.last_access_time);
110 ParamTraits<double>::Write(m, p.last_modified_time);
146 void ParamTraits<PP_NetAddress_Private>::Write(Message* m
    [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/content/common/indexed_db/
indexed_db_param_traits.h 27 static void Write(Message* m, const param_type& p);
35 static void Write(Message* m, const param_type& p);
43 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/chrome/common/
common_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);

Completed in 455 milliseconds

1 2 3 4 5 6 7 8 91011>>