Searched refs:string (Results 51 - 75 of 10374) sorted by relevance

1234567891011>>

/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dlowercase.c34 char *lowercase(char *string) argument
39 for (cp = string; (ch = *cp) != 0; cp++)
42 return (string);
H A Dprintable.c18 /* The null-terminated input string.
42 char *printable(char *string, int replacement) argument
47 for (cp = string; (ch = *(unsigned char *) cp) != 0; cp++)
50 return (string);
H A Duppercase.c34 char *uppercase(char *string) argument
39 for (cp = string; (ch = *cp) != 0; cp++)
42 return (string);
H A Dskipblanks.c9 /* char *skipblanks(string)
10 /* const char *string;
13 /* character in the specified string, or a pointer to the string
14 /* terminator when the string contains all white-space characters.
35 char *skipblanks(const char *string) argument
39 for (cp = string; *cp != 0; cp++)
/macosx-10.10.1/ruby-106/ruby/lib/webrick/
H A Dhtmlutils.rb15 # Escapes &, ", > and < in +string+
17 def escape(string)
18 return "" unless string
19 str = string.b
24 str.force_encoding(string.encoding)
/macosx-10.10.1/tcl-105/tcl/tcl/compat/
H A Dfixstrtod.c29 char *string,
33 d = strtod(string, endPtr);
34 if ((endPtr != NULL) && (*endPtr != string) && ((*endPtr)[-1] == 0)) {
28 fixstrtod( char *string, char **endPtr) argument
/macosx-10.10.1/Heimdal-398.1.2/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...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/String/
H A Dmatch-004.js14 * of the expression new RegExp(regexp). Let string denote the result of
15 * converting the this value to a string. If regexp.global is false,
17 * section 15.7.5.3) on regexp with string as parameter.
21 * match with an empty string (in other words, if the value of
28 * require that its this value be a string object. Therefore, it can be
33 * this to be a string.
98 regexp, str_regexp, string, str_string, index, matches_array ) {
102 if ( regexp.exec(string) == null || matches_array == null ) {
104 string + ".match(" + regexp +")",
106 string
[all...]
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.1/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DSaslInteraction.h10 #include <string>
18 const std::string getPrompt() const;
19 const std::string getChallenge() const;
20 const std::string getDefaultResult() const;
22 void setResult(const std::string &res);
26 std::string m_result;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/antlr/
H A DString.hpp12 #include <string>
18 ANTLR_API ANTLR_USE_NAMESPACE(std)string operator+( const ANTLR_USE_NAMESPACE(std)string& lhs, const int rhs );
19 ANTLR_API ANTLR_USE_NAMESPACE(std)string operator+( const ANTLR_USE_NAMESPACE(std)string& lhs, size_t rhs );
21 ANTLR_API ANTLR_USE_NAMESPACE(std)string charName( int ch );
/macosx-10.10.1/network_cmds-457/mnc.tproj/
H A Dmnc_error.c48 void mnc_warning(char * string, ...) argument
53 va_start(ap, string);
62 if (vfprintf(stderr, string, ap) < 0)
71 void mnc_error(char * string, ...) argument
76 va_start(ap, string);
85 if (vfprintf(stderr, string, ap) < 0)
/macosx-10.10.1/cxxfilt-11/cxxfilt/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...]
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dxstrndup.h1 /* Duplicate a bounded initial segment of a string, with out-of-memory
24 extern char *xstrndup (const char *string, size_t n);
/macosx-10.10.1/groff-38/groff/src/preproc/refer/
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;
/macosx-10.10.1/swig-12/Lib/csharp/
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(ctype) string "cha
[all...]
/macosx-10.10.1/swig-12/Lib/mzscheme/
H A Dstd_common.i15 #include <string>
17 std::string swig_scm_to_string(Scheme_Object* x) {
18 return std::string(SCHEME_STR_VAL(x));
20 Scheme_Object* swig_make_string(const std::string& s) {
/macosx-10.10.1/swig-12/Lib/ocaml/
H A Dstd_common.i15 #include <string>
16 CAML_VALUE SwigString_FromString(const std::string& s) {
19 std::string SwigString_AsString(CAML_VALUE o) {
20 return std::string((char *)caml_ptr_val(o,0));
/macosx-10.10.1/swig-12/Lib/std/
H A Dstd_except.i24 logic_error(const string& msg);
29 domain_error(const string& msg);
34 invalid_argument(const string& msg);
39 length_error(const string& msg);
44 out_of_range(const string& msg);
49 runtime_error(const string& msg);
54 range_error(const string& msg);
59 overflow_error(const string& msg);
64 underflow_error(const string& msg);
/macosx-10.10.1/text_cmds-88/sort/
H A Dmemrchr.h20 # include <string.h>
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/RegExp/
H A Dregress-100199.js40 var string = ''; variable
49 string = 'abc';
51 actualmatch = string.match(pattern);
55 string = '';
57 actualmatch = string.match(pattern);
61 string = '[';
63 actualmatch = string.match(pattern);
67 string = '/';
69 actualmatch = string.match(pattern);
73 string
[all...]
/macosx-10.10.1/KerberosHelper-151/Source/
H A Dutils.c36 char *string = NULL; local
42 /* This is the fastest way to get the C string, but it does depend on how
45 string = (char *) CFStringGetCStringPtr (inString, kCFStringEncodingUTF8);
47 if (NULL != string) {
48 string = strdup (string);
51 string = malloc (length);
53 if (NULL != string && !CFStringGetCString (inString, string, length, kCFStringEncodingUTF8)) {
54 free (string);
[all...]
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c++/detail/
H A Dapplication.hpp36 #include <string>
61 std::string m_argument;
62 std::string m_description;
67 option(char, const std::string&, const std::string&);
92 std::string m_description;
93 std::string m_manpage, m_global_manpage;
99 virtual std::string specific_args(void) const;
105 app(const std::string&, const std::string
[all...]
/macosx-10.10.1/swig-12/Lib/guile/
H A Dstd_string.i7 * SWIG typemaps for std::string
11 // std::string is typemapped by value
12 // This can prevent exporting methods which return a string
20 #include <string>
25 %naturalvar string;
27 class string;
29 %typemap(typecheck) string = char *;
30 %typemap(typecheck) const string & = char *;
32 %typemap(in) string (char* tempptr) {
38 SWIG_exception(SWIG_TypeError, "string expecte
[all...]
/macosx-10.10.1/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_;

Completed in 188 milliseconds

1234567891011>>