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

/external/chromium_org/third_party/webrtc/base/
H A Dsharedexclusivelock_unittest.cc137 int value0, value1; local
148 reader0.PostRead(&value0);
154 EXPECT_EQ(1, value0);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntList.java58 * @param value0 the first value in the list
61 public static IntList makeImmutable(int value0, int value1) { argument
64 result.add(value0);
/external/chromium_org/device/bluetooth/
H A Dbluetooth_gatt_chromeos_unittest.cc50 bool ValuesEqual(const std::vector<uint8>& value0, argument
52 if (value0.size() != value1.size())
54 for (size_t i = 0; i < value0.size(); ++i)
55 if (value0[i] != value1[i])
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_backing_store_unittest.cc491 IndexedDBValue value0 = IndexedDBValue("value0", blob_info0); local
503 &value0,
581 IndexedDBValue value0 = IndexedDBValue("value0", blob_info0); local
593 &value0,
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
H A Dsvc_encodeframe.c163 int *value0,
166 *value0 = strtol(input, &input, 10);
171 if (*value0 < option_min_values[SCALE_FACTOR] ||
173 *value0 > option_max_values[SCALE_FACTOR] ||
175 *value0 > *value1) // num shouldn't be greater than den
178 *value0 = atoi(input);
179 if (*value0 < option_min_values[type] ||
180 *value0 > option_max_values[type])
161 extract_option(LAYER_OPTION_TYPE type, char *input, int *value0, int *value1) argument

Completed in 1751 milliseconds