|
| bool | isspace (char c) |
| |
| bool | isdigit (char c) |
| |
| std::string | transform_to_escape_sequence (const std::string &src) |
| |
| void | match_string2 (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, std::string &val) |
| |
| bool | match_string (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, std::string &val) |
| |
| void | match_number2 (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, boost::string_ref &val, bool &is_float_val, bool &is_signed_val) |
| |
| bool | match_number (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, boost::string_ref &val) |
| |
| void | match_word2 (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, boost::string_ref &val) |
| |
| bool | match_word (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, boost::string_ref &val) |
| |
| bool | match_word_with_extrasymb (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, std::string &val) |
| |
| bool | match_word_til_equal_mark (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, std::string::const_iterator &word_end) |
| |