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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/include/xml/
SkBML_XMLParser.h 20 /** Read the byte XML stream and write the decompressed XML.
22 static void Read(SkStream& s, SkXMLWriter& writer);
23 /** Read the byte XML stream and write the decompressed XML into a writable stream.
25 static void Read(SkStream& s, SkWStream& output);
26 /** Read the byte XML stream and write the decompressed XML into an XML parser.
28 static void Read(SkStream& s, SkXMLParser& output);
  /external/skia/include/xml/
SkBML_XMLParser.h 20 /** Read the byte XML stream and write the decompressed XML.
22 static void Read(SkStream& s, SkXMLWriter& writer);
23 /** Read the byte XML stream and write the decompressed XML into a writable stream.
25 static void Read(SkStream& s, SkWStream& output);
26 /** Read the byte XML stream and write the decompressed XML into an XML parser.
28 static void Read(SkStream& s, SkXMLParser& output);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 67 int32_t FontInputStream::Read() {
71 int32_t b = stream_->Read();
78 int32_t FontInputStream::Read(ByteVector* b, int32_t offset, int32_t length) {
86 int32_t bytes_read = stream_->Read(b, offset, bytes_to_read);
91 int32_t FontInputStream::Read(ByteVector* b) {
92 return Read(b, 0, b->size());
96 return Read();
100 return 0xffff & (Read() << 8 | Read());
104 return ((Read() << 8 | Read()) << 16) >> 16
    [all...]
font_input_stream.h 57 // @param length the maximum length of bytes to read
69 virtual int32_t Read();
70 virtual int32_t Read(ByteVector* buffer);
71 virtual int32_t Read(ByteVector* buffer, int32_t offset, int32_t length);
91 int64_t length_; // Bound on length of data to read.
  /external/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 67 int32_t FontInputStream::Read() {
71 int32_t b = stream_->Read();
78 int32_t FontInputStream::Read(ByteVector* b, int32_t offset, int32_t length) {
86 int32_t bytes_read = stream_->Read(b, offset, bytes_to_read);
91 int32_t FontInputStream::Read(ByteVector* b) {
92 return Read(b, 0, b->size());
96 return Read();
100 return 0xffff & (Read() << 8 | Read());
104 return ((Read() << 8 | Read()) << 16) >> 16
    [all...]
font_input_stream.h 57 // @param length the maximum length of bytes to read
69 virtual int32_t Read();
70 virtual int32_t Read(ByteVector* buffer);
71 virtual int32_t Read(ByteVector* buffer, int32_t offset, int32_t length);
91 int64_t length_; // Bound on length of data to read.
  /external/lzma/CPP/7zip/Common/
LockedStream.cpp 7 HRESULT CLockedInStream::Read(UInt64 startPos, void *data, UInt32 size,
12 return _stream->Read(data, size, processedSize);
15 STDMETHODIMP CLockedSequentialInStreamImp::Read(void *data, UInt32 size, UInt32 *processedSize)
18 HRESULT result = _lockedInStream->Read(_pos, data, size, &realProcessedSize);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
file_input_stream.h 36 virtual int32_t Read();
37 virtual int32_t Read(ByteVector* b);
38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
input_stream.h 34 virtual int32_t Read() = 0;
35 virtual int32_t Read(ByteVector* b) = 0;
36 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length) = 0;
memory_input_stream.h 36 virtual int32_t Read();
37 virtual int32_t Read(ByteVector* b);
38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.h 36 virtual int32_t Read();
37 virtual int32_t Read(ByteVector* b);
38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
input_stream.h 34 virtual int32_t Read() = 0;
35 virtual int32_t Read(ByteVector* b) = 0;
36 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length) = 0;
memory_input_stream.h 36 virtual int32_t Read();
37 virtual int32_t Read(ByteVector* b);
38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
  /external/chromium_org/chrome/common/
partial_circular_buffer_unittest.cc 73 pcb_read_->Read(output_data, sizeof(output_data)));
77 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data)));
87 pcb_read_->Read(output_data, sizeof(output_data)));
94 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data)));
104 pcb_read_->Read(output_data, sizeof(output_data)));
108 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data)));
118 pcb_read_->Read(output_data, sizeof(output_data)));
122 EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data)));
132 uint32 read = 0; local
133 for (; read + size_per_read <= sizeof(output_data); read += size_per_read)
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
log_test.cc 61 virtual Status Read(size_t n, Slice* result, char* scratch) {
62 ASSERT_TRUE(!returned_partial_) << "must not Read() after eof/error";
67 return Status::Corruption("read error");
122 ASSERT_TRUE(!reading_) << "Write() after starting to read";
130 std::string Read() {
239 ASSERT_EQ("EOF", Read());
247 ASSERT_EQ("foo", Read());
248 ASSERT_EQ("bar", Read());
249 ASSERT_EQ("", Read());
250 ASSERT_EQ("xxxx", Read());
    [all...]
  /art/runtime/base/unix_file/
string_file_test.cc 30 TEST_F(StringFileTest, Read) {
  /external/lzma/CPP/7zip/Archive/7z/
7zSpecStream.cpp 7 STDMETHODIMP CSequentialInStreamSizeCount2::Read(void *data, UInt32 size, UInt32 *processedSize)
10 HRESULT result = _stream->Read(data, size, &realProcessedSize);
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
rtp_file_reader.cc 32 kFirstLineLength = 40, // More than needed to read the ID line.
52 // Read RTP packets from file in rtpdump format, as documented at:
73 DEBUG_LOG("ERROR: Can't read from file\n");
96 TRY(Read(&start_sec));
97 TRY(Read(&start_usec));
98 TRY(Read(&source));
99 TRY(Read(&port));
100 TRY(Read(&padding));
114 TRY(Read(&len));
115 TRY(Read(&plen))
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/
memory_io_test.cc 45 // Read one byte
46 EXPECT_EQ(is.Read(), '0'); // position 1
47 EXPECT_EQ(is.Read(), '1'); // position 2
48 EXPECT_EQ(is.Read(), '2'); // position 3
50 // Read byte vector
53 EXPECT_EQ(is.Read(&b), 7); // position 10
57 EXPECT_EQ(is.Read(&b, 7, 10), 10); // position 20
64 EXPECT_EQ(is.Read(&b), 10); // position 60
69 EXPECT_EQ(is.Read(&b), 10); // position 50
  /external/sfntly/cpp/src/test/
memory_io_test.cc 45 // Read one byte
46 EXPECT_EQ(is.Read(), '0'); // position 1
47 EXPECT_EQ(is.Read(), '1'); // position 2
48 EXPECT_EQ(is.Read(), '2'); // position 3
50 // Read byte vector
53 EXPECT_EQ(is.Read(&b), 7); // position 10
57 EXPECT_EQ(is.Read(&b, 7, 10), 10); // position 20
64 EXPECT_EQ(is.Read(&b), 10); // position 60
69 EXPECT_EQ(is.Read(&b), 10); // position 50
  /art/runtime/
runtime-inl.h 44 return resolution_method_.Read();
49 return imt_conflict_method_.Read();
55 return default_imt_.Read();
61 return callee_save_methods_[type].Read();
66 return callee_save_methods_[type].Read();
  /external/chromium_org/media/filters/
in_memory_url_protocol_unittest.cc 17 EXPECT_EQ(4, protocol.Read(sizeof(out), out));
25 EXPECT_EQ(AVERROR(EIO), protocol.Read(-2, out));
32 EXPECT_EQ(0, protocol.Read(0, &out));
43 EXPECT_EQ(0, protocol.Read(1, &out));
47 EXPECT_EQ(1, protocol.Read(1, &out));
  /external/chromium_org/content/common/indexed_db/
indexed_db_param_traits.h 25 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
33 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
41 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
  /external/chromium_org/ipc/
param_traits_read_macros.h 20 // Set up so next include will generate read methods.
27 Read(const Message* m, PickleIterator* iter, param_type* p) { \
30 #define IPC_STRUCT_TRAITS_PARENT(type) ParamTraits<type>::Read(m, iter, p) &&
36 Read(const Message* m, PickleIterator* iter, param_type* p) { \
ipc_message_utils_unittest.cc 31 // Read back the nested message.
34 ASSERT_TRUE(ParamTraits<Message>::Read(&outer_msg, &iter, &result_msg));
45 ASSERT_TRUE(ParamTraits<int>::Read(&nested_msg, &nested_iter,
51 ASSERT_FALSE(ParamTraits<Message>::Read(&outer_msg, &iter, &dummy));
52 ASSERT_FALSE(ParamTraits<int>::Read(&nested_msg, &nested_iter,
69 ASSERT_TRUE(ParamTraits<base::FilePath>::Read(&message, &iter, &ok_path));
70 ASSERT_FALSE(ParamTraits<base::FilePath>::Read(&message, &iter, &bad_path));

Completed in 580 milliseconds

1 2 3 4 5 6 7 8 91011>>