Lines Matching refs:escaped
898 /// @param escaped This is an output parameter. It's set to true by
899 /// this function if it escaped the peeked character. Otherwise,
904 peek(bool& escaped)
909 escaped = false;
914 escaped = true;
931 bool escaped = false;
932 return peek(escaped);
937 /// This function knows how to handles escaped characters from the
940 /// @param do_handle_escape if yes, this function handles escaped
1012 bool escaped = false;
1017 escaped = true;
1020 return escaped;
1026 return escaped;
1048 return escaped;
1064 return escaped;
1070 /// at the actual char that got read. Note that escaped characters
1370 /// Note that all escaped characters are suitable to be in a string.
1376 bool escaped = false;
1377 int b = peek(escaped);
1381 if (!escaped && char_is_delimiter(b, /*include_white_space=*/false))
1386 for (b = peek(escaped); good(); b = peek(escaped))
1391 if (!escaped && !char_is_property_value_char(b))