Lines Matching refs:utf16_input
122 string16 utf16_input = UTF8ToUTF16(cases[i].input);
123 const char16* utf16_chars = utf16_input.c_str();
125 EXPECT_EQ(cases[i].success, StringToInt(utf16_input, &output));
128 EXPECT_EQ(cases[i].success, StringToInt(utf16_input.begin(),
129 utf16_input.end(),
134 utf16_chars, utf16_chars + utf16_input.length(), &output));
153 string16 utf16_input = UTF8ToUTF16(input_string);
154 const char16* utf16_chars = utf16_input.c_str();
156 EXPECT_FALSE(StringToInt(utf16_input, &output));
159 EXPECT_FALSE(StringToInt(utf16_input.begin(), utf16_input.end(), &output));
163 utf16_chars + utf16_input.length(),
227 string16 utf16_input = UTF8ToUTF16(cases[i].input);
228 const char16* utf16_chars = utf16_input.c_str();
230 EXPECT_EQ(cases[i].success, StringToInt64(utf16_input, &output));
233 EXPECT_EQ(cases[i].success, StringToInt64(utf16_input.begin(),
234 utf16_input.end(),
239 utf16_chars, utf16_chars + utf16_input.length(), &output));
260 string16 utf16_input = UTF8ToUTF16(input_string);
261 const char16* utf16_chars = utf16_input.c_str();
263 EXPECT_FALSE(StringToInt64(utf16_input, &output));
266 EXPECT_FALSE(StringToInt64(utf16_input.begin(), utf16_input.end(), &output));
270 utf16_chars + utf16_input.length(),