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 61 ScriptValue IDBIndex::keyPath(ExecutionContext* context) const
64 return idbAnyToScriptValue(&requestState, IDBAny::create(m_metadata.keyPath));
IDBAny.cpp 113 const IDBKeyPath& IDBAny::keyPath() const
186 IDBAny::IDBAny(PassRefPtr<SharedBuffer> value, PassRefPtr<IDBKey> key, const IDBKeyPath& keyPath)
189 , 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 129 const IDBKeyPath& keyPath = objectStore->metadata().keyPath;
130 const bool usesInLineKeys = !keyPath.isNull();
132 RefPtr<IDBKey> keyPathKey = createIDBKeyFromScriptValueAndKeyPath(m_request->requestState(), value, keyPath);
334 if (metadata.autoIncrement && !metadata.keyPath.isNull()) {
335 value = IDBAny::create(m_value, m_primaryKey, metadata.keyPath);
337 assertPrimaryKeyValidOrInjectable(&requestState, m_value, m_primaryKey, metadata.keyPath);
IDBDatabase.cpp 174 IDBKeyPath keyPath;
179 if (options.get("keyPath", keyPathArray))
180 keyPath = IDBKeyPath(keyPathArray);
181 else if (options.getWithUndefinedOrNullCheck("keyPath", keyPathString))
182 keyPath = IDBKeyPath(keyPathString);
187 return createObjectStore(name, keyPath, autoIncrement, exceptionState);
190 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionState& exceptionState)
212 if (!keyPath.isNull() && !keyPath.isValid()) {
213 exceptionState.throwDOMException(SyntaxError, "The keyPath option is not a valid key path.")
    [all...]
IDBObjectStore.cpp 63 ScriptValue IDBObjectStore::keyPath(ExecutionContext* context) const
66 return idbAnyToScriptValue(&requestState, IDBAny::create(m_metadata.keyPath));
110 RefPtr<IDBKey> indexKey = createIDBKeyFromScriptValueAndKeyPath(requestState, objectValue, indexMetadata.keyPath);
182 const IDBKeyPath& keyPath = m_metadata.keyPath;
183 const bool usesInLineKeys = !keyPath.isNull();
198 RefPtr<IDBKey> keyPathKey = createIDBKeyFromScriptValueAndKeyPath(&requestState, value, keyPath);
208 if (!canInjectIDBKeyIntoScriptValue(&requestState, value, keyPath)) {
366 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(ExecutionContext* context, const String& name, const IDBKeyPath& keyPath, const Dictionary& options, ExceptionState& exceptionState)
374 return createIndex(context, name, keyPath, unique, multiEntry, exceptionState)
    [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;
227 static PassRefPtr<KeyPath> keyPathFromIDBKeyPath(const IDBKeyPath& idbKeyPath)
229 RefPtr<KeyPath> keyPath;
232 keyPath = KeyPath::create().setType(KeyPath::Type::Null);
235 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 329 milliseconds