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

1234567891011>>

/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSStringRefBSTR.cpp34 JSStringRef JSStringCreateWithBSTR(BSTR string) argument
36 return JSStringCreateWithCharacters(string ? string : L"", string ? SysStringLen(string) : 0);
39 BSTR JSStringCopyBSTR(const JSStringRef string) argument
41 return SysAllocStringLen(JSStringGetCharactersPtr(string), JSStringGetLength(string));
/macosx-10.9.5/Libc-997.90.3/include/
H A Dmemory.h36 #include <string.h>
/macosx-10.9.5/bind9-45.100/bind9/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&);
/macosx-10.9.5/groff-38/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...]
/macosx-10.9.5/bash-92/bash-3.2/examples/functions/
H A Darray-to-string11 local array=$1 string=$2
13 eval $string="\"\${$array[*]}\""
/macosx-10.9.5/libiconv-41/libiconv/srclib/
H A Dxstrdup.c1 /* xstrdup.c -- copy a string with out of memory checking
25 #include <string.h>
30 xstrdup (const char *string) argument
32 return strcpy (xmalloc (strlen (string) + 1), string);
/macosx-10.9.5/tcl-102/tcl84/tcl/compat/
H A Dstrstr.c25 * Locate the first instance of a substring in a string.
28 * If string contains substring, the return value is the
30 * in string. If string doesn't contain substring, the
42 strstr(string, substring)
43 register char *string; /* String to search. */
44 char *substring; /* Substring to try to find in string. */
55 return string;
57 for ( ; *string != 0; string
[all...]
/macosx-10.9.5/CrackLib-37765/cracklib27/cracklib/
H A Dstringlib.c10 #include <string.h>
16 Chop(string)
17 register char *string;
23 for (ptr = string; *ptr; ptr++);
24 if (ptr != string)
33 Trim(string)
34 register char *string;
37 for (ptr = string; *ptr; ptr++);
39 while ((--ptr >= string) && isspace(*ptr));
47 Clone(string)
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/ldapc++/src/
H A DLDAPRebindAuth.h10 #include<string>
27 LDAPRebindAuth(const std::string& dn="", const std::string& pwd="");
42 const std::string& getDN() const;
47 const std::string& getPassword() const;
50 std::string m_dn;
51 std::string m_password;
/macosx-10.9.5/tcl-102/tcl/tcl/compat/
H A Dstrstr.c25 * Locate the first instance of a substring in a string.
28 * If string contains substring, the return value is the location of the
29 * first matching instance of substring in string. If string doesn't
41 register char *string, /* String to search. */
42 char *substring) /* Substring to try to find in string. */
54 return string;
56 for ( ; *string != 0; string += 1) {
57 if (*string !
40 strstr( register char *string, char *substring) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DUIString.js33 * @param {string} string
35 * @return {string}
37 WebInspector.UIString = function(string, vararg)
40 if (window.localizedStrings && string in window.localizedStrings)
41 string = window.localizedStrings[string];
43 if (!(string in WebInspector._missingLocalizedStrings)) {
44 console.warn("Localized string \"" + string
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dcpu-tic4x.c31 tic4x_scan (info, string)
33 const char *string;
37 if (string[0] == 't' && string[1] == 'i')
38 string += 2;
39 if (*string == 'C' || *string == 'c')
40 string++;
41 if (string[1] < '0' && string[
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/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);
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclInitScript.h80 * A pointer to a string that holds an initialization script that if non-NULL
107 TclSetPreInitScript (string) variable
108 char *string; /* Pointer to a script. */
111 tclPreInitScript = string;
/macosx-10.9.5/groff-38/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...]
/macosx-10.9.5/CPANInternal-140/Apache2-SOAP/t/lib/TestSOAP/
H A Dconvert.pm8 my $string = $args{string};
9 my $response = ($mode eq 'uc') ? uc($string) : lc($string);
/macosx-10.9.5/CPANInternal-140/Apache2-SOAP-0.73/t/lib/TestSOAP/
H A Dconvert.pm8 my $string = $args{string};
9 my $response = ($mode eq 'uc') ? uc($string) : lc($string);
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dstd_string.h22 * \brief C++ API: Central ICU header for including the C++ standard &lt;string&gt;
30 #include <string>
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dstrnlen.c21 #include <string.h>
27 strnlen (const char *string, size_t maxlen) argument
29 const char *end = memchr (string, '\0', maxlen);
30 return end ? (size_t) (end - string) : maxlen;
H A Dstrnlen1.c23 #include <string.h>
27 /* This is the same as strnlen (string, maxlen - 1) + 1. */
29 strnlen1 (const char *string, size_t maxlen) argument
31 const char *end = (const char *) memchr (string, '\0', maxlen);
33 return end - string + 1;
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dtrimblanks.c9 /* char *trimblanks(string, len)
10 /* char *string;
14 /* whitespace in \fIstring\fR, or a pointer to the string terminator
15 /* when the string contains no trailing whitespace.
16 /* The \fIlen\fR argument is either zero or the string length.
37 char *trimblanks(char *string, int len) argument
42 curr = string + len;
44 for (curr = string; *curr != 0; curr++)
47 while (curr > string && ISSPACE(curr[-1]))
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Durl.h35 #include <string>
57 operator string() const;
59 string scheme() const;
60 string host() const;
62 string path() const;
63 string resourceSpec() const;
64 string fullPath() const;
66 string username() const;
67 string password() const;
68 string basenam
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Durl.h35 #include <string>
57 operator string() const;
59 string scheme() const;
60 string host() const;
62 string path() const;
63 string resourceSpec() const;
64 string fullPath() const;
66 string username() const;
67 string password() const;
68 string basenam
[all...]
/macosx-10.9.5/swig-10/Lib/pike/
H A Dstd_string.i7 * SWIG typemaps for std::string
11 #include <string>
16 %naturalvar string;
18 class string;
22 %typemap(typecheck) string = char *;
23 %typemap(typecheck) const string & = char *;
25 %typemap(in, pikedesc="tStr") string {
27 Pike_error("Bad argument: Expected a string.\n");
28 $1.assign(STR0($input.u.string));
31 %typemap(in, pikedesc="tStr") const string
[all...]

Completed in 185 milliseconds

1234567891011>>