Lines Matching refs:UTF8ToUnicodeText
68 UTF8ToUnicodeText("[0-9]+", /*do_copy=*/true); in TEST_F()
71 const UnicodeText input = UTF8ToUnicodeText("hello 0123", /*do_copy=*/false); in TEST_F()
86 UTF8ToUnicodeText("[0-9]+", /*do_copy=*/false); in TEST_F()
92 matcher = pattern->Matcher(UTF8ToUnicodeText("0123", /*do_copy=*/false)); in TEST_F()
101 UTF8ToUnicodeText("hello 0123 world", /*do_copy=*/false)); in TEST_F()
107 UTF8ToUnicodeText("hello 0123 world", /*do_copy=*/false)); in TEST_F()
121 UTF8ToUnicodeText("[a-z][0-9]", /*do_copy=*/false)); in TEST_F()
125 matcher = pattern->Matcher(UTF8ToUnicodeText("a3", /*do_copy=*/false)); in TEST_F()
133 matcher = pattern->Matcher(UTF8ToUnicodeText("3a", /*do_copy=*/false)); in TEST_F()
144 UTF8ToUnicodeText("([0-9])([0-9]+)", /*do_copy=*/false); in TEST_F()
151 UTF8ToUnicodeText("hello 0123 world", /*do_copy=*/false)); in TEST_F()
175 const UnicodeText text = UTF8ToUnicodeText("some text", /*do_copy=*/false); in TEST_F()
187 const UnicodeText text = UTF8ToUnicodeText("", /*do_copy=*/false); in TEST_F()
201 unilib_.ParseInt32(UTF8ToUnicodeText("123", /*do_copy=*/false), &result)); in TEST_F()
208 EXPECT_TRUE(unilib_.ParseInt32(UTF8ToUnicodeText("123", /*do_copy=*/false), in TEST_F()
216 EXPECT_FALSE(unilib_.ParseInt32(UTF8ToUnicodeText("1a3", /*do_copy=*/false), in TEST_F()