OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IDBObjectStoreMetadata
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBMetadata.h
56
struct
IDBObjectStoreMetadata
{
57
IDBObjectStoreMetadata
() { }
58
IDBObjectStoreMetadata
(const String& name, int64_t id, const IDBKeyPath& keyPath, bool autoIncrement, int64_t maxIndexId)
85
typedef HashMap<int64_t,
IDBObjectStoreMetadata
> ObjectStoreMap;
IDBObjectStore.h
53
static PassRefPtr<IDBObjectStore> create(const
IDBObjectStoreMetadata
& metadata, IDBTransaction* transaction)
92
const
IDBObjectStoreMetadata
& metadata() const { return m_metadata; }
93
void setMetadata(const
IDBObjectStoreMetadata
& metadata) { m_metadata = metadata; }
101
IDBObjectStore(const
IDBObjectStoreMetadata
&, IDBTransaction*);
113
IDBObjectStoreMetadata
m_metadata;
IDBTransaction.h
50
struct
IDBObjectStoreMetadata
;
137
typedef HashMap<RefPtr<IDBObjectStore>,
IDBObjectStoreMetadata
> IDBObjectStoreMetadataMap;
IDBDatabase.cpp
225
IDBObjectStoreMetadata
metadata(name, objectStoreId, keyPath, autoIncrement, WebIDBDatabase::minimumIndexId);
252
if (objectStoreId ==
IDBObjectStoreMetadata
::InvalidId) {
288
if (objectStoreId ==
IDBObjectStoreMetadata
::InvalidId) {
389
ASSERT(it->key !=
IDBObjectStoreMetadata
::InvalidId);
393
return
IDBObjectStoreMetadata
::InvalidId;
IDBDatabase.h
108
return findObjectStoreId(name) !=
IDBObjectStoreMetadata
::InvalidId;
IDBObjectStore.cpp
52
IDBObjectStore::IDBObjectStore(const
IDBObjectStoreMetadata
& metadata, IDBTransaction* transaction)
73
for (
IDBObjectStoreMetadata
::IndexMap::const_iterator it = m_metadata.indexes.begin(); it != m_metadata.indexes.end(); ++it)
223
for (
IDBObjectStoreMetadata
::IndexMap::const_iterator it = m_metadata.indexes.begin(); it != m_metadata.indexes.end(); ++it) {
462
for (
IDBObjectStoreMetadata
::IndexMap::const_iterator it = m_metadata.indexes.begin(); it != m_metadata.indexes.end(); ++it) {
614
for (
IDBObjectStoreMetadata
::IndexMap::const_iterator it = m_metadata.indexes.begin(); it != m_metadata.indexes.end(); ++it) {
IDBTransaction.cpp
142
if (objectStoreId ==
IDBObjectStoreMetadata
::InvalidId) {
IDBCursor.cpp
332
const
IDBObjectStoreMetadata
& metadata = objectStore->metadata();
/external/chromium_org/third_party/WebKit/Source/web/
WebIDBMetadata.cpp
48
const
IDBObjectStoreMetadata
& objectStore = storeIterator->value;
58
for (
IDBObjectStoreMetadata
::IndexMap::const_iterator indexIterator = objectStore.indexes.begin(); indexIterator != objectStore.indexes.end(); ++indexIterator) {
77
IDBObjectStoreMetadata
objectStore(webObjectStore.name, webObjectStore.id, webObjectStore.keyPath, webObjectStore.autoIncrement, webObjectStore.maxIndexId);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp
274
const
IDBObjectStoreMetadata
& objectStoreMetadata = it->value;
278
for (
IDBObjectStoreMetadata
::IndexMap::const_iterator it = objectStoreMetadata.indexes.begin(); it != objectStoreMetadata.indexes.end(); ++it) {
Completed in 38 milliseconds