Lines Matching refs:input
55 std::string input = kXmlPreamble; in TEST() local
56 input += R"(<attr name="foo"/>)"; in TEST()
57 StringInputStream in(input); in TEST()
77 std::string input = kXmlPreamble; in TestParse() local
78 input += "<resources>\n"; in TestParse()
79 input.append(str.data(), str.size()); in TestParse()
80 input += "\n</resources>"; in TestParse()
81 StringInputStream in(input); in TestParse()
137 ASSERT_TRUE(TestParse(input)); in TEST_F()
204 std::string input = R"(<string name="foo"> <b> My <i> favorite</i> string </b> </string>)"; in TEST_F() local
205 ASSERT_TRUE(TestParse(input)); in TEST_F()
246 std::string input = R"( in TEST_F() local
249 ASSERT_TRUE(TestParse(input)); in TEST_F()
258 std::string input = R"( in TEST_F() local
261 EXPECT_FALSE(TestParse(input)); in TEST_F()
265 std::string input = R"( in TEST_F() local
268 ASSERT_TRUE(TestParse(input)); in TEST_F()
280 std::string input = R"( in TEST_F() local
283 ASSERT_TRUE(TestParse(input)); in TEST_F()
300 std::string input = R"(<integer name="foo">@null</integer>)"; in TEST_F() local
301 ASSERT_TRUE(TestParse(input)); in TEST_F()
315 std::string input = R"(<integer name="foo">@empty</integer>)"; in TEST_F() local
316 ASSERT_TRUE(TestParse(input)); in TEST_F()
325 std::string input = R"( in TEST_F() local
328 ASSERT_TRUE(TestParse(input)); in TEST_F()
343 std::string input = R"( in TEST_F() local
348 ASSERT_TRUE(TestParse(input, watch_config)); in TEST_F()
360 std::string input = R"(<attr name="foo" min="10" max="23" format="integer"/>)"; in TEST_F() local
361 ASSERT_TRUE(TestParse(input)); in TEST_F()
375 std::string input = R"( in TEST_F() local
380 ASSERT_TRUE(TestParse(input)); in TEST_F()
388 std::string input = R"( in TEST_F() local
395 ASSERT_TRUE(TestParse(input)); in TEST_F()
403 std::string input = R"( in TEST_F() local
409 ASSERT_TRUE(TestParse(input)); in TEST_F()
433 std::string input = R"( in TEST_F() local
439 ASSERT_TRUE(TestParse(input)); in TEST_F()
465 std::string input = R"( in TEST_F() local
471 ASSERT_FALSE(TestParse(input)); in TEST_F()
475 std::string input = R"( in TEST_F() local
481 ASSERT_TRUE(TestParse(input)); in TEST_F()
504 std::string input = R"( in TEST_F() local
689 ASSERT_TRUE(TestParse(input)); in TEST_F()
694 std::string input = R"( in TEST_F() local
698 ASSERT_TRUE(TestParse(input)); in TEST_F()
710 std::string input = R"( in TEST_F() local
714 ASSERT_FALSE(TestParse(input)); in TEST_F()
718 std::string input = R"( in TEST_F() local
723 ASSERT_TRUE(TestParse(input)); in TEST_F()
737 std::string input = R"( in TEST_F() local
740 ASSERT_TRUE(TestParse(input)); in TEST_F()
748 std::string input = R"( in TEST_F() local
753 ASSERT_TRUE(TestParse(input)); in TEST_F()
761 std::string input = R"( in TEST_F() local
767 ASSERT_TRUE(TestParse(input)); in TEST_F()
777 std::string input = R"( in TEST_F() local
787 ASSERT_TRUE(TestParse(input)); in TEST_F()
807 std::string input = R"( in TEST_F() local
814 ASSERT_TRUE(TestParse(input)); in TEST_F()
825 std::string input = R"( in TEST_F() local
830 ASSERT_TRUE(TestParse(input)); in TEST_F()
856 std::string input = R"( in TEST_F() local
863 ASSERT_TRUE(TestParse(input)); in TEST_F()
917 std::string input = R"( in TEST_F() local
921 ASSERT_TRUE(TestParse(input)); in TEST_F()
932 std::string input = R"( in TEST_F() local
935 ASSERT_TRUE(TestParse(input)); in TEST_F()
948 std::string input = R"( in TEST_F() local
987 std::string input = R"( in TEST_F() local
1014 ASSERT_TRUE(TestParse(input)); in TEST_F()
1082 std::string input = R"( in TEST_F() local
1086 EXPECT_FALSE(TestParse(input)); in TEST_F()
1088 input = R"( in TEST_F()
1094 EXPECT_FALSE(TestParse(input)); in TEST_F()
1098 std::string input = R"( in TEST_F() local
1104 EXPECT_FALSE(TestParse(input)); in TEST_F()
1106 input = R"( in TEST_F()
1112 EXPECT_FALSE(TestParse(input)); in TEST_F()
1114 input = R"( in TEST_F()
1120 EXPECT_FALSE(TestParse(input)); in TEST_F()
1124 std::string input = R"( in TEST_F() local
1133 ASSERT_TRUE(TestParse(input)); in TEST_F()
1155 std::string input = R"( in TEST_F() local
1160 EXPECT_FALSE(TestParse(input)); in TEST_F()
1162 input = R"( in TEST_F()
1169 EXPECT_FALSE(TestParse(input)); in TEST_F()
1171 input = R"( in TEST_F()
1178 EXPECT_FALSE(TestParse(input)); in TEST_F()
1180 input = R"( in TEST_F()
1268 ASSERT_FALSE(TestParse(input)); in TEST_F()
1271 input = R"(<item name="foo4" type="id">0x7f010001</item>)"; in TEST_F()
1272 ASSERT_FALSE(TestParse(input)); in TEST_F()
1273 input = R"(<item name="foo5" type="id">@drawable/my_image</item>)"; in TEST_F()
1274 ASSERT_FALSE(TestParse(input)); in TEST_F()
1275 input = R"(<item name="foo6" type="id"><string name="biz"></string></item>)"; in TEST_F()
1276 ASSERT_FALSE(TestParse(input)); in TEST_F()
1279 input = R"(<public name="foo7" type="id">@id/bar7</item>)"; in TEST_F()
1280 ASSERT_FALSE(TestParse(input)); in TEST_F()
1285 std::string input = R"(<string name="foo">Hello<![CDATA[ "</string>' ]]> World</string>)"; local