Home | History | Annotate | Download | only in cctest

Lines Matching full:uc16

437 static bool IsDigit(uc16 c) {
442 static bool NotDigit(uc16 c) {
447 static bool IsWhiteSpace(uc16 c) {
466 static bool NotWhiteSpace(uc16 c) {
471 static bool NotWord(uc16 c) {
476 static void TestCharacterClassEscapes(uc16 c, bool (pred)(uc16 c)) {
632 uc16 ranges[kRangeCount][2 * kRangeSize];
634 Vector<uc16> range(ranges[i], 2 * kRangeSize);
647 uc16* range = ranges[i];
655 uc16* range = ranges[j];
853 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::UC16, 4, &zone);
879 const uc16 input_data[6] = {'f', 'o', 'o', 'f', 'o',
880 static_cast<uc16>(0x2603)};
882 factory->NewStringFromTwoByte(Vector<const uc16>(input_data, 6));
900 const uc16 input_data2[9] = {'b', 'a', 'r', 'b', 'a', 'r', 'b', 'a',
901 static_cast<uc16>(0x2603)};
902 input = factory->NewStringFromTwoByte(Vector<const uc16>(input_data2, 9));
1013 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::UC16, 4, &zone);
1034 const uc16 input_data[6] = {'f', 0x2028, 'o', 'o', 'f', 0x2028};
1036 factory->NewStringFromTwoByte(Vector<const uc16>(input_data, 6));
1185 uc16 foo_chars[3] = {'f', 'o', 'o'};
1186 Vector<const uc16> foo(foo_chars, 3);
1413 const uc16 str1[] = {'f', 'o', 'o', 'b', 'a', 'r'};
1415 factory->NewStringFromTwoByte(Vector<const uc16>(str1, 6));
1424 const uc16 str2[] = {'b', 'a', 'r', 'f', 'o', 'o'};
1426 factory->NewStringFromTwoByte(Vector<const uc16>(str2, 6));
1625 static bool InClass(uc16 c, ZoneList<CharacterRange>* ranges) {