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

  /external/chromium_org/content/browser/indexed_db/
indexed_db_cursor.h 32 scoped_ptr<IndexedDBKey> primary_key,
39 const IndexedDBKey& primary_key() const { return cursor_->primary_key(); } function in class:content::IndexedDBCursor
47 scoped_ptr<IndexedDBKey> primary_key,
indexed_db_backing_store.h 68 RecordIdentifier(const std::string& primary_key, int64 version);
72 const std::string& primary_key() const { return primary_key_; } function in class:content::IndexedDBBackingStore::RecordIdentifier
74 void Reset(const std::string& primary_key, int64 version) {
75 primary_key_ = primary_key;
261 const IndexedDBKey* primary_key,
268 virtual const IndexedDBKey& primary_key() const;
282 const IndexedDBKey& primary_key) = 0;
457 scoped_ptr<IndexedDBKey>* primary_key) WARN_UNUSED_RESULT;
indexed_db_database.cc 588 scoped_ptr<IndexedDBKey> primary_key; local
630 &primary_key);
640 if (!primary_key) {
646 callbacks->OnSuccess(*primary_key);
655 *primary_key,
673 callbacks->OnSuccess(&value, *primary_key, object_store_metadata.key_path);
    [all...]
indexed_db_leveldb_coding.cc 2033 scoped_ptr<IndexedDBKey> IndexDataKey::primary_key() const { function in class:content::IndexDataKey
    [all...]
indexed_db_backing_store.cc 742 const std::string& primary_key,
744 : primary_key_(primary_key), version_(version) {
745 DCHECK(!primary_key.empty());
2427 std::string primary_key = BlobJournalKey::Encode(); local
3244 const IndexedDBKey& IndexedDBBackingStore::Cursor::primary_key() const { function in class:content::IndexedDBBackingStore::Cursor
    [all...]
  /external/chromium_org/content/child/indexed_db/
webidbcursor_impl.cc 67 const WebIDBKey& primary_key,
74 primary_key.keyType() == blink::WebIDBKeyTypeNull) {
103 IndexedDBKeyBuilder::Build(primary_key),
162 IndexedDBKey primary_key = prefetch_primary_keys_.front(); local
183 WebIDBKeyBuilder::Build(primary_key),
indexed_db_dispatcher.cc 190 const IndexedDBKey& primary_key,
201 ipc_cursor_id, CurrentWorkerId(), ipc_callbacks_id, key, primary_key));
584 WebIDBKeyBuilder::Build(params.primary_key),
616 const IndexedDBKey& primary_key = p.primary_key; local
636 WebIDBKeyBuilder::Build(primary_key),
649 const IndexedDBKey& primary_key = p.primary_key; local
664 WebIDBKeyBuilder::Build(primary_key),
  /external/chromium_org/chrome/browser/predictors/
resource_prefetch_predictor_tables.h 54 std::string primary_key; member in struct:predictors::ResourcePrefetchPredictorTables::ResourceRow
77 PrefetchData(PrefetchKeyType key_type, const std::string& primary_key);
86 std::string primary_key; // is_host() ? main frame url : host. member in struct:predictors::ResourcePrefetchPredictorTables::PrefetchData
resource_prefetch_predictor_tables.cc 29 const std::string& primary_key,
31 statement->BindString(0, primary_key);
46 row->primary_key = statement->ColumnString(0);
75 : primary_key(other.primary_key),
93 : primary_key(i_primary_key),
123 return primary_key == rhs.primary_key &&
142 primary_key(i_primary_key) {
148 primary_key(other.primary_key)
267 std::string primary_key = row.primary_key; local
295 std::string primary_key = metadata_reader.ColumnString(0); local
    [all...]

Completed in 448 milliseconds