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 80 class KeyPrefix {
82 KeyPrefix();
83 explicit KeyPrefix(int64 database_id);
84 KeyPrefix(int64 database_id, int64 object_store_id);
85 KeyPrefix(int64 database_id, int64 object_store_id, int64 index_id);
86 static KeyPrefix CreateWithSpecialIndex(int64 database_id,
90 static bool Decode(base::StringPiece* slice, KeyPrefix* result);
93 int Compare(const KeyPrefix& other) const;
154 KeyPrefix(enum Type,
indexed_db_leveldb_coding.cc 26 // for metadata. See KeyPrefix::Decode() for details of the prefix coding.
917 KeyPrefix prefix_a;
918 KeyPrefix prefix_b;
919 bool ok_a = KeyPrefix::Decode(&slice_a, &prefix_a);
920 bool ok_b = KeyPrefix::Decode(&slice_b, &prefix_b);
933 case KeyPrefix::GLOBAL_METADATA: {
969 case KeyPrefix::DATABASE_METADATA: {
1023 case KeyPrefix::OBJECT_STORE_DATA: {
1032 case KeyPrefix::EXISTS_ENTRY: {
1041 case KeyPrefix::INDEX_DATA:
    [all...]

Completed in 4090 milliseconds