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

1234567891011>>

/macosx-10.10.1/pyobjc-45/2.6/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.10.1/Libc-1044.1.2/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.10.1/ruby-106/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);
H A Dset_len.c4 bug_str_set_len(VALUE str, VALUE len) argument
6 rb_str_set_len(str, NUM2LONG(len));
7 return str;
/macosx-10.10.1/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.10.1/apache-793/httpd/build/
H A Dmkdep.perl52 $str = "$of:\t$file";
53 $len = length $str;
58 $str = "\t";
59 $len = length $str;
80 print $str, "\\\n";
82 $str = $str . $1;
84 else { $str = $str . " " . $1; }
89 print $str, "\
[all...]
/macosx-10.10.1/OpenSSH-189/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.10.1/eap8021x-198/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.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A Dcspdebugging.c43 static void logCom(unsigned char *str) { argument
44 c2pstr((char *)str);
45 DebugStr(str);
49 void dblog0(char *str) { argument
51 strcpy((char *)outStr, str);
55 void dblog1(char *str, void *arg1) { argument
57 sprintf((char *)outStr, str, arg1);
61 void dblog2(char *str, void * arg1, void * arg2) { argument
63 sprintf((char *)outStr, str, arg1, arg2);
67 void dblog3(char *str, voi argument
73 dblog4(char *str, void * arg1, void * arg2, void * arg3, void * arg4) argument
[all...]
H A Dcspdebugging.h68 extern void dblog0(char *str);
69 extern void dblog1(char *str, void * arg1);
70 extern void dblog2(char *str, void * arg1, void * arg2);
71 extern void dblog3(char *str, void * arg1, void * arg2, void * arg3);
72 extern void dblog4(char *str, void * arg1, void * arg2, void * arg3, void * arg4);
81 #define dblog0(str) printf(str)
82 #define dblog1(str, arg1) printf(str, arg1)
83 #define dblog2(str, arg
111 _panic(const char *str) argument
[all...]
/macosx-10.10.1/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.10.1/dtrace-147/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.10.1/dtrace-147/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.10.1/OpenSSL098-52/src/crypto/buffer/
H A Dbuffer.c97 int BUF_MEM_grow(BUF_MEM *str, int len) argument
107 if (str->length >= len)
109 str->length=len;
112 if (str->max >= len)
114 memset(&str->data[str->length],0,len-str->length);
115 str->length=len;
125 if (str->data == NULL)
128 ret=OPENSSL_realloc(str
144 BUF_MEM_grow_clean(BUF_MEM *str, int len) argument
[all...]
/macosx-10.10.1/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.10.1/bootp-298/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.10.1/Heimdal-398.1.2/lib/gssapi/digest/
H A Dexport_name.c43 char *str = (char *)input_name; local
46 str, strlen(str), exported_name);
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dstrlwr.c42 strlwr(char *str) argument
46 for(s = str; *s; s++)
48 return str;
H A Dstrupr.c42 strupr(char *str) argument
46 for(s = str; *s; s++)
48 return str;
/macosx-10.10.1/Libc-1044.1.2/locale/FreeBSD/
H A Dfix_grouping.c45 __fix_locale_grouping_str(const char *str) argument
50 if (str == NULL || *str == '\0') {
54 for (src = (char*)str, dst = (char*)str; *src != '\0'; src++) {
82 return (dst == (char*)str) ? nogrouping : str;
86 return str;
95 __fix_nogrouping(const char *str) argument
97 return ((str
[all...]
/macosx-10.10.1/apr-32/apr/apr/test/
H A Dmod_test.c19 void print_hello(char str[256]);
22 void print_hello(char str[256]) argument
24 apr_cpystrn(str, "Hello - I'm a DSO!\n", strlen("Hello - I'm a DSO!\n") + 1);
/macosx-10.10.1/lukemftp-14/tnftp/libnetbsd/
H A Dstrdup.c36 strdup(const char *str) argument
41 len = strlen(str) + 1;
44 memcpy(copy, str, len);

Completed in 211 milliseconds

1234567891011>>