Home | History | Annotate | Download | only in cctest

Lines Matching full:testcharacterclassescapes

470 static void TestCharacterClassEscapes(uc16 c, bool (pred)(uc16 c)) {
487 TestCharacterClassEscapes('.', IsRegExpNewline);
488 TestCharacterClassEscapes('d', IsDigit);
489 TestCharacterClassEscapes('D', NotDigit);
490 TestCharacterClassEscapes('s', IsWhiteSpace);
491 TestCharacterClassEscapes('S', NotWhiteSpace);
492 TestCharacterClassEscapes('w', IsRegExpWord);
493 TestCharacterClassEscapes('W', NotWord);