Lines Matching defs:character
47 // In a 3-character pattern you can maximally step forwards 3 characters
107 // character one at a time. For example in the middle of the regexp
123 // of the character frequencies in the inputs. This affects the assessment of
149 void Set(int character);
162 ContainedInLattice w_ = kNotYet; // The \w character class.
177 void Set(int map_number, int character) {
178 if (character > max_char_) return;
180 info->Set(character);
203 // Therefore it is OK to read a character this far ahead of the current match
415 void CountCharacter(int character) {
416 int index = (character & RegExpMacroAssembler::kTableMask);
435 explicit CharacterFrequency(int character)
436 : counter_(0), character_(character) {}
440 int character() { return character_; }
465 // Lookarounds to match lone surrogates for unicode character class matches
591 // Categorizes character ranges into BMP, non-BMP, lead, and trail surrogates.