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

1234567891011>>

/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dfilemode.c108 mode_string (unsigned long mode, char *str)
110 str[0] = ftypelet ((unsigned long) mode);
111 str[1] = (mode & S_IRUSR) != 0 ? 'r' : '-';
112 str[2] = (mode & S_IWUSR) != 0 ? 'w' : '-';
113 str[3] = (mode & S_IXUSR) != 0 ? 'x' : '-';
114 str[4] = (mode & S_IRGRP) != 0 ? 'r' : '-';
115 str[5] = (mode & S_IWGRP) != 0 ? 'w' : '-';
116 str[6] = (mode & S_IXGRP) != 0 ? 'x' : '-';
117 str[7] = (mode & S_IROTH) != 0 ? 'r' : '-';
118 str[
107 mode_string(unsigned long mode, char *str) argument
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/intl/
H A Dhash-string.h43 const char *str = str_param; variable
47 while (*str != '\0')
50 hval += (unsigned long int) *str++;
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.9.5/Heimdal-323.92.1/lib/gssapi/krb5/
H A Ddisplay_name.c46 char *str; local
51 KRB5_PRINCIPAL_UNPARSE_DISPLAY, &str);
57 output_name_buffer->length = strlen(str);
58 output_name_buffer->value = str;
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/ntlm/
H A Ddisplay_name.c50 char *str = NULL; local
61 len = asprintf(&str, "%s@%s", n->user, n->domain);
62 if (len < 0 || str == NULL) {
67 output_name_buffer->value = str;
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dsprintf.c47 sprintf(char * __restrict str, char const * __restrict fmt, ...) argument
53 ret = vsprintf_l(str, __current_locale(), fmt, ap);
59 sprintf_l(char * __restrict str, locale_t loc, char const * __restrict fmt, ...) argument
65 ret = vsprintf_l(str, loc, fmt, ap);
H A Dsscanf.c47 sscanf(const char * __restrict str, char const * __restrict fmt, ...) argument
53 ret = vsscanf_l(str, __current_locale(), fmt, ap);
59 sscanf_l(const char * __restrict str, locale_t loc, char const * __restrict fmt, ...) argument
65 ret = vsscanf_l(str, loc, fmt, ap);
H A Dswscanf.c37 swscanf(const wchar_t * __restrict str, const wchar_t * __restrict fmt, ...) argument
43 r = vswscanf_l(str, __current_locale(), fmt, ap);
50 swscanf_l(const wchar_t * __restrict str, locale_t loc, argument
58 r = vswscanf_l(str, loc, fmt, ap);
/macosx-10.9.5/PyRSS2Gen-5/
H A Dsetup.py8 version = ".".join(map(str, PyRSS2Gen.__version__)),
/macosx-10.9.5/bind9-45.100/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.9.5/bind9-45.100/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.9.5/llvmCore-3425.0.33/utils/lit/lit/
H A D__init__.py8 __version__ = '.'.join(map(str, __versioninfo__)) + 'dev'
/macosx-10.9.5/ntp-88/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.9.5/ntp-88/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.9.5/postfix-252/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.9.5/ruby-104/ruby/tool/
H A Dparse.rb2 $str = ARGF.read.sub(/^__END__.*\z/m, '')
6 puts $str
/macosx-10.9.5/tcl-102/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.9.5/tidy-15.12/tidy/src/
H A Dforward.h29 #define TY_(str) TYDYAPPEND(prvTidy,str)
36 #define TY_(str) str
/macosx-10.9.5/xnu-2422.115.4/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.9.5/BerkeleyDB-21/db/clib/
H A Dsnprintf.c29 snprintf(char *str, size_t n, const char *fmt, ...) argument
31 snprintf(str, n, fmt, va_alist)
32 char *str;
50 len = (size_t)vsprintf(str, fmt, ap);
52 len = strlen(str);
74 vsnprintf(str, n, fmt, ap)
75 char *str;
86 len = (size_t)vsprintf(str, fmt, ap);
88 len = strlen(str);
/macosx-10.9.5/ICU-511.35/icuSources/samples/translit/answers/
H A Dmain_2.cpp25 UnicodeString str, str2; local
56 str.remove();
57 defFmt->format(cal->getTime(status), str, status);
60 uprintf(escape(str));
64 str.remove();
65 fmt->format(cal->getTime(status), str, status);
68 uprintf(escape(str));
72 greek_latin->transliterate(str);
74 uprintf(escape(str));
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Hakoiri-Musume/
H A Dmain_0.3.m39 NSString* str;
52 str = [NSString stringWithCString: DEFAULT_MAIN_SCRIPT];
53 str = [bundle pathForResource: str ofType: nil];
54 if (str == nil) exit_with_msg ("config error: DEFAULT_MAIN_SCRIPT missing");
55 conf->main_script = strdup ([str cString]);
60 str = [dic objectForKey: @"RubyProgram"];
61 if (str == nil) exit_with_msg ("config error: RubyProgram missing.");
62 conf->ruby_program = strdup ([str cString]);
65 str
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/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.9.5/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.9.5/ncurses-42/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)) {

Completed in 393 milliseconds

1234567891011>>