Home | History | Annotate | Download | only in indexeddb

Lines Matching refs:keyPath

40 void checkKeyPath(const String& keyPath, const Vector<String>& expected, int parserError)
42 IDBKeyPath idbKeyPath(keyPath);
48 IDBParseKeyPath(keyPath, keyPathElements, error);
60 String keyPath("");
61 checkKeyPath(keyPath, expected, 0);
67 String keyPath("foo");
69 checkKeyPath(keyPath, expected, 0);
75 String keyPath("foo.bar.baz");
79 checkKeyPath(keyPath, expected, 0);
85 String keyPath(" ");
86 checkKeyPath(keyPath, expected, 1);
92 String keyPath("+foo.bar.baz");
93 checkKeyPath(keyPath, expected, 1);
99 String keyPath("foo bar baz");
101 checkKeyPath(keyPath, expected, 2);
107 String keyPath("foo .bar .baz");
109 checkKeyPath(keyPath, expected, 2);
115 String keyPath("foo. bar. baz");
117 checkKeyPath(keyPath, expected, 3);
123 String keyPath("foo..bar..baz");
125 checkKeyPath(keyPath, expected, 3);