Home | History | Annotate | Download | only in front_end

Lines Matching refs:keyPath

109  * @param {IndexedDBAgent.KeyPath} keyPath
111 WebInspector.IndexedDBModel.idbKeyPathFromKeyPath = function(keyPath)
114 switch (keyPath.type) {
119 idbKeyPath = keyPath.string;
122 idbKeyPath = keyPath.array;
307 var objectStoreIDBKeyPath = WebInspector.IndexedDBModel.idbKeyPathFromKeyPath(objectStore.keyPath);
311 var indexIDBKeyPath = WebInspector.IndexedDBModel.idbKeyPathFromKeyPath(index.keyPath);
443 * @param {*} keyPath
445 WebInspector.IndexedDBModel.ObjectStore = function(name, keyPath, autoIncrement)
448 this.keyPath = keyPath;
459 keyPath);
466 * @param {*} keyPath
468 WebInspector.IndexedDBModel.Index = function(name, keyPath, unique, multiEntry)
471 this.keyPath = keyPath;
482 return WebInspector.IndexedDBModel.keyPathStringFromIDBKeyPath(this.keyPath);