Home
last modified time | relevance | path

Searched refs:is_word (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/xpressive/detail/core/matcher/
Dassert_word_matcher.hpp97 bool is_word(Traits const &tr, char_type ch) const in is_word() function
107 bool const thisword = !state.eos() && this->is_word(traits_cast<Traits>(state), *cur); in match()
109 && this->is_word(traits_cast<Traits>(state), *--cur); in match()
/third_party/quickjs/
Drepl.js207 function is_word(c) { function
380 while (pos < cmd.length && !is_word(cmd.charAt(pos)))
382 while (pos < cmd.length && is_word(cmd.charAt(pos)))
388 while (pos > 0 && !is_word(cmd.charAt(pos - 1)))
390 while (pos > 0 && is_word(cmd.charAt(pos - 1)))
587 while (pos > 0 && is_word(line[pos - 1])) {
611 if (is_word(c)) {
1417 while (i < n && is_word(str[i]))
1426 … while (i < n && (is_word(str[i]) || (str[i] == '.' && (i == n - 1 || str[i + 1] != '.')))) {
1448 while (i < n && is_word(str[i]))
[all …]