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

1 2 3 4 5 6 7 8 91011>>

  /external/tinyxml2/docs/search/
pages_3.js 3 ['read_20attributes_20and_20text_20information_2e',['Read attributes and text information.',['../_example_4.html',1,'']]]
all_e.js 3 ['read_20attributes_20and_20text_20information_2e',['Read attributes and text information.',['../_example_4.html',1,'']]],
  /build/kati/testcase/
file_func.sh 33 \$(info Read not found: \$(if \$(file <notfound),FAIL,PASS))
34 \$(info Read: \$(file < testfile))
35 \$(info Read back: \$(file <testwrite))
38 \$(info Read not found: PASS)
39 \$(info Read: PASS)
40 \$(info Read back: PASS)
  /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...]
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
TestAndClearBit.c 27 UINT16 Word, Read;
39 for (Word = *(UINT16 *) Address; Word & Mask; Word = Read) {
40 Read = InterlockedCompareExchange16 (Address, Word, Word & ~Mask);
41 if (Read == Word) {
  /external/compiler-rt/test/asan/TestCases/Darwin/
segv_read_write.c 2 // RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=READ
9 __attribute__((noinline)) void Read(int *ptr) { sink = *ptr; }
19 Read((int *)p);
23 // READ: AddressSanitizer: SEGV on unknown address
24 // READ: The signal is caused by a READ memory access.
  /external/compiler-rt/test/asan/TestCases/Linux/
segv_read_write.c 2 // RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=READ
9 __attribute__((noinline)) void Read(int *ptr) { sink = *ptr; }
19 Read((int *)p);
23 // READ: AddressSanitizer: SEGV on unknown address
24 // READ: The signal is caused by a READ memory access.
  /external/libxml2/python/tests/
reader3.py 29 ret = reader.Read()
34 ret = reader.Read()
41 ret = reader.Read()
48 ret = reader.Read()
55 ret = reader.Read()
67 ret = reader.Read()
72 ret = reader.Read()
79 ret = reader.Read()
86 ret = reader.Read()
93 ret = reader.Read()
    [all...]
reader7.py 40 ret = reader.Read()
43 ret = reader.Read()
76 ret = reader.Read()
79 ret = reader.Read()
reader8.py 20 ret = reader.Read()
21 ret = reader.Read()
walker.py 41 ret = reader.Read()
44 ret = reader.Read()
81 ret = reader.Read()
84 ret = reader.Read()
119 ret = reader.Read()
122 ret = reader.Read()
  /external/bsdiff/
extents_file_unittest.cc 26 MOCK_METHOD3(Read, bool(void*, size_t, size_t*));
92 // We use a failing Read() call to trigger the actual seek call to the
95 EXPECT_CALL(*mock_file_, Read(_, _, _)).WillOnce(Return(false));
99 EXPECT_FALSE(file.Read(nullptr, 1, &bytes_read));
116 EXPECT_CALL(*mock_file_, Read(buf, 5, _)).WillOnce(SucceedIO());
118 EXPECT_CALL(*mock_file_, Read(buf + 5, 7, _)).WillOnce(SucceedIO());
120 EXPECT_CALL(*mock_file_, Read(buf + 12, 3, _)).WillOnce(SucceedIO());
122 // FileExtents::Read() should read everything in one shot, by reading all
123 // the little chunks. Note that it doesn't attempt to read past the end of th
    [all...]
  /external/google-breakpad/src/common/linux/
elf_symbols_to_module.cc 93 // Read the symbol at cursor_, and set symbol_ appropriately.
100 .Read(4, false, &symbol_.name_offset)
101 .Read(4, false, &symbol_.value)
102 .Read(4, false, &symbol_.size)
103 .Read(1, false, &symbol_.info)
104 .Read(1, false, &other)
105 .Read(2, false, &symbol_.shndx);
109 .Read(4, false, &symbol_.name_offset)
110 .Read(1, false, &symbol_.info)
111 .Read(1, false, &other
    [all...]
  /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);
  /art/runtime/
monitor-inl.h 29 return obj_.Read<kReadBarrierOption>();
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
resample_input_audio_file.cc 19 bool ResampleInputAudioFile::Read(size_t samples,
26 if (!InputAudioFile::Read(samples_to_read, temp_destination.get()))
37 bool ResampleInputAudioFile::Read(size_t samples, int16_t* destination) {
39 return Read(samples, output_rate_hz_, destination);
  /external/compiler-rt/test/asan/TestCases/Windows/
crash_read_write.cc 2 // RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=READ
9 __attribute__((noinline)) void Read(int *ptr) { sink = *ptr; }
22 Read((int *)p);
26 // READ: AddressSanitizer: access-violation on unknown address
27 // READ: The signal is caused by a READ memory access.
  /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);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Include/Drivers/
PL310L2Cache.h 65 #define PL310_LATENCIES(Write,Read,Setup) (((Write) << 8) | ((Read) << 4) | (Setup))
66 #define PL310_TAG_LATENCIES(Write,Read,Setup) PL310_LATENCIES(Write,Read,Setup)
67 #define PL310_DATA_LATENCIES(Write,Read,Setup) PL310_LATENCIES(Write,Read,Setup)
  /external/google-breakpad/src/common/
byte_cursor_unittest.cc 132 EXPECT_TRUE(cursor.Read(stars, 3));
164 .Read(1, true, &a)
165 .Read(1, true, &b)
166 .Read(1, true, &c)
167 .Read(1, true, &d));
173 EXPECT_FALSE(cursor.Read(1, true, &e));
184 .Read(2, true, &a)
185 .Read(2, true, &b)
186 .Read(2, true, &c)
187 .Read(2, true, &d
    [all...]
  /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
  /external/tensorflow/tensorflow/contrib/ignite/kernels/igfs/
igfs_messages.h 42 Status Read(ExtendedTCPClient *client);
49 Status Read(ExtendedTCPClient *client);
67 virtual Status Read(ExtendedTCPClient *client);
110 Status Read(ExtendedTCPClient *client) override {
111 TF_RETURN_IF_ERROR(Response::Read(client));
121 TF_RETURN_IF_ERROR(res.Read(client));
136 Status Read(ExtendedTCPClient *client) {
144 TF_RETURN_IF_ERROR(f.Read(client));
161 Status Read(ExtendedTCPClient *client);
173 Status Read(ExtendedTCPClient *client)
    [all...]
  /external/libchrome/mojo/public/cpp/base/
time_mojom_traits.h 19 static bool Read(mojo_base::mojom::TimeDataView data, base::Time* time);
27 static bool Read(mojo_base::mojom::TimeDeltaDataView data,
36 static bool Read(mojo_base::mojom::TimeTicksDataView data,

Completed in 454 milliseconds

1 2 3 4 5 6 7 8 91011>>