Searched refs:string (Results 126 - 150 of 8805) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/mandoc/
H A Dtest-strsep.c1 #include <string.h>
/freebsd-12-stable/contrib/opencsd/decoder/include/common/
H A Docsd_lib_dcd_register.h63 const ocsd_err_t registerDecoderTypeByName(const std::string &name, IDecoderMngr *p_decoder_fact); //!< register a decoder manager interface
64 const ocsd_err_t getDecoderMngrByName(const std::string &name, IDecoderMngr **p_decoder_mngr);
67 const bool isRegisteredDecoder(const std::string &name);
68 const bool getFirstNamedDecoder(std::string &name);
69 const bool getNextNamedDecoder(std::string &name);
77 std::map<const std::string, IDecoderMngr *> m_decoder_mngrs; //!< map linking names to decoder manager interfaces.
78 std::map<const std::string, IDecoderMngr *>::const_iterator m_iter; //!< iterator for name search.
103 typedef IDecoderMngr *(*CreateMngr)(const std::string &name);
112 template <typename T> IDecoderMngr *createManagerInst(const std::string &name)
H A Docsd_msg_logger.h38 #include <string>
47 virtual void printOutStr(const std::string &outStr) = 0;
61 OUT_STR_CB = 8 /* output to external string callback interface */
70 void LogMsg(const std::string &msg);
77 std::string m_logFileName;
H A Dtrc_component.h39 #include <string>
59 TraceComponent(const std::string &name);
60 TraceComponent(const std::string &name, int instIDNum);
63 const std::string &getComponentName() const { return m_name; };
64 void setComponentName(const std::string &name) { m_name = name; };
116 void LogDefMessage(const std::string &msg)
125 void LogMessage(const ocsd_err_severity_t filter_level, const std::string &msg);
131 void Init(const std::string &name);
142 std::string m_name;
/freebsd-12-stable/contrib/apr-util/test/
H A Dtestmd5.c29 const char *string; member in struct:__anon210
56 const void *string = md5sums[count].string; local
58 unsigned int len = strlen(string);
62 (apr_md5_update(&context, string, len) == 0));
72 const char *string = "abcdefghijklmnopqrstuvwxyz01234" local
84 (apr_md5_update(&context, string, strlen(string)) == 0));
85 string++;
/freebsd-12-stable/contrib/ipfilter/l4check/
H A Dl4check.conf12 # If no probe string is specified, a successful connection implies the
15 probe string GET /\n\n
19 response string <HTML>
/freebsd-12-stable/lib/libc/amd64/gen/
H A D_set_tp.c31 #include <string.h>
/freebsd-12-stable/lib/libc/amd64/string/
H A Dbzero.c8 #include <string.h>
/freebsd-12-stable/lib/libc/i386/gen/
H A D_set_tp.c31 #include <string.h>
/freebsd-12-stable/lib/libc/mips/gen/
H A D_set_tp.c31 #include <string.h>
/freebsd-12-stable/lib/libpmc/
H A Dlibpmc_json.cc38 #include <string.h>
42 #include <string>
46 using std::string;
72 static string
79 return (string(eventbuf));
82 static string
86 string startent;
95 return string(eventbuf);
98 static string
102 string starten
[all...]
/freebsd-12-stable/stand/ficl/
H A Dunix.c3 #include <string.h>
/freebsd-12-stable/contrib/atf/atf-c++/detail/
H A Dtext.cpp54 impl::match(const std::string& str, const std::string& regex)
79 std::string
80 impl::to_lower(const std::string& str)
82 std::string lc;
83 for (std::string::const_iterator iter = str.begin(); iter != str.end();
89 std::vector< std::string >
90 impl::split(const std::string& str, const std::string& delim)
92 std::vector< std::string > word
[all...]
/freebsd-12-stable/contrib/llvm-project/libcxx/src/
H A Dstring.cpp1 //===------------------------- string.cpp ---------------------------------===//
9 #include "string"
27 string
28 operator+<char, char_traits<char>, allocator<char> >(char const*, string const&);
35 void throw_helper( const string& msg )
46 void throw_from_string_out_of_range( const string& func )
52 void throw_from_string_invalid_arg( const string& func )
62 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f)
82 as_integer(const string& func, const S& s, size_t* idx, int base);
84 // string
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
H A DVersion.cpp26 std::string getClangRepositoryPath() {
56 std::string getLLVMRepositoryPath() {
73 std::string getClangRevision() {
81 std::string getLLVMRevision() {
89 std::string getClangFullRepositoryVersion() {
90 std::string buf;
92 std::string Path = getClangRepositoryPath();
93 std::string Revision = getClangRevision();
106 std::string LLVMRev = getLLVMRevision();
109 std::string LLVMRep
[all...]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtil.h38 std::string Base64(const Unit &U);
42 std::string DescribePC(const char *SymbolizedFMT, uintptr_t PC);
66 std::string CloneArgsWithoutX(const Vector<std::string> &Args,
69 inline std::string CloneArgsWithoutX(const Vector<std::string> &Args,
74 inline std::pair<std::string, std::string> SplitBefore(std::string X,
75 std::string
[all...]
H A DFuzzerIO.cpp26 long GetEpoch(const std::string &Path) {
33 Unit FileToVector(const std::string &Path, size_t MaxSize, bool ExitOnError) {
53 std::string FileToString(const std::string &Path) {
55 return std::string((std::istreambuf_iterator<char>(T)),
59 void CopyFileToErr(const std::string &Path) {
63 void WriteToFile(const Unit &U, const std::string &Path) {
67 void WriteToFile(const std::string &Data, const std::string &Path) {
72 void WriteToFile(const uint8_t *Data, size_t Size, const std::string
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DRangeSelector.h23 #include <string>
38 RangeSelector range(std::string BeginID, std::string EndID);
51 RangeSelector node(std::string ID);
55 RangeSelector statement(std::string ID);
59 RangeSelector member(std::string ID);
68 RangeSelector name(std::string ID);
72 RangeSelector callArgs(std::string ID);
76 RangeSelector statements(std::string ID);
80 RangeSelector initListElements(std::string I
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DBugDriver.h23 #include <string>
51 std::string ReferenceOutputFile; // Name of `good' output file
53 std::vector<std::string> PassesToRun;
78 bool addSources(const std::vector<std::string> &FileNames);
79 void addPass(std::string p) { PassesToRun.push_back(std::move(p)); }
80 void setPassesToRun(const std::vector<std::string> &PTR) {
83 const std::vector<std::string> &getPassesToRun() const { return PassesToRun; }
95 Error debugOptimizerCrash(const std::string &ID = "passes");
114 const std::string &ReferenceOutput);
119 Expected<std::string> compileSharedObjec
[all...]
H A DToolRunner.cpp34 cl::opt<std::string>
38 cl::opt<std::string> RemoteHost("remote-host",
41 cl::opt<std::string> RemotePort("remote-port",
44 cl::opt<std::string> RemoteUser("remote-user",
47 cl::opt<std::string>
60 std::string *ErrMsg = nullptr) {
91 std::string StdOutFileName = StdOutFile.str();
145 std::string LLIPath; // The path to the LLI executable
146 std::vector<std::string> ToolArgs; // Args to pass to LLI
148 LLI(const std::string
[all...]
/freebsd-12-stable/contrib/llvm-project/lld/include/lld/Common/
H A DTargetOptionsCommandFlags.h21 std::string getCPUStr();
22 std::vector<std::string> getMAttrs();
/freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBLanguageRuntime.i15 GetLanguageTypeFromString (const char *string);
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Host/freebsd/
H A DHostInfoFreeBSD.h21 static bool GetOSBuildString(std::string &s);
22 static bool GetOSKernelDescription(std::string &s);
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Host/netbsd/
H A DHostInfoNetBSD.h21 static bool GetOSBuildString(std::string &s);
22 static bool GetOSKernelDescription(std::string &s);
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Host/openbsd/
H A DHostInfoOpenBSD.h21 static bool GetOSBuildString(std::string &s);
22 static bool GetOSKernelDescription(std::string &s);

Completed in 146 milliseconds

1234567891011>>