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

1234567891011>>

/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
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 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 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;
99 virtual std::string specific_args(void) const;
105 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 Denv.cpp47 std::string
48 impl::get(const std::string& name)
54 impl::has(const std::string& name)
60 impl::set(const std::string& name, const std::string& val)
68 impl::unset(const std::string& name)
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 Dui.cpp57 const std::string cols = atf::env::get("COLUMNS");
77 std::string
78 format_paragraph(const std::string& text,
79 const std::string& tag,
84 PRE(text.find('\n') == std::string::npos);
86 const std::string pad(col - tag.length(), ' ');
87 const std::string fullpad(col, ' ');
89 std::string formatted;
99 std::vector< std::string > words = atf::text::split(text, " ");
100 for (std::vector< std::string >
[all...]
H A Dexceptions.hpp34 #include <string>
49 not_found_error(const std::string& message, const T& value) throw();
58 not_found_error< T >::not_found_error(const std::string& message,
85 mutable std::string m_message;
88 system_error(const std::string&, const std::string&, int);
H A Dtext.cpp58 impl::match(const std::string& str, const std::string& regex)
83 std::string
84 impl::to_lower(const std::string& str)
86 std::string lc;
87 for (std::string::const_iterator iter = str.begin(); iter != str.end();
93 std::vector< std::string >
94 impl::split(const std::string& str, const std::string& delim)
96 std::vector< std::string > word
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dutils.hpp37 #include <string>
42 void cat_file(const std::string&, const std::string&);
43 bool compare_file(const std::string&, const std::string&);
44 void copy_file(const std::string&, const std::string&);
45 void create_file(const std::string&, const std::string&);
46 bool file_exists(const std::string
[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 Dtests.hpp35 #include <string>
56 void start_tc(const std::string&);
58 void tc_meta_data(const std::string&, const std::string&);
61 bool match(const std::string&, const std::string&);
69 typedef std::map< std::string, std::string > vars_map;
85 void require_prog(const std::string&) const;
90 tc(const std::string
[all...]
H A Dbuild.hpp33 #include <string>
47 process::argv_array c_o(const std::string&, const std::string&,
49 process::argv_array cpp(const std::string&, const std::string&,
51 process::argv_array cxx_o(const std::string&, const std::string&,
H A Dcheck.hpp39 #include <string>
107 const std::string stdout_path(void) const;
112 const std::string stderr_path(void) const;
119 bool build_c_o(const std::string&, const std::string&,
121 bool build_cpp(const std::string&, const std::string&,
123 bool build_cxx_o(const std::string&, const std::string&,
H A Dutils.cpp40 atf::utils::cat_file(const std::string& path, const std::string& prefix)
46 atf::utils::copy_file(const std::string& source, const std::string& destination)
52 atf::utils::compare_file(const std::string& path, const std::string& contents)
58 atf::utils::create_file(const std::string& path, const std::string& contents)
64 atf::utils::file_exists(const std::string& path)
78 atf::utils::grep_file(const std::string
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-report/
H A Dreader.hpp38 #include <string>
52 const std::string& reason;
54 test_case_result(const state_enum p_state, const std::string& p_reason) :
69 virtual void got_info(const std::string&, const std::string&);
71 virtual void got_tp_start(const std::string&, size_t);
72 virtual void got_tp_end(struct timeval*, const std::string&);
74 virtual void got_tc_start(const std::string&);
75 virtual void got_tc_stdout_line(const std::string&);
76 virtual void got_tc_stderr_line(const std::string
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dtest-program.hpp41 std::string m_state;
43 std::string m_reason;
53 test_case_result(const std::string& p_state, const int p_value,
54 const std::string& p_reason) :
61 const std::string&
73 const std::string&
85 void validate_and_insert(const std::string&, const std::string&,
87 std::map< std::string, std::string >
[all...]
H A Datffile.hpp33 #include <string>
53 virtual void got_conf(const std::string&, const std::string &);
54 virtual void got_prop(const std::string&, const std::string &);
55 virtual void got_tp(const std::string&, bool);
73 std::vector< std::string > m_tps;
78 const std::vector< std::string >&,
82 const std::vector< std::string >& tps(void) const;
H A Dconfig.hpp30 #include <string>
44 virtual void got_var(const std::string&, const std::string &);
58 atf::tests::vars_map read_config_files(const std::string&);
H A Drequirements.cpp66 if (program.str().find('/') != std::string::npos)
71 const std::vector< std::string > dirs = atf::text::split(
73 for (std::vector< std::string >::const_iterator iter = dirs.begin();
85 std::string
86 check_arch(const std::string& arches)
88 const std::vector< std::string > v = atf::text::split(arches, " ");
90 for (std::vector< std::string >::const_iterator iter = v.begin();
103 std::string
104 check_config(const std::string& variables, const atf::tests::vars_map& config)
106 const std::vector< std::string >
[all...]
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dparseint.h37 isc_parse_uint32(isc_uint32_t *uip, const char *string, int base);
40 isc_parse_uint16(isc_uint16_t *uip, const char *string, int base);
43 isc_parse_uint8(isc_uint8_t *uip, const char *string, int base);
45 * Parse the null-terminated string 'string' containing a base 'base'
53 *\li 'string' points to a null-terminated string
58 *\li #ISC_R_BADNUMBER The string is not numeric (in the given base)
/bind-9.6-ESV-R11/unit/atf-src/atf-config/
H A Datf-config.cpp33 #include <string>
50 std::string specific_args(void) const;
53 std::string format_var(const std::string&, const std::string&);
86 std::string
103 std::string
104 atf_config::format_var(const std::string& name, const std::string& val)
106 std::string st
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-sh/
H A Datf-sh.cpp52 std::string
57 return std::string("./") + filename;
59 return std::string(filename);
63 std::string*
66 const std::string libexecdir = atf::config::get("atf_libexecdir");
67 const std::string pkgdatadir = atf::config::get("atf_pkgdatadir");
68 const std::string shell = atf::config::get("atf_shell");
70 std::string* command = new std::string();
82 construct_argv(const std::string
[all...]
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/wsock/wsock20/
H A Ddllload.c51 #include <string.h>

Completed in 23 milliseconds

1234567891011>>