HomeSort by relevance Sort by last modified time
    Searched refs:keyPathElements (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
IDBBindingUtilities.cpp 257 static v8::Handle<v8::Value> getNthValueOnKeyPath(v8::Isolate* isolate, v8::Handle<v8::Value>& rootValue, const Vector<String>& keyPathElements, size_t index)
260 ASSERT(index <= keyPathElements.size());
263 if (!get(isolate, parentValue, keyPathElements[i], currentValue))
270 static bool canInjectNthValueOnKeyPath(v8::Isolate* isolate, v8::Handle<v8::Value>& rootValue, const Vector<String>& keyPathElements, size_t index)
277 ASSERT(index <= keyPathElements.size());
280 const String& keyPathElement = keyPathElements[i];
288 static v8::Handle<v8::Value> ensureNthValueOnKeyPath(v8::Isolate* isolate, v8::Handle<v8::Value>& rootValue, const Vector<String>& keyPathElements, size_t index)
292 ASSERT(index <= keyPathElements.size());
295 const String& keyPathElement = keyPathElements[i];
309 Vector<String> keyPathElements;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyPathTest.cpp 47 Vector<String> keyPathElements;
48 IDBParseKeyPath(keyPath, keyPathElements, error);
52 ASSERT_EQ(expected.size(), keyPathElements.size());
54 ASSERT_TRUE(expected[i] == keyPathElements[i]) << i;
IDBKeyPath.cpp 128 Vector<String> keyPathElements;
129 IDBParseKeyPath(keyPath, keyPathElements, error);

Completed in 122 milliseconds