Lines Matching refs:characters
150 // Find the first characters that aren't equal and compare them. If the end
248 // When the string was all trimmed, report that we stripped off characters
250 // stripped no characters, but we still need to clear |output|.
393 // Non-whitespace characters are copied straight across.
419 bool ContainsOnlyChars(std::string_view input, std::string_view characters) {
420 return input.find_first_not_of(characters) == std::string_view::npos;
424 std::u16string_view characters) {
425 return input.find_first_not_of(characters) == std::u16string_view::npos;
429 inline bool DoIsStringASCII(const Char* characters, size_t length) {
431 const Char* end = characters + length;
434 while (!IsAlignedToMachineWord(characters) && characters != end) {
435 all_char_bits |= *characters;
436 ++characters;
442 while (characters < word_end) {
443 all_char_bits |= *(reinterpret_cast<const MachineWord*>(characters));
444 characters += loop_increment;
448 while (characters != end) {
449 all_char_bits |= *characters;
450 ++characters;
627 // A Matcher for DoReplaceMatchesAfterOffset() that matches single characters.