HomeSort by relevance Sort by last modified time
    Searched defs:keyPath (Results 1 - 17 of 17) 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.h 56 PassRefPtr<IDBAny> keyPathAny() const { return IDBAny::create(m_metadata.keyPath); }
57 const IDBKeyPath keyPath() const { return m_metadata.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;
IDBObjectStore.h 61 PassRefPtr<IDBAny> keyPathAny() const { return IDBAny::create(m_metadata.keyPath); }
62 const IDBKeyPath keyPath() const { return m_metadata.keyPath; }
77 PassRefPtr<IDBIndex> createIndex(ScriptExecutionContext* context, const String& name, const String& keyPath, const Dictionary& options, ExceptionState& es) { return createIndex(context, name, IDBKeyPath(keyPath), options, es); }
78 PassRefPtr<IDBIndex> createIndex(ScriptExecutionContext* context, const String& name, const Vector<String>& keyPath, const Dictionary& options, ExceptionState& es) { return createIndex(context, name, IDBKeyPath(keyPath), options, es); }
IDBAny.h 105 const IDBKeyPath& keyPath() { return m_idbKeyPath; };
IDBCursor.cpp 126 const IDBKeyPath& keyPath = objectStore->metadata().keyPath;
127 const bool usesInLineKeys = !keyPath.isNull();
129 RefPtr<IDBKey> keyPathKey = createIDBKeyFromScriptValueAndKeyPath(m_request->requestState(), value, keyPath);
292 if (metadata.autoIncrement && !metadata.keyPath.isNull()) {
294 RefPtr<IDBKey> expectedKey = createIDBKeyFromScriptValueAndKeyPath(m_request->requestState(), value, metadata.keyPath);
297 bool injected = injectIDBKeyIntoScriptValue(m_request->requestState(), m_currentPrimaryKey, value, metadata.keyPath);
IDBDatabase.cpp 170 IDBKeyPath keyPath;
175 if (options.get("keyPath", keyPathArray))
176 keyPath = IDBKeyPath(keyPathArray);
177 else if (options.getWithUndefinedOrNullCheck("keyPath", keyPathString))
178 keyPath = IDBKeyPath(keyPathString);
183 return createObjectStore(name, keyPath, autoIncrement, es);
186 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionState& es)
208 if (!keyPath.isNull() && !keyPath.isValid()) {
209 es.throwDOMException(SyntaxError, "The keyPath option is not a valid key path.")
    [all...]
IDBObjectStore.cpp 108 RefPtr<IDBKey> indexKey = createIDBKeyFromScriptValueAndKeyPath(requestState, objectValue, indexMetadata.keyPath);
180 const IDBKeyPath& keyPath = m_metadata.keyPath;
181 const bool usesInLineKeys = !keyPath.isNull();
196 RefPtr<IDBKey> keyPathKey = createIDBKeyFromScriptValueAndKeyPath(&requestState, value, keyPath);
206 if (!canInjectIDBKeyIntoScriptValue(&requestState, value, keyPath)) {
368 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(ScriptExecutionContext* context, const String& name, const IDBKeyPath& keyPath, const Dictionary& options, ExceptionState& es)
376 return createIndex(context, name, keyPath, unique, multiEntry, es);
379 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(ScriptExecutionContext* context, const String& name, const IDBKeyPath& keyPath, bool unique, bool multiEntry, ExceptionState& es)
398 if (!keyPath.isValid())
    [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/icu4c/common/
usprep.cpp 359 LocalMemory<char> keyPath;
363 keyPath.allocateInsteadAndCopy(uprv_strlen(path)+1) == NULL)
382 key->path = keyPath.orphan();
uresbund.cpp 854 char *chAlias = NULL, *path = NULL, *locale = NULL, *keyPath = NULL;
906 keyPath = locale;
913 keyPath = uprv_strchr(locale, RES_PATH_SEPARATOR);
914 if(keyPath) {
915 *keyPath = 0;
916 keyPath++;
922 keyPath = uprv_strchr(locale, RES_PATH_SEPARATOR);
923 if(keyPath) {
924 *keyPath = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp 68 using WebCore::TypeBuilder::IndexedDB::KeyPath;
237 static PassRefPtr<KeyPath> keyPathFromIDBKeyPath(const IDBKeyPath& idbKeyPath)
239 RefPtr<KeyPath> keyPath;
242 keyPath = KeyPath::create().setType(KeyPath::Type::Null);
245 keyPath = KeyPath::create().setType(KeyPath::Type::String)
    [all...]
  /prebuilts/tools/common/m2/internal/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 403 milliseconds