HomeSort by relevance Sort by last modified time
    Searched defs:KeyPrefix (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/browser/indexed_db/
indexed_db_leveldb_coding.h 91 class KeyPrefix {
130 KeyPrefix();
131 explicit KeyPrefix(int64 database_id);
132 KeyPrefix(int64 database_id, int64 object_store_id);
133 KeyPrefix(int64 database_id, int64 object_store_id, int64 index_id);
134 static KeyPrefix CreateWithSpecialIndex(int64 database_id,
138 static bool Decode(base::StringPiece* slice, KeyPrefix* result);
141 int Compare(const KeyPrefix& other) const;
165 KeyPrefix(enum Type,
indexed_db_leveldb_coding.cc 26 // for metadata. See KeyPrefix::Decode() for details of the prefix coding.
629 if (!KeyPrefix::IsValidDatabaseId(database_id))
968 KeyPrefix prefix_a;
969 KeyPrefix prefix_b;
970 bool ok_a = KeyPrefix::Decode(&slice_a, &prefix_a);
971 bool ok_b = KeyPrefix::Decode(&slice_b, &prefix_b);
984 case KeyPrefix::GLOBAL_METADATA: {
1020 case KeyPrefix::DATABASE_METADATA: {
    [all...]

Completed in 382 milliseconds