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()
340 std::string input = R"(<macro name="foo">12345</macro>)"; in TEST_F() local
341 ASSERT_TRUE(TestParse(input)); in TEST_F()
353 std::string input = R"(<macro name="foo" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> in TEST_F() local
355 ASSERT_TRUE(TestParse(input)); in TEST_F()
372 std::string input = R"(<macro name="foo" xmlns:app="http://schemas.android.com/apk/res/android"> in TEST_F() local
773 ASSERT_TRUE(TestParse(input)); in TEST_F()
778 std::string input = R"( in TEST_F() local
782 ASSERT_TRUE(TestParse(input)); in TEST_F()
794 std::string input = R"( in TEST_F() local
798 ASSERT_FALSE(TestParse(input)); in TEST_F()
802 std::string input = R"( in TEST_F() local
807 ASSERT_TRUE(TestParse(input)); in TEST_F()
821 std::string input = R"( in TEST_F() local
824 ASSERT_TRUE(TestParse(input)); in TEST_F()
832 std::string input = R"( in TEST_F() local
837 ASSERT_TRUE(TestParse(input)); in TEST_F()
845 std::string input = R"( in TEST_F() local
851 ASSERT_TRUE(TestParse(input)); in TEST_F()
861 std::string input = R"( in TEST_F() local
871 ASSERT_TRUE(TestParse(input)); in TEST_F()
891 std::string input = R"( in TEST_F() local
898 ASSERT_TRUE(TestParse(input)); in TEST_F()
909 std::string input = R"( in TEST_F() local
914 ASSERT_TRUE(TestParse(input)); in TEST_F()
929 std::string input = R"( in TEST_F() local
934 ASSERT_TRUE(TestParse(input)); in TEST_F()
955 std::string input = R"( in TEST_F() local
962 ASSERT_TRUE(TestParse(input)); in TEST_F()
1016 std::string input = R"( in TEST_F() local
1020 ASSERT_TRUE(TestParse(input)); in TEST_F()
1031 std::string input = R"( in TEST_F() local
1034 ASSERT_TRUE(TestParse(input)); in TEST_F()
1047 std::string input = R"( in TEST_F() local
1086 std::string input = R"( in TEST_F() local
1113 ASSERT_TRUE(TestParse(input)); in TEST_F()
1181 std::string input = R"( in TEST_F() local
1185 EXPECT_FALSE(TestParse(input)); in TEST_F()
1187 input = R"( in TEST_F()
1193 EXPECT_FALSE(TestParse(input)); in TEST_F()
1197 std::string input = R"( in TEST_F() local
1203 EXPECT_FALSE(TestParse(input)); in TEST_F()
1205 input = R"( in TEST_F()
1211 EXPECT_FALSE(TestParse(input)); in TEST_F()
1213 input = R"( in TEST_F()
1219 EXPECT_FALSE(TestParse(input)); in TEST_F()
1223 std::string input = R"( in TEST_F() local
1232 ASSERT_TRUE(TestParse(input)); in TEST_F()
1254 std::string input = R"( in TEST_F() local
1259 EXPECT_FALSE(TestParse(input)); in TEST_F()
1261 input = R"( in TEST_F()
1268 EXPECT_FALSE(TestParse(input)); in TEST_F()
1270 input = R"( in TEST_F()
1277 EXPECT_FALSE(TestParse(input)); in TEST_F()
1279 input = R"( in TEST_F()
1367 ASSERT_FALSE(TestParse(input)); in TEST_F()
1370 input = R"(<item name="foo4" type="id">0x7f010001</item>)"; in TEST_F()
1371 ASSERT_FALSE(TestParse(input)); in TEST_F()
1372 input = R"(<item name="foo5" type="id">@drawable/my_image</item>)"; in TEST_F()
1373 ASSERT_FALSE(TestParse(input)); in TEST_F()
1374 input = R"(<item name="foo6" type="id"><string name="biz"></string></item>)"; in TEST_F()
1375 ASSERT_FALSE(TestParse(input)); in TEST_F()
1378 input = R"(<public name="foo7" type="id">@id/bar7</item>)"; in TEST_F()
1379 ASSERT_FALSE(TestParse(input)); in TEST_F()
1384 std::string input = R"(<string name="foo">Hello<![CDATA[ "</string>' ]]> World</string>)"; local