Searched refs:str (Results 201 - 225 of 4607) sorted by relevance

1234567891011>>

/macosx-10.10.1/bind9-45.101/bind9/lib/isc/unix/include/isc/
H A Dsyslog.h31 isc_syslog_facilityfromstring(const char *str, int *facilityp);
33 * Convert 'str' to the appropriate syslog facility constant.
37 *\li 'str' is not NULL
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/win32/include/isc/
H A Dsyslog.h29 isc_syslog_facilityfromstring(const char *str, int *facilityp);
31 * Convert 'str' to the appropriate syslog facility constant.
35 * 'str' is not NULL
/macosx-10.10.1/cxxfilt-11/cxxfilt/intl/
H A Dlog.c31 print_escaped (stream, str)
33 const char *str;
36 for (; *str != '\0'; str++)
37 if (*str == '\n')
40 if (str[1] == '\0')
46 if (*str == '"' || *str == '\\')
48 putc (*str, stream);
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dstrtod.c50 strtod (char *str, char **ptr) argument
55 return atof (str);
57 p = str;
77 return atof (str);
82 return atof (str);
101 return atof (str);
127 return atof (str);
131 return atof (str);
134 *ptr = str;
/macosx-10.10.1/llvmCore-3425.0.34/utils/lit/lit/
H A D__init__.py8 __version__ = '.'.join(map(str, __versioninfo__)) + 'dev'
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tinfo/
H A Dlib_ti.c42 tigetflag(NCURSES_CONST char *str) argument
46 T((T_CALLED("tigetflag(%s)"), str));
52 if (!strcmp(str, capname)) {
63 tigetnum(NCURSES_CONST char *str) argument
67 T((T_CALLED("tigetnum(%s)"), str));
73 if (!strcmp(str, capname)) {
85 tigetstr(NCURSES_CONST char *str) argument
89 T((T_CALLED("tigetstr(%s)"), str));
95 if (!strcmp(str, capname)) {
/macosx-10.10.1/ntp-92/lib/isc/unix/include/isc/
H A Dsyslog.h31 isc_syslog_facilityfromstring(const char *str, int *facilityp);
33 * Convert 'str' to the appropriate syslog facility constant.
37 *\li 'str' is not NULL
/macosx-10.10.1/ntp-92/lib/isc/win32/include/isc/
H A Dsyslog.h29 isc_syslog_facilityfromstring(const char *str, int *facilityp);
31 * Convert 'str' to the appropriate syslog facility constant.
35 * 'str' is not NULL
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Ddsn_mask.c9 /* int dsn_notify_mask(str)
10 /* const char *str;
15 /* int dsn_ret_code(str)
16 /* const char *str;
37 /* .IP str
90 int dsn_ret_code(const char *str) argument
92 return (name_code(dsn_ret_table, NAME_CODE_FLAG_NONE, str));
108 int dsn_notify_mask(const char *str) argument
111 str, NAME_MASK_ANY_CASE | NAME_MASK_RETURN);
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dshellwords.rb94 # command line. +str+ can be a non-string object that responds to
122 # Returns an empty quoted String if +str+ has a length of zero.
123 def shellescape(str)
124 str = str.to_s
127 return "''" if str.empty?
129 str = str.dup
134 str.gsub!(/([^A-Za-z0-9_\-.,:\/@\n])/, "\\\\\\1")
138 str
[all...]
/macosx-10.10.1/ruby-106/ruby/tool/
H A Dparse.rb2 $str = ARGF.read.sub(/^__END__.*\z/m, '')
6 puts $str
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/term/ansi/
H A Dcode.tcl15 proc ::term::ansi::code::esc {str} {return \033${str}}
16 proc ::term::ansi::code::escb {str} {esc \[${str}}
/macosx-10.10.1/tidy-15.15/tidy/src/
H A Dforward.h29 #define TY_(str) TYDYAPPEND(prvTidy,str)
36 #define TY_(str) str
/macosx-10.10.1/xnu-2782.1.97/libkern/kxld/
H A Dkxld_demangle.h38 * @param str The C-string to be demangled.
49 const char * kxld_demangle(const char *str, char **buffer, size_t *length)
/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_markup_parser.rb55 str = <<-STR
67 assert_equal expected, @RMP.parse(str).parts
71 str = <<-STR
80 assert_equal expected, @RMP.parse(str).parts
84 str = <<-STR
98 assert_equal expected, @RMP.parse(str).parts
102 str = <<-STR
111 assert_equal expected, @RMP.parse(str).parts
115 str = <<-STR
131 assert_equal expected, @RMP.parse(str)
[all...]
/macosx-10.10.1/bind9-45.101/bind9/contrib/zkt/
H A Dnscomm.c56 char str[254+1]; local
67 snprintf (str, sizeof (str), "\"%s\" in view \"%s\"", domain, z->view);
69 snprintf (str, sizeof (str), "\"%s\"", domain);
71 lg_mesg (LG_NOTICE, "%s: %s dynamic zone", str, action);
72 verbmesg (1, z, "\t%s dynamic zone %s\n", action, str);
80 *str = '\0';
83 if ( (fp = popen (cmdline, "r")) == NULL || fgets (str, sizeof str, f
104 char str[254+1]; local
199 char str[254+1]; local
[all...]
H A Dstrlist.c51 ** prepstrlist (str, delim)
53 ** 'str' is a list of substrings delimeted by 'delim'
58 char *prepstrlist (const char *str, const char *delim) argument
65 if ( str == NULL )
68 len = strlen (str);
74 for ( *p++ = '\0'; *str; str++ )
76 if ( strchr (delim, *str) == NULL )
77 *p++ = *str;
93 ** isinlist (str, lis
96 isinlist(const char *str, const char *list) argument
[all...]
/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dtool_paramhlp.c134 void cleanarg(char *str) argument
140 if(str) {
141 size_t len = strlen(str);
142 memset(str, ' ', len);
145 (void)str;
154 * getparameter a lot, we must check it for NULL before accessing the str
158 ParameterError str2num(long *val, const char *str) argument
160 if(str) {
162 long num = strtol(str, &endptr, 10);
163 if((endptr != str)
180 str2unum(long *val, const char *str) argument
200 str2double(double *val, const char *str) argument
222 str2udouble(double *val, const char *str) argument
244 proto2num(struct OperationConfig *config, long *val, const char *str) argument
347 str2offset(curl_off_t *val, const char *str) argument
442 ftpfilemethod(struct OperationConfig *config, const char *str) argument
454 ftpcccmethod(struct OperationConfig *config, const char *str) argument
464 delegation(struct OperationConfig *config, char *str) argument
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Djoin.tcl71 gets $did str
72 do_join primary.db "1 0" $str oa $flags\
74 gets $did str
75 do_join primary.db "2 0" $str oa $flags\
77 gets $did str
78 do_join primary.db "3 0" $str oa $flags\
80 gets $did str
81 do_join primary.db "4 0" $str oa $flags\
83 gets $did str
84 do_join primary.db "1" $str o
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/RegExp/
H A Dregress-103087.js92 var str = ''; variable
93 str += '<html xmlns="http://www.w3.org/1999/xhtml"' + '\n';
94 str += ' xmlns:xlink="http://www.w3.org/XML/XLink/0.9">' + '\n';
95 str += ' <head><title>Three Namespaces</title></head>' + '\n';
96 str += ' <body>' + '\n';
97 str += ' <h1 align="center">An Ellipse and a Rectangle</h1>' + '\n';
98 str += ' <svg xmlns="http://www.w3.org/Graphics/SVG/SVG-19991203.dtd" ' + '\n';
99 str += ' width="12cm" height="10cm">' + '\n';
100 str += ' <ellipse rx="110" ry="130" />' + '\n';
101 str
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/webrick/
H A Dhttputils.rb170 # Splits a header value +str+ according to HTTP specification.
172 def split_header_value(str)
173 str.scan(%r'\G((?:"(?:\\.|[^"])+?"|[^",]+)+)
218 # Removes quotes and escapes from +str+
220 def dequote(str)
221 ret = (/\A"(.*)"\Z/ =~ str) ? $1 : str.dup
228 # Quotes and escapes quotes in +str+
230 def quote(str)
231 '"' << str
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/samples/break/
H A Dubreak.c17 void printTextRange(UChar* str, int32_t start, int32_t end) argument
22 savedEndChar = str[end];
23 str[end] = 0;
24 u_austrncpy(charBuf, str+start, sizeof(charBuf)-1);
27 str[end] = savedEndChar;
33 void printEachForward( UBreakIterator* boundary, UChar* str) { argument
38 printTextRange(str, start, end );
44 void printEachBackward( UBreakIterator* boundary, UChar* str) { argument
49 printTextRange( str, start, end );
54 void printFirst(UBreakIterator* boundary, UChar* str) { argument
62 printLast(UBreakIterator* boundary, UChar* str) argument
71 printAt(UBreakIterator* boundary, int32_t pos , UChar* str) argument
[all...]
/macosx-10.10.1/dtrace-147/test/tst/common/funcs/
H A Dtst.substr.d43 str = "foobarbazbop";
68 command[i].index = strlen(str) - 1;
72 command[i].index = strlen(str);
76 command[i].index = strlen(str) + 1;
89 command[i].length = strlen(str) - command[i].index + 1;
93 command[i].length = strlen(str) - command[i].index + 2;
144 command[i].index = -2 * strlen(str);
145 command[i].length = 2 * strlen(str);
148 command[i].index = -2 * strlen(str);
149 command[i].length = strlen(str);
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbooker.pl199 $str = $a;
200 $str = $str . ".$b" if ($b != 0);
201 $str = $str . ".$c" if ($c != 0);
207 $str = "chapter one";
209 $str = "chapter two";
211 $str = "chapter three";
213 $str = "chapter four";
215 $str
[all...]
/macosx-10.10.1/dcerpc-61/dcerpc/idl_lib/
H A Dernodtbl.c547 - str, the node table
1040 rpc_ss_pvt_node_table_t *str,
1050 hash_entry = get_hash_chain_head (str, ptr);
1092 rpc_ss_pvt_node_table_t *str; local
1098 str = (rpc_ss_pvt_node_table_t*) tab;
1103 if (num > str->high_num) str->high_num = num;
1108 hash_entry = get_hash_chain_head (str, ptr);
1113 hash_entry = (rpc_ss_hash_entry_t*) rpc_ss_mem_alloc (str->mem_h, sizeof(rpc_ss_hash_entry_t));
1126 for (temp = get_hash_chain_head (str, pt
1038 rpc_ss_find_hash_entry( rpc_ss_pvt_node_table_t *str, byte_p_t ptr ) argument
1177 rpc_ss_pvt_node_table_t * str; local
1262 rpc_ss_pvt_node_table_t * str; local
1391 rpc_ss_pvt_node_table_t * str; local
1492 rpc_ss_pvt_node_table_t * str; local
1585 rpc_ss_pvt_node_table_t * str; local
1776 rpc_ss_pvt_node_table_t * str; local
1869 rpc_ss_pvt_node_table_t * str; local
1934 rpc_ss_pvt_node_table_t * str; local
1990 rpc_ss_pvt_node_table_t *str; local
2033 rpc_ss_node_table_t str; variable
[all...]

Completed in 370 milliseconds

1234567891011>>