Searched defs:KeyPrefix (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_leveldb_coding.h91 class KeyPrefix { class in namespace:content
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,
H A Dindexed_db_leveldb_coding.cc26 // 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: {
1074 case KeyPrefix::OBJECT_STORE_DATA: {
1083 case KeyPrefix
1132 KeyPrefix::KeyPrefix() function in class:content::KeyPrefix
1137 KeyPrefix::KeyPrefix(int64 database_id) function in class:content::KeyPrefix
1142 KeyPrefix::KeyPrefix(int64 database_id, int64 object_store_id) function in class:content::KeyPrefix
1150 KeyPrefix::KeyPrefix(int64 database_id, int64 object_store_id, int64 index_id) function in class:content::KeyPrefix
1159 KeyPrefix::KeyPrefix(enum Type type, function in class:content::KeyPrefix
[all...]

Completed in 155 milliseconds