Searched refs:string (Results 1 - 25 of 553) sorted by relevance

1234567891011>>

/bind-9.11.3/unit/atf-src/tools/
H A Dui.hpp33 #include <string>
48 std::string format_error(const std::string&, const std::string&);
60 std::string format_info(const std::string&, const std::string&);
72 std::string format_text(const std::string&);
87 std::string format_text_with_ta
[all...]
H A Drequirements.hpp34 #include <string>
39 std::string check_requirements(const std::map< std::string, std::string >&,
40 const std::map< std::string, std::string >&);
42 const std::map< std::string, std::string >&,
43 const std::map< std::string, std::string >
[all...]
H A Denv.hpp33 #include <string>
48 std::string get(const std::string&);
55 bool has(const std::string&);
61 //! variables set to the empty string are different to undefined ones.
67 void set(const std::string&, const std::string&);
79 void unset(const std::string&);
H A Dconfig_file.hpp34 #include <string>
46 virtual void got_var(const std::string&, const std::string &);
58 std::map< std::string, std::string > merge_configs(
59 const std::map< std::string, std::string >&,
60 const std::map< std::string, std::string >&);
61 std::map< std::string, st
[all...]
H A Dconfig.hpp34 #include <string>
50 const std::string& get(const std::string&);
58 const std::map< std::string, std::string >& get_all(void);
69 bool has(const std::string&);
H A Datffile.hpp34 #include <string>
51 virtual void got_conf(const std::string&, const std::string &);
52 virtual void got_prop(const std::string&, const std::string &);
53 virtual void got_tp(const std::string&, bool);
70 std::map< std::string, std::string > m_conf;
71 std::vector< std::string > m_tps;
72 std::map< std::string, st
[all...]
H A Dtest-program.hpp34 #include <string>
43 std::string m_state;
45 std::string m_reason;
55 test_case_result(const std::string& p_state, const int p_value,
56 const std::string& p_reason) :
63 const std::string&
75 const std::string&
87 void validate_and_insert(const std::string&, const std::string&,
89 std::map< std::string, st
[all...]
H A Dreader.hpp38 #include <string>
50 const std::string& reason;
52 test_case_result(const state_enum p_state, const std::string& p_reason) :
67 virtual void got_info(const std::string&, const std::string&);
69 virtual void got_tp_start(const std::string&, size_t);
70 virtual void got_tp_end(struct timeval*, const std::string&);
72 virtual void got_tc_start(const std::string&);
73 virtual void got_tc_stdout_line(const std::string&);
74 virtual void got_tc_stderr_line(const std::string
[all...]
H A Dapplication.hpp36 #include <string>
61 std::string m_argument;
62 std::string m_description;
67 option(char, const std::string&, const std::string&);
92 std::string m_description;
93 std::string m_manpage, m_global_manpage;
98 virtual std::string specific_args(void) const;
104 app(const std::string&, const std::string
[all...]
H A Dtext.hpp39 #include <string>
46 //! \brief Duplicates a C string using the new[] allocator.
54 //! \brief Joins multiple words into a string.
56 //! Joins a list of words into a string, separating them using the provided
60 std::string
61 join(const T& words, const std::string& separator)
63 std::string str;
80 //! \brief Checks if the string matches a regular expression.
82 bool match(const std::string&, const std::string
[all...]
H A Dexpand.hpp33 #include <string>
44 //! \brief Checks if the given string is a glob pattern.
46 //! Returns true if the given string is a glob pattern; i.e. if it contains
49 bool is_glob(const std::string&);
52 //! \brief Checks if a given string matches a glob pattern.
54 //! Given a glob pattern and a string, checks whether the former matches
57 bool matches_glob(const std::string&, const std::string&);
66 std::vector< std::string > expand_glob(const std::string
[all...]
H A Dexpand.cpp44 std::string
45 glob_to_regex(const std::string& glob)
47 std::string regex;
51 for (std::string::const_iterator iter = glob.begin(); iter != glob.end();
71 impl::is_glob(const std::string& glob)
74 return glob.find_first_of("*?") != std::string::npos;
78 impl::matches_glob(const std::string& glob, const std::string& candidate)
H A Datf-config.cpp33 #include <string>
45 std::string specific_args(void) const;
48 std::string format_var(const std::string&, const std::string&);
81 std::string
98 std::string
99 atf_config::format_var(const std::string& name, const std::string& val)
101 std::string st
[all...]
H A Dui.cpp56 const std::string cols = tools::env::get("COLUMNS");
76 std::string
77 format_paragraph(const std::string& text,
78 const std::string& tag,
83 assert(text.find('\n') == std::string::npos);
85 const std::string pad(col - tag.length(), ' ');
86 const std::string fullpad(col, ' ');
88 std::string formatted;
98 std::vector< std::string > words = tools::text::split(text, " ");
99 for (std::vector< std::string >
[all...]
/bind-9.11.3/unit/atf-src/atf-c++/detail/
H A Denv.hpp29 #include <string>
44 std::string get(const std::string&);
49 std::string get(const std::string&, const std::string&);
56 bool has(const std::string&);
62 //! variables set to the empty string are different to undefined ones.
68 void set(const std::string&, const std::string
[all...]
H A Dtext.hpp35 #include <string>
42 //! \brief Duplicates a C string using the new[] allocator.
50 //! \brief Joins multiple words into a string.
52 //! Joins a list of words into a string, separating them using the provided
56 std::string
57 join(const T& words, const std::string& separator)
59 std::string str;
76 //! \brief Checks if the string matches a regular expression.
78 bool match(const std::string&, const std::string
[all...]
H A Dexceptions.hpp30 #include <string>
40 mutable std::string m_message;
43 system_error(const std::string&, const std::string&, int);
H A Dapplication.hpp32 #include <string>
57 std::string m_argument;
58 std::string m_description;
63 option(char, const std::string&, const std::string&);
86 std::string m_description;
87 std::string m_manpage;
92 virtual std::string specific_args(void) const;
98 app(const std::string&, const std::string
[all...]
H A Denv.cpp43 std::string
44 impl::get(const std::string& name)
49 std::string
50 impl::get(const std::string& name, const std::string& default_value)
56 impl::has(const std::string& name)
62 impl::set(const std::string& name, const std::string& val)
70 impl::unset(const std::string& name)
/bind-9.11.3/unit/atf-src/atf-c++/
H A Dutils.hpp33 #include <string>
38 void cat_file(const std::string&, const std::string&);
39 bool compare_file(const std::string&, const std::string&);
40 void copy_file(const std::string&, const std::string&);
41 void create_file(const std::string&, const std::string&);
42 bool file_exists(const std::string
[all...]
H A Dtests.hpp31 #include <string>
50 void start_tc(const std::string&);
52 void tc_meta_data(const std::string&, const std::string&);
55 bool match(const std::string&, const std::string&);
63 typedef std::map< std::string, std::string > vars_map;
83 void require_prog(const std::string&) const;
88 tc(const std::string
[all...]
H A Dbuild.hpp29 #include <string>
43 process::argv_array c_o(const std::string&, const std::string&,
45 process::argv_array cpp(const std::string&, const std::string&,
47 process::argv_array cxx_o(const std::string&, const std::string&,
H A Dcheck.hpp35 #include <string>
105 const std::string stdout_path(void) const;
110 const std::string stderr_path(void) const;
117 bool build_c_o(const std::string&, const std::string&,
119 bool build_cpp(const std::string&, const std::string&,
121 bool build_cxx_o(const std::string&, const std::string&,
H A Dutils.cpp36 atf::utils::cat_file(const std::string& path, const std::string& prefix)
42 atf::utils::copy_file(const std::string& source, const std::string& destination)
48 atf::utils::compare_file(const std::string& path, const std::string& contents)
54 atf::utils::create_file(const std::string& path, const std::string& contents)
60 atf::utils::file_exists(const std::string& path)
74 atf::utils::grep_file(const std::string
[all...]
/bind-9.11.3/lib/isc/include/isc/
H A Dparseint.h28 isc_parse_uint32(isc_uint32_t *uip, const char *string, int base);
31 isc_parse_uint16(isc_uint16_t *uip, const char *string, int base);
34 isc_parse_uint8(isc_uint8_t *uip, const char *string, int base);
36 * Parse the null-terminated string 'string' containing a base 'base'
44 *\li 'string' points to a null-terminated string
49 *\li #ISC_R_BADNUMBER The string is not numeric (in the given base)

Completed in 1208 milliseconds

1234567891011>>