Lines Matching refs:Key
31 Key("hello", 5, true)
33 Key("t", 1, true)
35 Key("f", 1, true)
37 Key("n", 1, true)
39 Key("i")
41 Key("pi")
43 Key("a")
75 bool Key(const char* str, SizeType length, bool copy) {
76 cout << "Key(" << str << ", " << length << ", " << boolalpha << copy << ")" << endl;
111 bool Key(const Ch* str, SizeType length, bool copy);
126 … a set of name-value pairs. If the object contains members it first calls `Key()` for the name of …
197 writer.Key("hello");
199 writer.Key("t");
201 writer.Key("f");
203 writer.Key("n");
205 writer.Key("i");
207 writer.Key("pi");
209 writer.Key("a");
224 There are two `String()` and `Key()` overloads. One is the same as defined in handler concept with …
429 bool Key(const char* str, SizeType length, bool copy) { return String(str, length, copy); }