Searched refs:keys (Results 226 - 250 of 1238) sorted by relevance

1234567891011>>

/macosx-10.10/apr-32/apr/apr/build/
H A Dgen-build.py128 f.write('SOURCE_DIRS = %s $(EXTRA_SOURCE_DIRS)\n\n' % string.join(dirs.keys()))
149 for dir in dirs.keys():
156 keys = alldirs.keys()
157 keys.sort()
158 f.write('BUILD_DIRS = %s\n\n' % string.join(keys))
180 for hdr in deps.keys():
199 if inc in legal_deps.keys():
213 for dep in deps.keys():
/macosx-10.10/autofs-246/dumpammap/
H A Ddumpammap.c104 CFArrayRef keys; local
119 keys = ODRecordCopyValues(record, kODAttributeTypeRecordName, &error);
120 if (keys == NULL) {
136 if (CFArrayGetCount(keys) == 0) {
141 CFRelease(keys);
145 key = CFArrayGetValueAtIndex(keys, 0);
150 CFRelease(keys);
172 CFRelease(keys);
187 CFRelease(keys);
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tk/
H A Dgrid.rb172 def column(master, index, keys=nil)
173 if keys.kind_of?(Hash)
174 columnconfigure(master, index, keys)
176 columnconfiginfo(master, index, keys)
180 def row(master, index, keys=nil)
181 if keys.kind_of?(Hash)
182 rowconfigure(master, index, keys)
184 rowconfiginfo(master, index, keys)
245 def slaves(master, keys=nil)
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/tile/
H A Dtpaned.rb36 keys = args.pop
37 fail ArgumentError, "no window in arguments" unless keys
39 if keys && keys.kind_of?(Hash)
41 opts = hash_kv(keys)
43 args.push(keys) if keys
59 def insert(pos, win, keys)
61 tk_send_without_enc('insert', pos, win, *hash_kv(keys))
/macosx-10.10/ruby-106/ruby/ext/tk/sample/
H A Dtkballoonhelp.rb46 def initialize(parent=nil, keys={})
55 if keys
56 keys = _symbolkey2str(keys)
58 keys = {}
61 @command = keys.delete('command')
63 @interval = keys.delete('interval'){DEFAULT_INTERVAL}
70 @label.configure(_symbolkey2str(keys)) unless keys.empty?
/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dtest_pkey_ec.rb11 @keys = []
21 @keys << key
35 key = @keys[idx]
41 for key in @keys
66 for key in @keys
80 for key in @keys
91 for key in @keys
98 for key in @keys
115 for key in @keys
/macosx-10.10/configd-699.1.5/Plugins/PreferencesMonitor/
H A Dprefsmon.c63 static CFMutableArrayRef unchangedPrefsKeys; /* new prefs keys which match current */
64 static CFMutableArrayRef removedPrefsKeys; /* old prefs keys to be removed */
110 CFArrayRef keys; local
112 keys = SCPreferencesCopyKeyList(prefs);
113 count = (keys != NULL) ? CFArrayGetCount(keys) : 0;
118 existing_key = CFArrayGetValueAtIndex(keys, index);
145 if (keys != NULL) {
146 CFRelease(keys);
281 CFArrayRef keys; local
379 const void **keys; local
468 CFArrayRef keys; local
[all...]
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclResult.c17 * Indices of the standard return options dictionary keys.
1109 * Returns a Tcl_Obj * array of the standard keys used in the return
1119 * First time called in a thread, creates the keys (allocating memory)
1129 Tcl_Obj **keys = Tcl_GetThreadData(&returnKeysKey,
1132 if (keys[0] == NULL) {
1134 * First call in this thread, create the keys...
1139 TclNewLiteralStringObj(keys[KEY_CODE], "-code");
1140 TclNewLiteralStringObj(keys[KEY_ERRORCODE], "-errorcode");
1141 TclNewLiteralStringObj(keys[KEY_ERRORINFO], "-errorinfo");
1142 TclNewLiteralStringObj(keys[KEY_ERRORLIN
1108 Tcl_Obj **keys = Tcl_GetThreadData(&returnKeysKey, local
1159 Tcl_Obj **keys = (Tcl_Obj **)clientData; local
1197 Tcl_Obj **keys = GetKeys(); local
1285 Tcl_Obj **keys = GetKeys(); local
1456 Tcl_Obj **keys = GetKeys(); local
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dkcache.c149 const void *keys[] = { local
168 query = CFDictionaryCreate(NULL, keys, values, sizeof(keys) / sizeof(keys[0]), NULL, NULL);
199 const void *keys[] = { local
212 query = CFDictionaryCreate(NULL, keys, values, sizeof(keys) / sizeof(keys[0]),
643 const void *keys[] = { local
658 query = CFDictionaryCreate(NULL, keys, value
773 const void *keys[] = { local
874 const void *keys[] = { local
928 const void *keys[] = { local
1007 const void *keys[] = { local
[all...]
/macosx-10.10/tcl-105/tk/tk/win/
H A DtkWinKey.c202 BYTE keys[256];
208 * Do not run keycodes of lock keys through ToAscii(). One of ToAscii()'s
219 * Use MapVirtualKey() to detect some dead keys.
230 memset(keys, 0, 256);
232 keys[VK_SHIFT] = 0x80;
235 keys[VK_CONTROL] = 0x80;
238 keys[VK_MENU] = 0x80;
247 keys[VK_CAPITAL] = 1;
250 keys[VK_SCROLL] = 1;
253 keys[VK_NUMLOC
199 BYTE keys[256]; local
[all...]
/macosx-10.10/tcl-105/tk84/tk/win/
H A DtkWinKey.c201 BYTE keys[256];
207 * Do not run keycodes of lock keys through ToAscii().
217 * Use MapVirtualKey() to detect some dead keys.
227 memset(keys, 0, 256);
229 keys[VK_SHIFT] = 0x80;
231 keys[VK_CONTROL] = 0x80;
233 keys[VK_MENU] = 0x80;
241 keys[VK_CAPITAL] = 1;
243 keys[VK_SCROLL] = 1;
245 keys[VK_NUMLOC
198 BYTE keys[256]; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/perl/BerkeleyDB/t/
H A Ddb-4.4.t49 for my $key (sort keys %hash)
/macosx-10.10/CPANInternal-159.1/File-ExtAttr-1.09/t/
H A D22tie-nonuser.t45 @ks = keys(%extattr);
54 foreach $k (sort(keys(%test_attrs)))
80 # Recreate the keys and check that they're all in the hash.
82 foreach $k (sort(keys(%test_attrs)))
94 @ks = keys(%extattr);
/macosx-10.10/ICU-531.30/icuSources/samples/legacy/
H A Dnewcol.cpp68 extern "C" void test_current(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[][32]) { argument
77 keySize = getSortKey_current("ja", data[i], -1, keys[i], 32);
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/signerAndSubjTp/
H A DmakeSmimeCert26 echo creating certs and keys...
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DWebCrossThreadCopier.cpp74 for (const auto& keys : vector) {
76 for (const auto& key : keys)
/macosx-10.10/bind9-45.101/bind9/bin/named/include/named/
H A Dconfig.h66 dns_name_t ***keys, isc_uint32_t *countp);
70 dns_name_t ***keys, isc_uint32_t count);
/macosx-10.10/bind9-45.101/bind9/bin/tests/startperf/
H A Dsetup.sh44 inet 127.0.0.1 port 9953 allow { any; } keys { rndc_key; };
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/database/ns1/
H A Dnamed.conf127 inet 10.53.0.1 port 9953 allow { any; } keys { rndc_key; };
H A Dnamed.conf227 inet 10.53.0.1 port 9953 allow { any; } keys { rndc_key; };
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/dlvauto/
H A Dclean.sh21 rm -f ns1/bind.keys
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/ixfr/
H A Dsetup.sh41 inet 10.53.0.1 port 9953 allow { any; } keys { rndc_key; };
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/logfileconfig/ns1/
H A Dnamed.dirconf45 keys { "rndc-key"; };
H A Dnamed.pipeconf45 keys { "rndc-key"; };
H A Dnamed.plain45 keys { "rndc-key"; };

Completed in 317 milliseconds

1234567891011>>