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

  /external/chromium_org/content/test/data/indexeddb/
key_path_test.js 12 shouldBe("event.target.result.value.keyPath", "'myKey' + count");
32 obj = {'keyPath': 'myKey' + count, 'value': 'myValue' + count};
47 window.objectStore = db.createObjectStore('test', {keyPath: 'keyPath'});
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBIndex.cpp 69 ScriptValue IDBIndex::keyPath(ScriptState* scriptState) const
71 return idbAnyToScriptValue(scriptState, IDBAny::create(m_metadata.keyPath));
IDBAny.cpp 119 const IDBKeyPath& IDBAny::keyPath() const
199 IDBAny::IDBAny(PassRefPtr<SharedBuffer> value, const Vector<blink::WebBlobInfo>* blobInfo, IDBKey* key, const IDBKeyPath& keyPath)
202 , m_idbKeyPath(keyPath)
IDBMetadata.h 41 IDBIndexMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool unique, bool multiEntry)
44 , keyPath(keyPath)
49 IDBKeyPath keyPath;
58 IDBObjectStoreMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool autoIncrement, int64_t maxIndexId)
61 , keyPath(keyPath)
68 IDBKeyPath keyPath;
IDBCursor.cpp 142 const IDBKeyPath& keyPath = objectStore->metadata().keyPath;
143 const bool usesInLineKeys = !keyPath.isNull();
145 IDBKey* keyPathKey = createIDBKeyFromScriptValueAndKeyPath(scriptState->isolate(), value, keyPath);
331 if (metadata.autoIncrement && !metadata.keyPath.isNull()) {
332 value = IDBAny::create(m_value, m_blobInfo.get(), m_primaryKey, metadata.keyPath);
334 assertPrimaryKeyValidOrInjectable(scriptState, m_value, m_blobInfo.get(), m_primaryKey, metadata.keyPath);
IDBDatabase.cpp 201 IDBKeyPath keyPath;
206 if (options.get("keyPath", keyPathArray))
207 keyPath = IDBKeyPath(keyPathArray);
208 else if (options.getWithUndefinedOrNullCheck("keyPath", keyPathString))
209 keyPath = IDBKeyPath(keyPathString);
214 return createObjectStore(name, keyPath, autoIncrement, exceptionState);
217 IDBObjectStore* IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionState& exceptionState)
239 if (!keyPath.isNull() && !keyPath.isValid()) {
240 exceptionState.throwDOMException(SyntaxError, "The keyPath option is not a valid key path.")
    [all...]
IDBObjectStore.cpp 73 ScriptValue IDBObjectStore::keyPath(ScriptState* scriptState) const
75 return idbAnyToScriptValue(scriptState, IDBAny::create(m_metadata.keyPath));
123 IDBKey* indexKey = createIDBKeyFromScriptValueAndKeyPath(isolate, objectValue, indexMetadata.keyPath);
185 const IDBKeyPath& keyPath = m_metadata.keyPath;
186 const bool usesInLineKeys = !keyPath.isNull();
198 IDBKey* keyPathKey = createIDBKeyFromScriptValueAndKeyPath(scriptState->isolate(), value, keyPath);
208 if (!canInjectIDBKeyIntoScriptValue(scriptState->isolate(), value, keyPath)) {
386 IDBIndex* IDBObjectStore::createIndex(ScriptState* scriptState, const String& name, const IDBKeyPath& keyPath, const Dictionary& options, ExceptionState& exceptionState)
394 return createIndex(scriptState, name, keyPath, unique, multiEntry, exceptionState)
    [all...]
InspectorIndexedDBAgent.cpp 70 using WebCore::TypeBuilder::IndexedDB::KeyPath;
230 static PassRefPtr<KeyPath> keyPathFromIDBKeyPath(const IDBKeyPath& idbKeyPath)
232 RefPtr<KeyPath> keyPath;
235 keyPath = KeyPath::create().setType(KeyPath::Type::Null);
238 keyPath = KeyPath::create().setType(KeyPath::Type::String)
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBMetadata.h 61 WebIDBKeyPath keyPath;
67 : keyPath(WebIDBKeyPath::createNull())
73 WebIDBKeyPath keyPath;
78 : keyPath(WebIDBKeyPath::createNull())
  /external/chromium_org/third_party/icu/source/common/
usprep.cpp 362 LocalMemory<char> keyPath;
366 keyPath.allocateInsteadAndCopy(uprv_strlen(path)+1) == NULL)
385 key->path = keyPath.orphan();
uresbund.c 843 char *chAlias = NULL, *path = NULL, *locale = NULL, *keyPath = NULL;
895 keyPath = locale;
902 keyPath = uprv_strchr(locale, RES_PATH_SEPARATOR);
903 if(keyPath) {
904 *keyPath = 0;
905 keyPath++;
911 keyPath = uprv_strchr(locale, RES_PATH_SEPARATOR);
912 if(keyPath) {
913 *keyPath = 0;
914 keyPath++
    [all...]
  /external/icu/icu4c/source/common/
usprep.cpp 353 LocalMemory<char> keyPath;
357 keyPath.allocateInsteadAndCopy(uprv_strlen(path)+1) == NULL)
376 key->path = keyPath.orphan();
uresbund.cpp 844 char *chAlias = NULL, *path = NULL, *locale = NULL, *keyPath = NULL;
896 keyPath = locale;
903 keyPath = uprv_strchr(locale, RES_PATH_SEPARATOR);
904 if(keyPath) {
905 *keyPath = 0;
906 keyPath++;
912 keyPath = uprv_strchr(locale, RES_PATH_SEPARATOR);
913 if(keyPath) {
914 *keyPath = 0;
915 keyPath++
    [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 630 milliseconds