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

1234567891011>>

/freebsd-11.0-release/include/
H A Dmemory.h34 #include <string.h>
/freebsd-11.0-release/contrib/atf/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...]
/freebsd-11.0-release/cddl/lib/libdtrace/
H A Dnet.d40 string ci_local; /* local host address */
41 string ci_remote; /* remote host address */
42 string ci_protocol; /* protocol (ipv4, ipv6, etc) */
/freebsd-11.0-release/contrib/groff/src/include/
H A Dstringclass.h21 #include <string.h>
28 class string;
30 inline string operator+(const string &, const string &);
31 inline string operator+(const string &, const char *);
32 inline string operator+(const char *, const string &);
33 inline string operato
38 class string { class
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Utility/
H A DUriParser.h15 #include <string>
32 Parse(const std::string& uri,
33 std::string& scheme,
34 std::string& hostname,
36 std::string& path);
/freebsd-11.0-release/contrib/atf/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&,
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DTargetOptions.h18 #include <string>
28 std::string Triple;
31 std::string CPU;
34 std::string FPMath;
37 std::string ABI;
39 /// If given, the version string of the linker in use.
40 std::string LinkerVersion;
43 std::vector<std::string> FeaturesAsWritten;
47 std::vector<std::string> Features;
49 std::vector<std::string> Reciprocal
[all...]
H A DFileSystemOptions.h18 #include <string>
27 std::string WorkingDir;
/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DErrno.h17 #include <string>
22 /// Returns a string representation of the errno value, using whatever
26 std::string StrError();
29 std::string StrError(int errnum);
/freebsd-11.0-release/contrib/groff/src/preproc/refer/
H A Drefer.h39 extern string capitalize_fields;
40 extern string reverse_fields;
41 extern string abbreviate_fields;
42 extern string period_before_last_name;
43 extern string period_before_initial;
44 extern string period_before_hyphen;
45 extern string period_before_other;
46 extern string sort_fields;
48 extern string annotation_macro;
49 extern string discard_field
[all...]
H A Dcommand.h22 void process_commands(string &s, const char *file, int lineno);
31 extern string pre_label;
32 extern string post_label;
33 extern string sep_label;
/freebsd-11.0-release/contrib/gperf/lib/
H A Dhash.h13 extern unsigned int hashpjw (const unsigned char *string, unsigned int len);
/freebsd-11.0-release/usr.sbin/rpc.yppasswdd/
H A Dyppasswd_private.x43 string pw_name<>; /* username */
44 string pw_passwd<>; /* encrypted password */
48 string pw_class<>; /* user access class */
49 string pw_gecos<>; /* in real life name */
50 string pw_dir<>; /* home directory */
51 string pw_shell<>; /* default shell */
59 string oldpass<>; /* unencrypted old password */
60 string domain<_YPMAXDOMAIN>; /* domain we want to operate on */
/freebsd-11.0-release/lib/libc/posix1e/
H A Dextattr.c38 #include <string.h>
41 extattr_namespace_to_string(int attrnamespace, char **string) argument
46 if (string != NULL)
47 *string = strdup(EXTATTR_NAMESPACE_USER_STRING);
51 if (string != NULL)
52 *string = strdup(EXTATTR_NAMESPACE_SYSTEM_STRING);
62 extattr_string_to_namespace(const char *string, int *attrnamespace) argument
65 if (!strcmp(string, EXTATTR_NAMESPACE_USER_STRING)) {
69 } else if (!strcmp(string, EXTATTR_NAMESPACE_SYSTEM_STRING)) {
/freebsd-11.0-release/lib/libmd/
H A Drmddriver.c21 #include <string.h>
25 /* Digests a string and prints the result. */
27 RIPEMD160String(char *string) argument
32 string, RIPEMD160_Data(string, strlen(string), buf));
/freebsd-11.0-release/crypto/heimdal/lib/roken/
H A Dfnmatch.c55 #include <string.h>
62 rk_fnmatch(const char *pattern, const char *string, int flags) argument
67 for (stringstart = string;;)
70 return (*string == EOS ? 0 : FNM_NOMATCH);
72 if (*string == EOS)
74 if (*string == '/' && (flags & FNM_PATHNAME))
76 if (*string == '.' && (flags & FNM_PERIOD) &&
77 (string == stringstart ||
78 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
80 ++string;
[all...]
/freebsd-11.0-release/contrib/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.h14 #include <string>
17 extern llvm::cl::list<std::string> InputFilenames;
/freebsd-11.0-release/contrib/gcclibs/libiberty/
H A Dputenv.c21 @deftypefn Supplemental int putenv (const char *@var{string})
23 Uses @code{setenv} or @code{unsetenv} to put @var{string} into
24 the environment or remove it. If @var{string} is of the form
25 @samp{name=value} the string is added; if no @samp{=} is present the
48 # include <string.h>
70 putenv (const char *string) argument
72 const char *const name_end = strchr (string, '=');
76 char *name = (char *) alloca (name_end - string + 1);
77 memcpy (name, string, name_end - string);
[all...]
/freebsd-11.0-release/contrib/binutils/libiberty/
H A Dputenv.c21 @deftypefn Supplemental int putenv (const char *@var{string})
23 Uses @code{setenv} or @code{unsetenv} to put @var{string} into
24 the environment or remove it. If @var{string} is of the form
25 @samp{name=value} the string is added; if no @samp{=} is present the
48 # include <string.h>
70 putenv (const char *string) argument
72 const char *const name_end = strchr (string, '=');
76 char *name = (char *) alloca (name_end - string + 1);
77 memcpy (name, string, name_end - string);
[all...]
/freebsd-11.0-release/share/examples/sunrpc/msg/
H A Dmsg.x7 int PRINTMESSAGE(string) = 1;
/freebsd-11.0-release/usr.bin/dtc/
H A Dstring.hh30 * $FreeBSD: releng/11.0/usr.bin/dtc/string.hh 289935 2015-10-25 14:52:16Z theraven $
36 #include <string>
46 * and store in collections. Copying the string object does not copy the
51 class string class in namespace:dtc
53 friend std::hash<string>;
57 /** length of the string. DTS strings are allowed to contain nuls */
62 static string parse(input_buffer &s);
65 * Constructs a string referring into another buffer.
67 string(const char *s, int l) : start(s), length(l) {} function in class:dtc::string
68 /** Constructs a string fro
69 string(const char *s) : start(s), length(strlen(s)) {} function in class:dtc::string
71 string() : start(0), length(0) {} function in class:dtc::string
[all...]
/freebsd-11.0-release/sys/libkern/
H A Dfnmatch.c54 fnmatch(const char *pattern, const char *string, int flags) argument
60 for (stringstart = string;;)
63 if ((flags & FNM_LEADING_DIR) && *string == '/')
65 return (*string == EOS ? 0 : FNM_NOMATCH);
67 if (*string == EOS)
69 if (*string == '/' && (flags & FNM_PATHNAME))
71 if (*string == '.' && (flags & FNM_PERIOD) &&
72 (string == stringstart ||
73 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
75 ++string;
[all...]

Completed in 139 milliseconds

1234567891011>>