HomeSort by relevance Sort by last modified time
    Searched refs:ReadInt (Results 1 - 20 of 20) sorted by null

  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
bitmaptools.cc 20 bool ReadInt(int* out) {
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(&tolerance)))
    [all...]
  /external/libchrome/base/metrics/
histogram_samples.cc 45 if (!iter_->ReadInt(&min_) ||
46 !iter_->ReadInt(&max_) ||
47 !iter_->ReadInt(&count_))
106 if (!iter->ReadInt64(&sum) || !iter->ReadInt(&redundant_count))
histogram_unittest.cc 402 EXPECT_TRUE(iter.ReadInt(&type));
410 EXPECT_TRUE(iter.ReadInt(&flag));
414 EXPECT_TRUE(iter.ReadInt(&min));
418 EXPECT_TRUE(iter.ReadInt(&max));
452 EXPECT_TRUE(iter.ReadInt(&i) && iter.ReadString(&s) && iter.ReadInt(&i) &&
453 iter.ReadInt(&i) && iter.ReadInt(&i) &&
458 EXPECT_TRUE(iter.ReadInt(&range));
460 EXPECT_TRUE(iter.ReadInt(&range))
    [all...]
sparse_histogram_unittest.cc 134 EXPECT_TRUE(iter.ReadInt(&type));
142 EXPECT_TRUE(iter.ReadInt(&flag));
histogram_base.cc 45 if (!iter->ReadInt(&type))
sparse_histogram.cc 111 if (!iter->ReadString(&histogram_name) || !iter->ReadInt(&flags)) {
histogram.cc 43 !iter->ReadInt(flags) ||
44 !iter->ReadInt(declared_min) ||
45 !iter->ReadInt(declared_max) ||
864 if (!iter->ReadInt(&sample_ranges[i]))
  /external/libchrome/crypto/
secure_hash_default.cc 62 if (!data_iterator->ReadInt(&version))
secure_hash_openssl.cc 68 if (!data_iterator->ReadInt(&version))
  /external/libchrome/base/
pickle.cc 87 bool PickleIterator::ReadInt(int* result) {
147 if (!ReadInt(&len))
159 if (!ReadInt(&len))
171 if (!ReadInt(&len))
183 if (!ReadInt(&len))
197 if (!ReadInt(length))
pickle.h 37 bool ReadInt(int* result) WARN_UNUSED_RESULT;
66 // A safer version of ReadInt() that checks for the result not being negative.
69 return ReadInt(result) && *result >= 0;
pickle_unittest.cc 53 EXPECT_TRUE(iter.ReadInt(&outint));
111 EXPECT_FALSE(iter.ReadInt(&outint));
179 EXPECT_FALSE(iter.ReadInt(&data));
190 EXPECT_FALSE(iter.ReadInt(&data));
200 EXPECT_FALSE(iter.ReadInt(&data));
448 ASSERT_TRUE(iter.ReadInt(&result));
574 EXPECT_TRUE(iter.ReadInt(&out_value));
  /external/libchrome/sandbox/linux/syscall_broker/
broker_host.cc 126 if (!iter.ReadString(&requested_filename) || !iter.ReadInt(&flags))
201 if (iter.ReadInt(&command_type)) {
broker_client.cc 98 if (iter.ReadInt(&return_value)) {
  /external/libchrome/base/json/
json_parser.h 201 bool ReadInt(bool allow_leading_zeros);
json_parser.cc 832 if (!ReadInt(false)) {
845 if (!ReadInt(true)) {
857 if (!ReadInt(true)) {
864 // ReadInt is greedy because numbers have no easily detectable sentinel,
900 bool JSONParser::ReadInt(bool allow_leading_zeros) {
  /external/libweave/third_party/chromium/base/json/
json_parser.h 201 bool ReadInt(bool allow_leading_zeros);
json_parser.cc 827 if (!ReadInt(false)) {
840 if (!ReadInt(true)) {
852 if (!ReadInt(true)) {
859 // ReadInt is greedy because numbers have no easily detectable sentinel,
895 bool JSONParser::ReadInt(bool allow_leading_zeros) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cmnquery.h 79 STDMETHOD(ReadInt)(THIS_ LPCWSTR pSection,LPCWSTR pValueName,LPINT pValue) PURE;
  /external/libchrome/base/trace_event/
trace_event_argument.cc 413 CHECK(it.ReadInt(&value));

Completed in 245 milliseconds