#include <algorithm>
#include <boost/utility/string_ref.hpp>
Go to the source code of this file.
|
| bool | epee::misc_utils::parse::isspace (char c) |
| |
| bool | epee::misc_utils::parse::isdigit (char c) |
| |
| std::string | epee::misc_utils::parse::transform_to_escape_sequence (const std::string &src) |
| |
| void | epee::misc_utils::parse::match_string2 (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, std::string &val) |
| |
| bool | epee::misc_utils::parse::match_string (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, std::string &val) |
| |
| void | epee::misc_utils::parse::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 | epee::misc_utils::parse::match_number (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, boost::string_ref &val) |
| |
| void | epee::misc_utils::parse::match_word2 (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, boost::string_ref &val) |
| |
| bool | epee::misc_utils::parse::match_word (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, boost::string_ref &val) |
| |
| bool | epee::misc_utils::parse::match_word_with_extrasymb (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, std::string &val) |
| |
| bool | epee::misc_utils::parse::match_word_til_equal_mark (std::string::const_iterator &star_end_string, std::string::const_iterator buf_end, std::string::const_iterator &word_end) |
| |