Lines Matching refs:next

2962             pos = s.find(f, pos + t.size()))  // find next occurrence of f
6081 #include <iterator> // begin, end, iterator_traits, random_access_iterator_tag, distance, next
6405 /// index to the utf8_codes array for the next valid byte
6904 /// helper to hold the reference for the next object element
7207 /// helper to hold the reference for the next object element
7504 @brief check if the next byte(s) are inside a given range
7565 // get next character
7634 // expect next \uxxxx entry
8237 input is read and used to determined the next state. Only state "done"
8629 @brief get next character from the input
8668 @brief unget current character (read it again on next get)
8672 chars_read_current_line, and token_string. The next call to get() will
8819 // read next character and ignore whitespace
8908 /// whether the next get() call should just return current
9211 // strict mode: next byte must be EOF
11818 @brief get next character from the input
12264 // strict mode: next byte must be EOF
12472 // comma -> next value
12505 // comma -> next value
12558 /// get next token from lexer
12790 #include <iterator> // iterator, random_access_iterator_tag, bidirectional_iterator_tag, advance, next
13480 return *std::next(m_it.array_iterator, n);
14373 // set the beginning of the next reference token
14376 // find next slash
18032 JSON_ASSERT(std::next(i) == val.m_value.object->cend());
18060 JSON_ASSERT(std::next(i) == val.m_value.object->cend());
18776 @param[in] byte next byte to decode
19049 for (auto next = it; ++next != this->end(); ++it)
19052 new (&*it) value_type{std::move(*next)};
19070 for (auto next = it; ++next != this->end(); ++it)
19073 new (&*it) value_type{std::move(*next)};
19084 return erase(pos, std::next(pos));
19117 for (auto it = first; std::next(it, elements_affected) != Container::end(); ++it)
19120 new (&*it) value_type{std::move(*std::next(it, elements_affected))}; // "move" next element to it