OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:keyPathElements
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
IDBBindingUtilities.cpp
155
static v8::Handle<v8::Value> getNthValueOnKeyPath(v8::Handle<v8::Value>& rootValue, const Vector<String>&
keyPathElements
, size_t index, v8::Isolate* isolate)
158
ASSERT(index <=
keyPathElements
.size());
161
if (!get(parentValue,
keyPathElements
[i], currentValue, isolate))
168
static bool canInjectNthValueOnKeyPath(v8::Handle<v8::Value>& rootValue, const Vector<String>&
keyPathElements
, size_t index, v8::Isolate* isolate)
175
ASSERT(index <=
keyPathElements
.size());
178
const String& keyPathElement =
keyPathElements
[i];
186
static v8::Handle<v8::Value> ensureNthValueOnKeyPath(v8::Handle<v8::Value>& rootValue, const Vector<String>&
keyPathElements
, size_t index, v8::Isolate* isolate)
190
ASSERT(index <=
keyPathElements
.size());
193
const String& keyPathElement =
keyPathElements
[i];
207
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
127
Vector<String>
keyPathElements
;
128
IDBParseKeyPath(keyPath,
keyPathElements
, error);
Completed in 1599 milliseconds