Searched refs:std (Results 1 - 25 of 5880) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/kyua/utils/text/
H A Doperations.hpp43 std::string escape_xml(const std::string&);
44 std::string quote(const std::string&, const char);
47 std::vector< std::string > refill(const std::string&, const std::size_t);
48 std::string refill_as_string(const std
[all...]
H A Dregex.hpp50 std::shared_ptr< impl > _pimpl;
53 regex_matches(std::shared_ptr< impl >);
58 std::size_t count(void) const;
59 std::string get(const std::size_t) const;
72 std::shared_ptr< impl > _pimpl;
74 regex(std::shared_ptr< impl >);
79 static regex compile(const std::string&, const std::size_t,
81 regex_matches match(const std
[all...]
H A Dtable_fwd.hpp44 typedef std::vector< std::string > table_row;
48 typedef std::vector< std::size_t > widths_vector;
H A Dtemplates.hpp79 typedef std::map< std::string, std::string > variables_map;
85 typedef std::vector< std::string > strings_vector;
92 typedef std::map< std::string, strings_vector > vectors_map;
97 const std::string& get_vector(const std::string&, const std
[all...]
/freebsd-13-stable/contrib/kyua/utils/format/
H A Dcontainers.hpp45 namespace std { namespace
49 std::ostream& operator<<(std::ostream&, const std::map< K, V >&);
52 std::ostream& operator<<(std::ostream&, const std::pair< T1, T2 >&);
55 std::ostream& operator<<(std::ostream&, const std
[all...]
H A Dformatter.hpp68 /// const std::string s = (formatter("%s %s") % "foo" % 5).str();
77 /// const std::string s = f3.str();
81 std::string _format;
87 std::string _expansion;
90 std::string::size_type _last_pos;
93 std::string::size_type _placeholder_pos;
96 std::string _placeholder;
99 std::ostringstream* _oss;
101 formatter replace(const std::string&) const;
104 formatter(const std
[all...]
H A Dexceptions.hpp43 class error : public std::runtime_error {
45 explicit error(const std::string&);
53 std::string _format;
56 explicit bad_format_error(const std::string&, const std::string&);
59 const std::string& format(void) const;
66 std::string _format;
69 std::string _arg;
72 explicit extra_args_error(const std::string&, const std
[all...]
/freebsd-13-stable/contrib/atf/atf-c++/detail/
H A Denv.hpp44 std::string get(const std::string&);
49 std::string get(const std::string&, const std::string&);
56 bool has(const std::string&);
68 void set(const std::string&, const std::string&);
80 void unset(const std::string&);
/freebsd-13-stable/contrib/kyua/utils/
H A Denv.hpp48 std::map< std::string, std::string > getallenv(void);
49 optional< std::string > getenv(const std::string&);
50 std::string getenv_with_default(const std::string&, const std::string&);
52 void setenv(const std::string&, const std
[all...]
H A Dstream.hpp49 std::auto_ptr< std::ostream > open_ostream(const utils::fs::path&);
50 std::size_t stream_length(std::istream&);
51 std::string read_file(const utils::fs::path&);
52 std::string read_stream(std::istream&);
H A Dstacktrace_helper.cpp35 std::abort();
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DVersion.h25 std::string getClangRepositoryPath();
30 std::string getLLVMRepositoryPath();
34 std::string getClangRevision();
41 std::string getLLVMRevision();
45 std::string getClangFullRepositoryVersion();
50 std::string getClangFullVersion();
53 std::string getClangToolFullVersion(llvm::StringRef ToolName);
58 std::string getClangFullCPPVersion();
/freebsd-13-stable/contrib/kyua/utils/cmdline/
H A Dui_mock.hpp54 std::size_t _screen_width;
57 std::vector< std::string > _err_log;
60 std::vector< std::string > _out_log;
63 ui_mock(const std::size_t = 0);
65 void err(const std::string&, const bool = true);
66 void out(const std::string&, const bool = true);
67 optional< std::size_t > screen_width(void) const;
69 const std
[all...]
H A Dexceptions.hpp43 class error : public std::runtime_error {
45 explicit error(const std::string&);
53 explicit usage_error(const std::string&);
61 std::string _option;
64 explicit missing_option_argument_error(const std::string&);
67 const std::string& option(void) const;
74 std::string _option;
77 std::string _argument;
80 std::string _reason;
83 explicit option_argument_value_error(const std
[all...]
/freebsd-13-stable/contrib/kyua/engine/
H A Dtap_parser_fwd.hpp42 typedef std::pair< std::size_t, std::size_t > tap_plan;
/freebsd-13-stable/contrib/kyua/utils/config/
H A Dtree_fwd.hpp43 typedef std::map< std::string, std::string > properties_map;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOStreamMacros.h15 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right
17 #define RAWHEX8(x) RAW_HEXBASE << std::setw(2) << ((uint32_t)(x))
18 #define RAWHEX16 RAW_HEXBASE << std::setw(4)
19 #define RAWHEX32 RAW_HEXBASE << std::setw(8)
20 #define RAWHEX64 RAW_HEXBASE << std::setw(16)
21 #define HEX8(x) HEXBASE << std::setw(2) << ((uint32_t)(x))
22 #define HEX16 HEXBASE << std::setw(4)
23 #define HEX32 HEXBASE << std
[all...]
/freebsd-13-stable/contrib/atf/atf-c++/
H A Dutils.hpp38 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&);
45 bool grep_file(const std
[all...]
H A Dtests.hpp43 std::ostream& m_os;
48 atf_tp_writer(std::ostream&);
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
[all...]
/freebsd-13-stable/contrib/llvm-project/libcxx/src/
H A Dvariant.cpp11 namespace std { namespace
17 } // namespace std
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrc.h9 // While std::error_code works OK on all platforms we use, there are some
10 // some problems with std::errc that can be avoided by using our own
13 // * std::errc is a namespace in some implementations. That meas that ADL
14 // doesn't work and it is sometimes necessary to write std::make_error_code
16 // using std::make_error_code;
24 // * std::errc is just marked with is_error_condition_enum. This means that
36 argument_list_too_long = int(std::errc::argument_list_too_long),
37 argument_out_of_domain = int(std::errc::argument_out_of_domain),
38 bad_address = int(std::errc::bad_address),
39 bad_file_descriptor = int(std
83 namespace std { namespace in namespace:llvm
[all...]
/freebsd-13-stable/contrib/kyua/model/
H A Dtypes.hpp48 typedef std::set< utils::fs::path > paths_set;
52 typedef std::set< std::string > strings_set;
56 typedef std::map< std::string, std::string > properties_map;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_powerpc64.inc27 static std::mutex M;
28 std::lock_guard<std::mutex> Guard(M);
/freebsd-13-stable/contrib/lutok/
H A Doperations.hpp44 void create_module(state&, const std::string&,
45 const std::map< std::string, cxx_function >&);
46 unsigned int do_file(state&, const std::string&, const int, const int,
48 unsigned int do_string(state&, const std::string&, const int, const int,
50 void eval(state&, const std::string&, const int);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Rename/
H A DRenamingAction.h32 RenamingAction(const std::vector<std::string> &NewNames,
33 const std::vector<std::string> &PrevNames,
34 const std::vector<std::vector<std::string>> &USRList,
35 std::map<std::string, tooling::Replacements> &FileToReplaces,
40 std
[all...]

Completed in 202 milliseconds

1234567891011>>