Searched refs:str (Results 26 - 50 of 4317) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/
H A DTestCustomNamedGetter.idl32 void anotherFunction(DOMString str);
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/strings/
H A Dapr_strtok.c27 APR_DECLARE(char *) apr_strtok(char *str, const char *sep, char **last) argument
31 if (!str) /* subsequent call */
32 str = *last; /* start where we left off */
35 while (*str && strchr(sep, *str))
36 ++str;
38 if (!*str) /* no more tokens */
41 token = str;
/macosx-10.9.5/apr-30/apr/apr/strings/
H A Dapr_strtok.c27 APR_DECLARE(char *) apr_strtok(char *str, const char *sep, char **last) argument
31 if (!str) /* subsequent call */
32 str = *last; /* start where we left off */
35 while (*str && strchr(sep, *str))
36 ++str;
38 if (!*str) /* no more tokens */
41 token = str;
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/interpose-chained/
H A Dfoo.c26 const char* foo(const char* str) argument
29 asprintf(&result, "foo(%s)", str);
/macosx-10.9.5/libxml2-26/libxml2/python/tests/
H A Dserialize.py12 str = doc.serialize() variable
13 if str != """<?xml version="1.0"?>
18 str = doc.serialize("iso-8859-1") variable
19 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
24 str = doc.serialize(format=1) variable
25 if str != """<?xml version="1.0"?>
32 str = doc.serialize("iso-8859-1", 1) variable
33 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
45 str = root.serialize() variable
46 if str !
49 str = root.serialize("iso-8859-1") variable
53 str = root.serialize(format=1) variable
59 str = root.serialize("iso-8859-1", 1) variable
71 str = doc.serialize() variable
77 str = doc.serialize("ISO-8859-1") variable
83 str = doc.serialize(format=1) variable
95 str = doc.serialize("iso-8859-1", 1) variable
113 str = root.serialize() variable
117 str = root.serialize("ISO-8859-1") variable
121 str = root.serialize(format=1) variable
131 str = root.serialize("iso-8859-1", 1) variable
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A Dserialize.py12 str = doc.serialize() variable
13 if str != """<?xml version="1.0"?>
18 str = doc.serialize("iso-8859-1") variable
19 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
24 str = doc.serialize(format=1) variable
25 if str != """<?xml version="1.0"?>
32 str = doc.serialize("iso-8859-1", 1) variable
33 if str != """<?xml version="1.0" encoding="iso-8859-1"?>
45 str = root.serialize() variable
46 if str !
49 str = root.serialize("iso-8859-1") variable
53 str = root.serialize(format=1) variable
59 str = root.serialize("iso-8859-1", 1) variable
71 str = doc.serialize() variable
77 str = doc.serialize("ISO-8859-1") variable
83 str = doc.serialize(format=1) variable
95 str = doc.serialize("iso-8859-1", 1) variable
113 str = root.serialize() variable
117 str = root.serialize("ISO-8859-1") variable
121 str = root.serialize(format=1) variable
131 str = root.serialize("iso-8859-1", 1) variable
[all...]
/macosx-10.9.5/Libc-997.90.3/stdlib/FreeBSD/
H A Datoi.c41 atoi(str)
42 const char *str;
44 return (int)strtol_l(str, (char **)NULL, 10, __current_locale());
48 atoi_l(str, loc)
49 const char *str;
53 return (int)strtol_l(str, (char **)NULL, 10, loc);
H A Datol.c41 atol(str)
42 const char *str;
44 return strtol_l(str, (char **)NULL, 10, __current_locale());
48 atol_l(str, loc)
49 const char *str;
53 return strtol_l(str, (char **)NULL, 10, loc);
H A Datoll.c38 atoll(str)
39 const char *str;
41 return strtoll_l(str, (char **)NULL, 10, __current_locale());
45 atoll_l(str, loc)
46 const char *str;
50 return strtoll_l(str, (char **)NULL, 10, loc);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CocoaRepl/
H A Dio.rb16 def write(str)
17 notify_to_observers(:write, str)
18 original_write(str)
27 def write(str)
28 notify_to_observers(:write, str)
29 original_write(str)
/macosx-10.9.5/ruby-104/ruby/ext/-test-/string/
H A Dmodify.c4 bug_str_modify(VALUE str) argument
6 rb_str_modify(str);
7 return str;
11 bug_str_modify_expand(VALUE str, VALUE expand) argument
13 rb_str_modify_expand(str, NUM2LONG(expand));
14 return str;
H A Dcstr.c4 bug_str_cstr_term(VALUE str) argument
8 rb_str_modify(str);
9 len = RSTRING_LEN(str);
10 RSTRING_PTR(str)[len] = 'x';
11 s = StringValueCStr(str);
/macosx-10.9.5/groff-38/groff/src/libs/libgroff/
H A Dstrtol.c47 long strtol(str, ptr, base)
48 char *str, **ptr;
51 char *start = str;
57 while (ISASCII((unsigned char)*str) && isspace((unsigned char)*str))
58 str++;
60 if (*str == '-') {
62 str++;
65 if (*str == '0') {
66 if (str[
[all...]
/macosx-10.9.5/apache-786.1/httpd/build/
H A Dmkdep.perl54 $str = "$of:\t$file";
55 $len = length $str;
60 $str = "\t";
61 $len = length $str;
82 print $str, "\\\n";
84 $str = $str . $1;
86 else { $str = $str . " " . $1; }
91 print $str, "\
[all...]
/macosx-10.9.5/OpenSSH-186/osslshim/ossl/
H A Dossl-buffer.c63 BUF_MEM_grow(BUF_MEM *str, int len) argument
68 if (str->length >= len) {
69 str->length = len;
72 if (str->max >= len) {
73 memset(&str->data[str->length], 0, len-str->length);
74 str->length = len;
78 if (str->data == NULL) {
81 ret = realloc(str
98 BUF_MEM_grow_clean(BUF_MEM *str, int len) argument
[all...]
/macosx-10.9.5/eap8021x-180/EAP8021X.fproj/
H A DEAPOLUtil.c56 static const char * str[] = { local
65 return (str[type]);
73 CFMutableStringRef str)
87 STRING_APPEND(str,
93 STRING_APPEND(str, "%-16s", "replay_counter:");
94 print_bytes_cfstr(str, descr_p->replay_counter,
96 STRING_APPEND(str, "\n");
97 STRING_APPEND(str, "%-16s", "key_IV:");
98 print_bytes_cfstr(str, descr_p->key_IV, sizeof(descr_p->key_IV));
99 STRING_APPEND(str, "\
71 RC4KeyDescriptorAppendDescription(EAPOLRC4KeyDescriptorRef descr_p, unsigned int body_length, CFMutableStringRef str) argument
113 IEEE80211KeyDescriptorAppendDescription(EAPOLIEEE80211KeyDescriptorRef descr_p, unsigned int body_length, CFMutableStringRef str) argument
159 eapol_key_descriptor_valid(void * body, unsigned int body_length, CFMutableStringRef str) argument
226 eapol_body_valid(EAPOLPacketRef eapol_p, unsigned int length, CFMutableStringRef str) argument
274 eapol_header_valid(EAPOLPacketRef eapol_p, unsigned int length, CFMutableStringRef str) argument
295 EAPOLPacketIsValid(EAPOLPacketRef eapol_p, unsigned int length, CFMutableStringRef str) argument
308 CFMutableStringRef str = NULL; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/lib/
H A Dcspdebugging.c44 static void logCom(unsigned char *str) { argument
45 c2pstr((char *)str);
46 DebugStr(str);
50 void dblog0(char *str) { argument
52 strcpy((char *)outStr, str);
56 void dblog1(char *str, void *arg1) { argument
58 sprintf((char *)outStr, str, arg1);
62 void dblog2(char *str, void * arg1, void * arg2) { argument
64 sprintf((char *)outStr, str, arg1, arg2);
68 void dblog3(char *str, voi argument
74 dblog4(char *str, void * arg1, void * arg2, void * arg3, void * arg4) argument
[all...]
H A Dcspdebugging.h69 extern void dblog0(char *str);
70 extern void dblog1(char *str, void * arg1);
71 extern void dblog2(char *str, void * arg1, void * arg2);
72 extern void dblog3(char *str, void * arg1, void * arg2, void * arg3);
73 extern void dblog4(char *str, void * arg1, void * arg2, void * arg3, void * arg4);
82 #define dblog0(str) printf(str)
83 #define dblog1(str, arg1) printf(str, arg1)
84 #define dblog2(str, arg
112 _panic(const char *str) argument
[all...]
/macosx-10.9.5/bc-21/bc/bc/
H A Dload.c128 long_val (str)
129 char **str;
133 if (**str == '-')
136 (*str)++;
138 while (isdigit((int)(**str)))
139 val = val*10 + *(*str)++ - '0';
154 char *str; local
162 str = code;
165 while (*str != 0)
172 if (*str
[all...]
/macosx-10.9.5/dtrace-118.1/libctf/
H A Dctf_error.c83 const char *str; local
86 str = _ctf_errlist[error - ECTF_BASE];
88 str = ctf_strerror(error);
90 return (str ? str : "Unknown error");
/macosx-10.9.5/dtrace-118.1/test/tst/common/safety/
H A Dtst.shortstr.d34 this->str = ",,,Carrots,,Barley,Oatmeal,,,,,,,,,,,,,,,,,,Beans,";
39 strtok(this->str, ",");
44 this->str = ",,,,,,,,,,,,,,,,,,,,,,Carrots,";
45 strtok(this->str, ",");
50 strtok(this->str, "a");
55 printf("%s\n", substr(this->str, 1, 40));
60 printf("%s\n", strjoin(this->str, this->str));
66 printf("%d\n", index(this->str, this->str1));
71 printf("%d\n", rindex(this->str, thi
[all...]
/macosx-10.9.5/screen-22/screen/
H A Dterm.h.dist19 char *str;
32 #define d_CM d_tcs[5].str
33 #define D_CM (D_tcs[5].str)
34 #define d_HO d_tcs[6].str
35 #define D_HO (D_tcs[6].str)
36 #define d_CR d_tcs[7].str
37 #define D_CR (D_tcs[7].str)
38 #define d_UP d_tcs[8].str
39 #define D_UP (D_tcs[8].str)
40 #define d_CUP d_tcs[9].str
[all...]
/macosx-10.9.5/bootp-268.1/bootplib/
H A DDHCPv6.c46 const char * str; local
50 str = "None";
53 str = "SOLICIT";
56 str = "ADVERTISE";
59 str = "REQUEST";
62 str = "CONFIRM";
65 str = "RENEW";
68 str = "REBIND";
71 str = "REPLY";
74 str
152 DHCPv6PacketPrintToString(CFMutableStringRef str, const DHCPv6PacketRef pkt, int pkt_len) argument
170 CFMutableStringRef str; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/digest/
H A Dexport_name.c43 char *str = (char *)input_name; local
46 str, strlen(str), exported_name);
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dstrlwr.c42 strlwr(char *str) argument
46 for(s = str; *s; s++)
48 return str;

Completed in 380 milliseconds

1234567891011>>