Home | History | Annotate | Download | only in common

Lines Matching refs:root

23   scoped_ptr<Value> root(serializer.Deserialize(NULL, NULL));
24 ASSERT_TRUE(root.get());
25 ASSERT_TRUE(root->IsType(Value::TYPE_DICTIONARY));
27 DictionaryValue* root_dict = static_cast<DictionaryValue*>(root.get());
123 DictionaryValue root;
125 root.SetString("web", test);
131 ASSERT_TRUE(serializer.Serialize(root));
147 DictionaryValue root;
149 root.SetString("test", test);
155 ASSERT_TRUE(serializer.Serialize(root));
179 scoped_ptr<Value> root;
187 root.reset(serializer.Deserialize(NULL, NULL));
188 ASSERT_TRUE(root.get());
191 ASSERT_TRUE(root->Equals(root_expected.get()));
197 scoped_ptr<Value> root(base::JSONReader::Read(json, false));
198 ASSERT_TRUE(root.get() && root->IsType(Value::TYPE_LIST));
199 ListValue* list = static_cast<ListValue*>(root.get());
218 scoped_ptr<Value> root;
221 root.reset(base::JSONReader::Read("[\"// ok\\n /* foo */ \"]", false));
222 ASSERT_TRUE(root.get() && root->IsType(Value::TYPE_LIST));
223 ListValue* list = static_cast<ListValue*>(root.get());
232 root.reset(base::JSONReader::Read("/* /* inner */ outer */ [ 1 ]", false));
233 ASSERT_FALSE(root.get());
236 root.reset(base::JSONReader::Read("/ * * / [1]", false));
237 ASSERT_FALSE(root.get());
259 scoped_ptr<Value> root;
260 root.reset(deserializer.Deserialize(NULL, NULL));
262 ASSERT_TRUE(root.get());
263 ASSERT_TRUE(root->IsType(Value::TYPE_DICTIONARY));
265 DictionaryValue* root_dict = static_cast<DictionaryValue*>(root.get());
290 ASSERT_TRUE(serializer.Serialize(*root));
309 scoped_ptr<Value> root;
310 root.reset(deserializer.Deserialize(NULL, NULL));
311 ASSERT_TRUE(root.get());
319 ASSERT_TRUE(serializer.Serialize(*root));
335 scoped_ptr<Value> root;
336 root.reset(serializer.Deserialize(NULL, NULL));
337 ASSERT_TRUE(root.get());