Searched refs:string (Results 76 - 100 of 10805) sorted by relevance

1234567891011>>

/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/interpose-multiple/
H A Dmain.c25 #include <string.h>
/macosx-10.10/BerkeleyDB-21/db/examples_cxx/getting_started/
H A DMyDb.hpp6 #include <string>
14 MyDb(std::string &path, std::string &dbName,
24 std::string dbFileName_;
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/String/
H A Dsplit-001.js35 // separator is an empty string
42 // string is an empty string
43 // if separator is an empty string, split each by character
54 function AddSplitCases( string, separator, str_sep, split_array ) {
58 "( " + string + " ).split(" + str_sep +").constructor == Array",
60 string.split(separator).constructor == Array );
64 "( " + string + " ).split(" + str_sep +").length",
66 string.split(separator).length );
69 var limit = (split_array.length > string
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DLDAPConnection.h51 LDAPConnection(const std::string& hostname="localhost", int port=389,
70 void init(const std::string& hostname, int port);
90 void bind(const std::string& dn="", const std::string& passwd="",
92 void saslInteractiveBind(const std::string& mech,
121 bool compare(const std::string& dn, const LDAPAttribute& attr,
135 void del(const std::string& dn, const LDAPConstraints* cons=0);
160 void modify(const std::string& dn, const LDAPModList* mods,
183 void rename(const std::string& dn, const std::string
[all...]
H A DLDAPControl.h10 #include <string>
37 LDAPCtrl(const std::string& oid, bool critical,
38 const std::string& data);
53 std::string getOID() const;
62 * @return The Data of the control as a std::string-Object
64 std::string getData() const;
81 std::string m_oid;
82 std::string m_data;
H A DLDAPSchema.h10 #include <string>
24 map <string, LDAPObjClass> object_classes;
29 map <string, LDAPAttrType> attr_types;
45 * @param oc description of one objectclass (string returned by search
55 * (string returned by search command), in form:
64 LDAPObjClass getObjectClassByName (std::string name);
69 LDAPAttrType getAttributeTypeByName (string name);
/macosx-10.10/WebCore-7600.1.25/page/
H A DWindowBase64.idl31 [RaisesException] DOMString atob(DOMString string);
32 [RaisesException] DOMString btoa(DOMString string);
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c++/detail/
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 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...]
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Dcpu-w65.c29 scan_mach (info, string)
31 const char *string;
33 if (strcmp(string,"w65") == 0)
35 if (strcmp(string,"w65816") == 0)
/macosx-10.10/llvmCore-3425.0.34/lib/Target/MSP430/
H A DMSP430Subtarget.cpp26 MSP430Subtarget::MSP430Subtarget(const std::string &TT,
27 const std::string &CPU,
28 const std::string &FS) :
30 std::string CPUName = "generic";
32 // Parse features string.
H A DMSP430Subtarget.h18 #include <string>
33 MSP430Subtarget(const std::string &TT, const std::string &CPU,
34 const std::string &FS);
36 /// ParseSubtargetFeatures - Parses features string setting specified
/macosx-10.10/llvmCore-3425.0.34/lib/Target/XCore/
H A DXCoreSubtarget.h19 #include <string>
34 XCoreSubtarget(const std::string &TT, const std::string &CPU,
35 const std::string &FS);
37 /// ParseSubtargetFeatures - Parses features string setting specified
/macosx-10.10/postfix-255/postfix/src/util/
H A Dneuter.c19 /* The null-terminated input string.
21 /* The null-terminated bad character string.
39 #include <string.h>
47 char *neuter(char *string, const char *bad, int replacement) argument
52 for (cp = string; (ch = *(unsigned char *) cp) != 0; cp++)
55 return (string);
/macosx-10.10/tcl-105/tcl84/tcl/compat/
H A Dfixstrtod.c28 fixstrtod(string, endPtr)
29 char *string;
33 d = strtod(string, endPtr);
34 if ((endPtr != NULL) && (*endPtr != string) && ((*endPtr)[-1] == 0)) {
/macosx-10.10/tcl-105/tcl_ext/tls/tls/
H A Dfixstrtod.c28 fixstrtod(string, endPtr)
29 char *string;
33 d = strtod(string, endPtr);
34 if ((endPtr != NULL) && (*endPtr != string) && ((*endPtr)[-1] == 0)) {
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/RegExp/
H A D15.10.2-1.js52 var string = ''; variable
62 string = 'abc';
63 actualmatch = string.match(pattern);
69 string = 'abc';
70 actualmatch = string.match(pattern);
76 string = 'abcdefghi';
77 actualmatch = string.match(pattern);
83 string = 'abcdefghi';
84 actualmatch = string.match(pattern);
90 string
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/antlr/
H A DRecognitionException.hpp22 RecognitionException(const ANTLR_USE_NAMESPACE(std)string& s);
23 RecognitionException(const ANTLR_USE_NAMESPACE(std)string& s,
24 const ANTLR_USE_NAMESPACE(std)string& fileName,
32 virtual ANTLR_USE_NAMESPACE(std)string getFilename() const throw()
52 virtual ANTLR_USE_NAMESPACE(std)string toString() const;
54 /// See what file/line/column info is present and return it as a string
55 virtual ANTLR_USE_NAMESPACE(std)string getFileLineColumnString() const;
57 ANTLR_USE_NAMESPACE(std)string fileName; // not used by treeparsers
H A DANTLRException.hpp12 #include <string>
26 ANTLRException(const ANTLR_USE_NAMESPACE(std)string& s)
38 virtual ANTLR_USE_NAMESPACE(std)string toString() const
48 virtual ANTLR_USE_NAMESPACE(std)string getMessage() const
53 ANTLR_USE_NAMESPACE(std)string text;
/macosx-10.10/bind9-45.101/bind9/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...]
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A Dantlrplugin.h33 #include <string>
49 typedef const Requirement *FileRequirement(std::FILE *source, std::string &errors);
51 typedef const Requirements *FileRequirements(std::FILE *source, std::string &errors);
53 typedef const BlobCore *FileGeneric(std::FILE *source, std::string &errors);
55 typedef const Requirement *StringRequirement(std::string source, std::string &errors);
57 typedef const Requirements *StringRequirements(std::string source, std::string &errors);
59 typedef const BlobCore *StringGeneric(std::string source, std::string
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dantlrplugin.h33 #include <string>
49 typedef const Requirement *FileRequirement(std::FILE *source, std::string &errors);
51 typedef const Requirements *FileRequirements(std::FILE *source, std::string &errors);
53 typedef const BlobCore *FileGeneric(std::FILE *source, std::string &errors);
55 typedef const Requirement *StringRequirement(std::string source, std::string &errors);
57 typedef const Requirements *StringRequirements(std::string source, std::string &errors);
59 typedef const BlobCore *StringGeneric(std::string source, std::string
[all...]
/macosx-10.10/libstdcxx-104.1/src/
H A Dstdexcept.cc34 #include <string>
40 logic_error::logic_error(const string& __arg)
51 domain_error::domain_error(const string& __arg)
54 invalid_argument::invalid_argument(const string& __arg)
57 length_error::length_error(const string& __arg)
60 out_of_range::out_of_range(const string& __arg)
63 runtime_error::runtime_error(const string& __arg)
74 range_error::range_error(const string& __arg)
77 overflow_error::overflow_error(const string& __arg)
80 underflow_error::underflow_error(const string
[all...]
/macosx-10.10/swig-12/Lib/java/
H A Dstd_string.i7 * Typemaps for std::string and const std::string&
10 * To use non-const std::string references use the following %apply. Note
12 * %apply const std::string & {std::string &};
16 #include <string>
21 %naturalvar string;
23 class string;
25 // string
26 %typemap(jni) string "jstrin
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Dshquote.c39 /* Return a new string which is the single-quoted version of STRING.
42 sh_single_quote (string)
43 char *string;
48 result = (char *)xmalloc (3 + (4 * strlen (string)));
52 for (s = string; s && (c = *s); s++)
60 *r++ = '\''; /* start new quoted string */
70 /* Quote STRING using double quotes. Return a new string. */
72 sh_double_quote (string)
73 char *string;
78 result = (char *)xmalloc (3 + (2 * strlen (string)));
[all...]

Completed in 476 milliseconds

1234567891011>>