Searched defs:ReadInt (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/chrome/test/logging/win/
H A Dmof_data_parser.h31 bool ReadInt(int* value) { function in class:logging_win::MofDataParser
/external/chromium_org/media/audio/sounds/
H A Dwav_audio_handler.cc43 T ReadInt(const base::StringPiece& data, size_t offset) { function in namespace:__anon8545
66 uint32 total_length = std::min(ReadInt<uint32>(wav_data, 4),
115 uint32 chunk_length = ReadInt<uint32>(data, 4);
133 DCHECK_EQ(ReadInt<uint16>(data, kAudioFormatOffset), kAudioFormatPCM);
134 num_channels_ = ReadInt<uint16>(data, kChannelOffset);
135 sample_rate_ = ReadInt<uint32>(data, kSampleRateOffset);
136 bits_per_sample_ = ReadInt<uint16>(data, kBitsPerSampleOffset);
/external/chromium_org/base/
H A Dpickle.cc85 bool PickleIterator::ReadInt(int* result) { function in class:PickleIterator
135 if (!ReadInt(&len))
147 if (!ReadInt(&len))
159 if (!ReadInt(&len))
173 if (!ReadInt(length))
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dbitmaptools.cc20 bool ReadInt(int* out) { function
38 if (!(ReadInt(&left) && ReadInt(&top) &&
39 ReadInt(&width) && ReadInt(&height))) {
84 if (!(ReadInt(&bpp) && ReadInt(&width) && ReadInt(&height))) {
172 if (!(ReadInt(&ignore_color) && ReadInt(
[all...]
/external/chromium_org/base/json/
H A Djson_parser.cc814 if (!ReadInt(false)) {
827 if (!ReadInt(true)) {
839 if (!ReadInt(true)) {
846 // ReadInt is greedy because numbers have no easily detectable sentinel,
882 bool JSONParser::ReadInt(bool allow_leading_zeros) { function in class:base::internal::JSONParser

Completed in 129 milliseconds