Home
last modified time | relevance | path

Searched defs:keyPath (Results 1 – 25 of 32) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DIDBKeyPathTest.cpp40 void checkKeyPath(const String& keyPath, const Vector<String>& expected, int parserError) in checkKeyPath()
60 String keyPath(""); in TEST() local
67 String keyPath("foo"); in TEST() local
75 String keyPath("foo.bar.baz"); in TEST() local
85 String keyPath(" "); in TEST() local
92 String keyPath("+foo.bar.baz"); in TEST() local
99 String keyPath("foo bar baz"); in TEST() local
107 String keyPath("foo .bar .baz"); in TEST() local
115 String keyPath("foo. bar. baz"); in TEST() local
123 String keyPath("foo..bar..baz"); in TEST() local
DIDBObjectStore.h77 …IDBIndex* createIndex(ScriptState* scriptState, const String& name, const String& keyPath, const D… in createIndex()
81 …ex* createIndex(ScriptState* scriptState, const String& name, const Vector<String>& keyPath, const… in createIndex()
DIDBAny.cpp119 const IDBKeyPath& IDBAny::keyPath() const in keyPath() function in WebCore::IDBAny
199 …dBuffer> value, const Vector<blink::WebBlobInfo>* blobInfo, IDBKey* key, const IDBKeyPath& keyPath) in IDBAny()
DIDBKeyPath.cpp125 bool IDBIsValidKeyPath(const String& keyPath) in IDBIsValidKeyPath()
133 void IDBParseKeyPath(const String& keyPath, Vector<String>& elements, IDBKeyPathParseError& error) in IDBParseKeyPath()
DIDBMetadata.h49 IDBKeyPath keyPath; member
68 IDBKeyPath keyPath; member
DIDBObjectStore.cpp73 ScriptValue IDBObjectStore::keyPath(ScriptState* scriptState) const in keyPath() function in WebCore::IDBObjectStore
185 const IDBKeyPath& keyPath = m_metadata.keyPath; in put() local
386 …tore::createIndex(ScriptState* scriptState, const String& name, const IDBKeyPath& keyPath, const D… in createIndex()
397 …tore::createIndex(ScriptState* scriptState, const String& name, const IDBKeyPath& keyPath, bool un… in createIndex()
DIDBDatabase.cpp201 IDBKeyPath keyPath; in createObjectStore() local
217 IDBObjectStore* IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool … in createObjectStore()
DWebIDBCallbacksImpl.cpp112 …lue, const WebVector<WebBlobInfo>& webBlobInfo, const WebIDBKey& key, const WebIDBKeyPath& keyPath) in onSuccess()
DIDBIndex.cpp69 ScriptValue IDBIndex::keyPath(ScriptState* scriptState) const in keyPath() function in WebCore::IDBIndex
DIDBAny.h83 …dBuffer> value, const Vector<blink::WebBlobInfo>* blobInfo, IDBKey* key, const IDBKeyPath& keyPath) in create()
/external/chromium_org/third_party/WebKit/Source/web/
DWebIDBKeyPath.cpp38 WebIDBKeyPath WebIDBKeyPath::create(const WebString& keyPath) in create()
43 WebIDBKeyPath WebIDBKeyPath::create(const WebVector<WebString>& keyPath) in create()
56 void WebIDBKeyPath::assign(const WebIDBKeyPath& keyPath) in assign()
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DIDBBindingUtilitiesTest.cpp39 …yFromValueAndKeyPathInternal(v8::Isolate* isolate, const ScriptValue& value, const String& keyPath) in checkKeyFromValueAndKeyPathInternal()
47 void checkKeyPathNullValue(v8::Isolate* isolate, const ScriptValue& value, const String& keyPath) in checkKeyPathNullValue()
52 bool injectKey(ScriptState* scriptState, IDBKey* key, ScriptValue& value, const String& keyPath) in injectKey()
60 …id checkInjection(ScriptState* scriptState, IDBKey* key, ScriptValue& value, const String& keyPath) in checkInjection()
68 …eckInjectionFails(ScriptState* scriptState, IDBKey* key, ScriptValue& value, const String& keyPath) in checkInjectionFails()
73 void checkKeyPathStringValue(v8::Isolate* isolate, const ScriptValue& value, const String& keyPath,… in checkKeyPathStringValue()
81 void checkKeyPathNumberValue(v8::Isolate* isolate, const ScriptValue& value, const String& keyPath,… in checkKeyPathNumberValue()
DIDBBindingUtilities.cpp307 …ndKeyPathInternal(v8::Isolate* isolate, const ScriptValue& value, const String& keyPath, bool allo… in createIDBKeyFromScriptValueAndKeyPathInternal()
323 …KeyPathInternal(v8::Isolate* isolate, const ScriptValue& value, const IDBKeyPath& keyPath, bool al… in createIDBKeyFromScriptValueAndKeyPathInternal()
343 …romScriptValueAndKeyPath(v8::Isolate* isolate, const ScriptValue& value, const IDBKeyPath& keyPath) in createIDBKeyFromScriptValueAndKeyPath()
362 …solate* isolate, v8::Handle<v8::Value> key, v8::Handle<v8::Value> value, const IDBKeyPath& keyPath) in injectV8KeyIntoV8Value()
387 …KeyIntoScriptValue(v8::Isolate* isolate, const ScriptValue& scriptValue, const IDBKeyPath& keyPath) in canInjectIDBKeyIntoScriptValue()
435 …Buffer> buffer, const Vector<blink::WebBlobInfo>* blobInfo, IDBKey* key, const IDBKeyPath& keyPath) in assertPrimaryKeyValidOrInjectable()
/external/chromium_org/content/test/data/indexeddb/
Dkey_path_test.js32 obj = {'keyPath': 'myKey' + count, 'value': 'myValue' + count}; property
47 window.objectStore = db.createObjectStore('test', {keyPath: 'keyPath'}); property
Dbug_90635.js30 db.createObjectStore('store2', {keyPath: ''}); property
31 db.createObjectStore('store3', {keyPath: 'some_path'}); property
Ddatabase_test.js13 window.objectStore = db.createObjectStore('employees', {keyPath: 'id'}); property
Dtransaction_test.js67 db.createObjectStore('employees', {keyPath: 'id'}); property
Dobject_store_test.js95 window.objectStore = db.createObjectStore('employees', {keyPath: 'id'}); property
/external/chromium_org/third_party/WebKit/public/platform/
DWebIDBKeyPath.h45 WebIDBKeyPath(const WebIDBKeyPath& keyPath) { assign(keyPath); } in WebIDBKeyPath()
DWebIDBMetadata.h61 WebIDBKeyPath keyPath; member
73 WebIDBKeyPath keyPath; member
/external/chromium_org/tools/perf/page_sets/endure/
Dindexeddb_app.js68 'sync-chunks', {keyPath: 'sequence', autoIncrement: true}); property
72 'docs', {keyPath: 'docid'}); property
77 'user-events', {keyPath: 'sequence', autoIncrement: true}); property
/external/chromium_org/ui/file_manager/image_loader/
Dcache.js93 db.createObjectStore('metadata', {keyPath: 'key'}); property
94 db.createObjectStore('data', {keyPath: 'key'}); property
95 db.createObjectStore('settings', {keyPath: 'key'}); property
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DIndexedDBModel.js121 WebInspector.IndexedDBModel.idbKeyPathFromKeyPath = function(keyPath) argument
465 WebInspector.IndexedDBModel.ObjectStore = function(name, keyPath, autoIncrement) argument
490 WebInspector.IndexedDBModel.Index = function(name, keyPath, unique, multiEntry) argument
/external/clang/lib/Driver/
DWindowsToolChain.cpp89 static bool getSystemRegistryString(const char *keyPath, const char *valueName, in getSystemRegistryString()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DIndexedDBViews.js163 _keyColumnHeaderFragment: function(prefix, keyPath) argument

12