/external/chromium_org/chrome/browser/predictors/ |
resource_prefetch_predictor_tables.cc | 28 const std::string& primary_key, 30 statement->BindString(0, primary_key); 45 row->primary_key = statement->ColumnString(0); 73 : primary_key(other.primary_key), 91 : primary_key(i_primary_key), 124 return primary_key == rhs.primary_key && 143 primary_key(i_primary_key) { 149 primary_key(other.primary_key) 268 std::string primary_key = row.primary_key; local 296 std::string primary_key = metadata_reader.ColumnString(0); local [all...] |
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_unittest.cc | 60 LOG(ERROR) << "[" << data.key_type << "," << data.primary_key
|
resource_prefetch_predictor_unittest.cc | 38 *os << "[" << row.primary_key << "," << row.resource_url 45 *os << "[" << data.key_type << "," << data.primary_key [all...] |
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_cursor.h | 31 scoped_ptr<IndexedDBKey> primary_key, 38 const IndexedDBKey& primary_key() const { return cursor_->primary_key(); } function in class:content::IndexedDBCursor 46 scoped_ptr<IndexedDBKey> primary_key,
|
indexed_db_cursor.cc | 34 scoped_ptr<IndexedDBKey> primary_key, 43 base::Passed(&primary_key), 68 callbacks->OnSuccess(key(), primary_key(), Value()); 73 scoped_ptr<IndexedDBKey> primary_key, 79 key.get(), primary_key.get(), IndexedDBBackingStore::Cursor::SEEK)) { 85 callbacks->OnSuccess(this->key(), this->primary_key(), Value()); 123 found_primary_keys.push_back(cursor_->primary_key()); 140 size_estimate += cursor_->primary_key().size_estimate();
|
indexed_db_index_writer.cc | 36 const IndexedDBKey& primary_key, 46 primary_key, 91 const IndexedDBKey& primary_key, 111 (primary_key.IsValid() && found_primary_key->IsEqual(primary_key))) 121 const IndexedDBKey& primary_key, // makes a copy 145 keys.push_back(primary_key); 156 primary_key,
|
indexed_db_index_writer.h | 36 const IndexedDBKey& primary_key, 54 const IndexedDBKey& primary_key, 66 const IndexedDBKey& primary_key,
|
indexed_db_backing_store.h | 103 RecordIdentifier(const std::string& primary_key, int64 version); 107 const std::string& primary_key() const { return primary_key_; } function in class:content::IndexedDBBackingStore::RecordIdentifier 109 void Reset(const std::string& primary_key, int64 version) { 110 primary_key_ = primary_key; 184 scoped_ptr<IndexedDBKey>* primary_key) WARN_UNUSED_RESULT; 222 const IndexedDBKey* primary_key, 228 virtual const IndexedDBKey& primary_key() const; 240 const IndexedDBKey& primary_key) = 0;
|
indexed_db_callbacks.h | 72 const IndexedDBKey& primary_key, 77 const IndexedDBKey& primary_key,
|
indexed_db_callbacks.cc | 164 const IndexedDBKey& primary_key, 179 params.primary_key = primary_key; 190 const IndexedDBKey& primary_key, 210 params.primary_key = primary_key;
|
indexed_db_backing_store.cc | 393 const std::string& primary_key, 395 : primary_key_(primary_key), version_(version) { 396 DCHECK(!primary_key.empty()); 2005 const IndexedDBKey& IndexedDBBackingStore::Cursor::primary_key() const { function in class:content::IndexedDBBackingStore::Cursor [all...] |
indexed_db_database.cc | 575 scoped_ptr<IndexedDBKey> primary_key; local 614 &primary_key); 621 if (!primary_key) { 627 callbacks->OnSuccess(*primary_key); 636 *primary_key, 651 callbacks->OnSuccess(&value, *primary_key, object_store_metadata.key_path); 868 scoped_ptr<IndexedDBKey> primary_key, 885 *primary_key, [all...] |
indexed_db_dispatcher_host.cc | 585 make_scoped_ptr(new IndexedDBKey(params.primary_key)), 817 const IndexedDBKey& primary_key) { 828 primary_key.IsValid() ? make_scoped_ptr(new IndexedDBKey(primary_key)) [all...] |
indexed_db_dispatcher_host.h | 217 const IndexedDBKey& primary_key);
|
indexed_db_database.h | 146 scoped_ptr<IndexedDBKey> primary_key,
|
indexed_db_leveldb_coding.h | 418 scoped_ptr<IndexedDBKey> primary_key() const;
|
/external/chromium_org/content/child/indexed_db/ |
webidbcursor_impl.cc | 61 const WebIDBKey& primary_key, 68 primary_key.keyType() == blink::WebIDBKeyTypeNull) { 97 IndexedDBKeyBuilder::Build(primary_key), 133 IndexedDBKey primary_key = prefetch_primary_keys_.front(); local 145 WebIDBKeyBuilder::Build(primary_key),
|
webidbcursor_impl.h | 35 const blink::WebIDBKey& primary_key,
|
webidbdatabase_impl.cc | 132 const WebIDBKey& primary_key, 139 params.primary_key = IndexedDBKeyBuilder::Build(primary_key);
|
indexed_db_dispatcher.cc | 184 const IndexedDBKey& primary_key, 194 ipc_cursor_id, CurrentWorkerId(), ipc_callbacks_id, key, primary_key)); 517 const IndexedDBKey& primary_key, 527 WebIDBKeyBuilder::Build(primary_key), 559 const IndexedDBKey& primary_key = p.primary_key; local 572 WebIDBKeyBuilder::Build(primary_key), web_value); 583 const IndexedDBKey& primary_key = p.primary_key; local 597 WebIDBKeyBuilder::Build(primary_key), web_value) [all...] |
indexed_db_dispatcher.h | 90 const IndexedDBKey& primary_key, 202 const IndexedDBKey& primary_key,
|
webidbcursor_impl_unittest.cc | 45 const IndexedDBKey& primary_key,
|
/external/chromium_org/content/common/indexed_db/ |
indexed_db_messages.h | 203 IPC_STRUCT_MEMBER(content::IndexedDBKey, primary_key) 236 IPC_STRUCT_MEMBER(content::IndexedDBKey, primary_key) 245 IPC_STRUCT_MEMBER(content::IndexedDBKey, primary_key) 395 content::IndexedDBKey) /* primary_key */
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
rails.php | 297 'update', 'table_name', 'primary_key', 'sum', 'maximun', 'minimum',
|