Searched refs:strings (Results 1 - 25 of 1085) sorted by relevance

1234567891011>>

/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Dsysdep.h41 #include <strings.h>
/macosx-10.10.1/BerkeleyDB-21/db/os/
H A Dos_stack.c30 char **strings; local
38 strings = backtrace_symbols(array, size);
41 __db_errx(env, "%s", strings[i]);
42 free(strings);
/macosx-10.10.1/ruby-106/ruby/lib/rake/
H A Dtrace_output.rb9 def trace_on(out, *strings)
11 if strings.empty?
14 output = strings.map { |s| s.end_with?(sep) ? s : s + sep }.join
/macosx-10.10.1/mDNSResponder-561.1.1/Clients/FirefoxExtension/extension/content/
H A Doverlay.js7 this.strings = document.getElementById("bonjour4firefox-strings");
12 promptService.alert(window, this.strings.getString("helloMessageTitle"), this.strings.getString("helloMessage"));
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Dgetusershell.c73 static char **curshell, **shells, *strings; variable
98 if (strings != NULL)
99 free(strings);
100 strings = NULL;
121 if (strings != NULL)
122 free(strings);
123 strings = NULL;
130 if ((strings = malloc((u_int)statb.st_size)) == NULL) {
137 free(strings);
138 strings
[all...]
/macosx-10.10.1/cups-408/cups/locale/
H A Dstrings2po.c4 * Convert Apple .strings file (UTF-16 BE text file) to GNU gettext .po files.
16 * strings2po filename.strings filename.po
28 * The .strings file format is simple:
33 * Both the id and str strings use standard C quoting for special characters
41 static int read_strings(FILE *strings, char *buffer, size_t bufsize,
47 * main() - Convert .strings file to .po.
54 FILE *strings, /* .strings file */ local
65 puts("Usage: strings2po filename.strings filename.po");
70 * Cheat by using iconv to convert the .strings fil
112 read_strings(FILE *strings, char *buffer, size_t bufsize, char **id, char **str) argument
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dgetusershell.c78 static char **curshell, **shells, *strings; variable
103 if (strings != NULL)
104 free(strings);
105 strings = NULL;
129 free(strings);
130 strings = NULL;
141 strings = malloc(cp - tmp);
142 if(strings == NULL) {
147 memcpy(strings, tmp, cp - tmp);
148 for(sp = shells, cp = strings; *c
[all...]
/macosx-10.10.1/curl-83.1.2/curl/tests/libtest/
H A Dlib576.c46 if(finfo->strings.perm) {
47 printf("Permissions: %s", finfo->strings.perm);
53 if(finfo->strings.user)
54 printf("User: %s\n", finfo->strings.user);
55 if(finfo->strings.group)
56 printf("Group: %s\n", finfo->strings.group);
57 if(finfo->strings.time)
58 printf("Time: %s\n", finfo->strings.time);
69 printf("Target: %s\n", finfo->strings.target);
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/RegExp/
H A Dregress-31316.js37 var strings = new Array();
61 strings[i] = string;
73 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A D15.10.6.2-1.js71 var strings = new Array();
105 strings[i] = string;
117 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-169497.js53 var strings = new Array();
86 strings[i] = string;
98 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-202564.js42 * to hold |undefined| instead of the empty strings one gets in Perl and IE6.
56 var strings = new Array();
82 strings[i] = string;
94 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-216591.js52 var strings = new Array();
98 strings[i] = string;
110 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-220367-001.js52 var strings = new Array();
85 strings[i] = string;
97 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
H A Dregress-76683.js36 var strings = new Array();
79 strings[i] = string;
91 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dbytestriebuilder.cpp38 void setTo(const StringPiece &s, int32_t val, CharString &strings, UErrorCode &errorCode);
40 StringPiece getString(const CharString &strings) const {
44 length=(uint8_t)strings[offset++];
47 length=((int32_t)(uint8_t)strings[offset]<<8)|(uint8_t)strings[offset+1];
50 return StringPiece(strings.data()+offset, length);
52 int32_t getStringLength(const CharString &strings) const {
55 return (uint8_t)strings[offset];
58 return ((int32_t)(uint8_t)strings[offset]<<8)|(uint8_t)strings[offse
89 setTo(const StringPiece &s, int32_t val, CharString &strings, UErrorCode &errorCode) argument
182 const CharString *strings=static_cast<const CharString *>(context); local
[all...]
H A Ducharstriebuilder.cpp38 void setTo(const UnicodeString &s, int32_t val, UnicodeString &strings, UErrorCode &errorCode);
40 UnicodeString getString(const UnicodeString &strings) const {
41 int32_t length=strings[stringOffset];
42 return strings.tempSubString(stringOffset+1, length);
44 int32_t getStringLength(const UnicodeString &strings) const {
45 return strings[stringOffset];
48 UChar charAt(int32_t index, const UnicodeString &strings) const {
49 return strings[stringOffset+1+index];
54 int32_t compareStringTo(const UCharsTrieElement &o, const UnicodeString &strings) const;
57 // The first strings uni
64 setTo(const UnicodeString &s, int32_t val, UnicodeString &strings, UErrorCode &errorCode) argument
135 const UnicodeString *strings=static_cast<const UnicodeString *>(context); local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/kadm5/
H A Dsample_passwd_check.c75 char *strings[2]; local
78 strings[0] = principal->name.name_string.val[0]; /* XXX */
79 strings[1] = NULL;
82 msg = FascistCheck(s, DICTPATH, strings);
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dbashansi.h32 # include <strings.h>
/macosx-10.10.1/dtrace-147/libdtrace/
H A Ddt_string.h33 #include <strings.h>
/macosx-10.10.1/Heimdal-398.1.2/kadmin/
H A Dmod.c60 struct getarg_strings *strings)
71 if (strings->num_strings == 1 && strings->strings[0][0] == '\0') {
79 calloc(strings->num_strings,
81 ext.data.u.allowed_to_delegate_to.len = strings->num_strings;
83 for (i = 0; i < strings->num_strings; i++) {
84 ret = krb5_parse_name(contextp, strings->strings[i], &p);
107 struct getarg_strings *strings)
58 add_constrained_delegation(krb5_context contextp, kadm5_principal_ent_rec *princ, struct getarg_strings *strings) argument
106 add_aliases(krb5_context contextp, kadm5_principal_ent_rec *princ, struct getarg_strings *strings) argument
149 add_pkinit_acl(krb5_context contextp, kadm5_principal_ent_rec *princ, struct getarg_strings *strings) argument
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dregexp-opt.el1 ;;; regexp-opt.el --- generate efficient regexps to match strings
8 ;; Keywords: strings, regexps, extensions
31 ;; This package generates a regexp from a given list of strings (which matches
32 ;; one of those strings) so that the regexp generated by:
34 ;; (regexp-opt strings)
38 ;; (mapconcat 'regexp-quote strings "\\|")
42 ;; (let ((strings '("cond" "if" "when" "unless" "while"
47 ;; (concat "(" (regexp-opt strings t) "\\>"))
91 (defun regexp-opt (strings &optional paren)
111 (sorted-strings (delet
[all...]
/macosx-10.10.1/ruby-106/ruby/test/psych/
H A Dtest_encoding.rb8 attr_reader :strings
10 @strings = []
17 @strings += args.flatten.find_all { |a|
147 assert_encodings @utf8, @handler.strings
148 assert_equal [foo, bar], @handler.strings
166 assert_encodings @utf8, @handler.strings
167 assert_equal [foo, bar], @handler.strings
183 assert_encodings @utf8, @handler.strings
184 assert_equal key, @handler.strings[1]
203 assert_encodings Encoding.find('EUC-JP'), @handler.strings
[all...]
/macosx-10.10.1/Heimdal-398.1.2/appl/gssmask/
H A Dcommon.c83 permutate_all(struct getarg_strings *strings, size_t *size) argument
90 list = ecalloc(strings->num_strings, sizeof(*list));
91 for (i = 0; i < strings->num_strings; i++)
92 list[i] = strings->strings[i];
94 permute(&all, size, list, 0, strings->num_strings);
/macosx-10.10.1/libxslt-13/libxslt/tests/exslt/
H A DMakefile.am3 SUBDIRS=common functions math sets strings dynamic date

Completed in 252 milliseconds

1234567891011>>