Lines Matching refs:inner2
674 DictionaryValue* inner2 = new DictionaryValue;
675 root->Set("dict_with_empty_children", inner2);
676 inner2->Set("empty_dict", new DictionaryValue);
677 inner2->Set("empty_list", new ListValue);
686 ListValue* inner2 = new ListValue;
688 inner->Append(inner2);
689 inner2->Append(new StringValue("hello"));
694 EXPECT_TRUE(inner->GetList(0, &inner2));
695 EXPECT_EQ(1U, inner2->GetSize());