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

  /external/chromium_org/content/browser/indexed_db/
indexed_db_leveldb_coding_unittest.cc 113 static int CompareKeys(const std::string& a, const std::string& b) {
140 EXPECT_GT(CompareKeys(max_key, min_key), 0);
141 EXPECT_GT(CompareKeys(max_key, array_key), 0);
142 EXPECT_GT(CompareKeys(max_key, binary_key), 0);
143 EXPECT_GT(CompareKeys(max_key, string_key), 0);
144 EXPECT_GT(CompareKeys(max_key, number_key), 0);
145 EXPECT_GT(CompareKeys(max_key, date_key), 0);
163 EXPECT_LT(CompareKeys(min_key, max_key), 0);
164 EXPECT_LT(CompareKeys(min_key, array_key), 0);
165 EXPECT_LT(CompareKeys(min_key, binary_key), 0)
    [all...]
indexed_db_backing_store.cc 189 static int CompareKeys(const StringPiece& a, const StringPiece& b) {
282 it->IsValid() && CompareKeys(it->Key(), stop_key) < 0;
667 it->IsValid() && CompareKeys(it->Key(), stop_key) < 0;
810 for (it->Seek(begin); it->IsValid() && CompareKeys(it->Key(), end) < 0;
834 it->IsValid() && CompareKeys(it->Key(), stop_key) < 0;
852 if (!it->IsValid() || CompareKeys(it->Key(), stop_key) >= 0)
883 while (it->IsValid() && CompareKeys(it->Key(), stop_key) < 0) {
    [all...]
  /external/chromium_org/components/policy/core/common/
schema.cc 547 bool CompareKeys(const PropertyNode& node, const std::string& key) {
559 const PropertyNode* it = std::lower_bound(begin, end, key, CompareKeys);
  /external/v8/src/
d8.cc 944 int CompareKeys(const void* a, const void* b) {
963 qsort(counters, number_of_counters, sizeof(counters[0]), CompareKeys);
    [all...]

Completed in 64 milliseconds