Home
last modified time | relevance | path

Searched refs:idbKeyPath (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DIndexedDBModel.js113 var idbKeyPath;
116 idbKeyPath = null;
119 idbKeyPath = keyPath.string;
122 idbKeyPath = keyPath.array;
125 return idbKeyPath;
128 WebInspector.IndexedDBModel.keyPathStringFromIDBKeyPath = function(idbKeyPath) argument
130 if (typeof idbKeyPath === "string")
131 return "\"" + idbKeyPath + "\"";
132 if (idbKeyPath instanceof Array)
133 return "[\"" + idbKeyPath.join("\", \"") + "\"]";
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DIDBBindingUtilitiesTest.cpp43 IDBKeyPath idbKeyPath(keyPath); in checkKeyFromValueAndKeyPathInternal() local
44 EXPECT_TRUE(idbKeyPath.isValid()); in checkKeyFromValueAndKeyPathInternal()
46 return createIDBKeyFromScriptValueAndKeyPath(0, value, idbKeyPath); in checkKeyFromValueAndKeyPathInternal()
57 IDBKeyPath idbKeyPath(keyPath); in injectKey() local
58 EXPECT_TRUE(idbKeyPath.isValid()); in injectKey()
60 …return injectV8KeyIntoV8Value(keyValue.v8Value(), value.v8Value(), idbKeyPath, v8::Isolate::GetCur… in injectKey()
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DIDBKeyPathTest.cpp42 IDBKeyPath idbKeyPath(keyPath); in checkKeyPath() local
43 ASSERT_EQ(idbKeyPath.type(), IDBKeyPath::StringType); in checkKeyPath()
44 ASSERT_EQ(idbKeyPath.isValid(), (parserError == IDBKeyPathParseErrorNone)); in checkKeyPath()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorIndexedDBAgent.cpp227 static PassRefPtr<KeyPath> keyPathFromIDBKeyPath(const IDBKeyPath& idbKeyPath) in keyPathFromIDBKeyPath() argument
230 switch (idbKeyPath.type()) { in keyPathFromIDBKeyPath()
236 keyPath->setString(idbKeyPath.string()); in keyPathFromIDBKeyPath()
241 const Vector<String>& stringArray = idbKeyPath.array(); in keyPathFromIDBKeyPath()