Searched refs:CompareKeys (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_leveldb_coding_unittest.cc114 static int CompareKeys(const std::string& a, const std::string& b) { function in namespace:content::__anon7203
141 EXPECT_GT(CompareKeys(max_key, min_key), 0);
142 EXPECT_GT(CompareKeys(max_key, array_key), 0);
143 EXPECT_GT(CompareKeys(max_key, binary_key), 0);
144 EXPECT_GT(CompareKeys(max_key, string_key), 0);
145 EXPECT_GT(CompareKeys(max_key, number_key), 0);
146 EXPECT_GT(CompareKeys(max_key, date_key), 0);
164 EXPECT_LT(CompareKeys(min_key, max_key), 0);
165 EXPECT_LT(CompareKeys(min_key, array_key), 0);
166 EXPECT_LT(CompareKeys(min_ke
[all...]
H A Dindexed_db_backing_store.cc291 static int CompareKeys(const StringPiece& a, const StringPiece& b) { function in namespace:content
393 s.ok() && it->IsValid() && CompareKeys(it->Key(), stop_key) < 0;
1168 s->ok() && it->IsValid() && CompareKeys(it->Key(), stop_key) < 0;
1375 (upper_open ? CompareKeys(it->Key(), end) < 0
1376 : CompareKeys(it->Key(), end) <= 0);
1392 (upper_open ? CompareKeys(it->Key(), end_key) < 0
1393 : CompareKeys(it->Key(), end_key) <= 0);
1446 s.ok() && it->IsValid() && CompareKeys(it->Key(), stop_key) < 0;
1485 if (!it->IsValid() || CompareKeys(it->Key(), stop_key) >= 0)
1517 while (s.ok() && it->IsValid() && CompareKeys(i
[all...]
/external/chromium_org/components/policy/core/common/
H A Dschema.cc996 bool CompareKeys(const PropertyNode& node, const std::string& key) { function in namespace:policy::__anon6757
1008 const PropertyNode* it = std::lower_bound(begin, end, key, CompareKeys);

Completed in 1863 milliseconds