Searched refs:keys (Results 26 - 50 of 1208) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/tcllib/
H A Dswaplist.rb48 # args = (parent=nil, complete_list=[], selected_list=[], keys=nil)
49 keys = args.pop
50 if keys.kind_of?(Hash)
53 @keys = _symbolkey2str(keys)
54 args.push(keys)
56 @selected_list = keys
58 @keys = {}
70 def create_self(keys)
80 *hash_kv(@keys)))
[all...]
H A Dcalendar.rb42 def create_self(keys)
43 if keys and keys != None
45 *hash_kv(keys, true))
H A Ddateentry.rb43 def create_self(keys)
44 if keys and keys != None
46 *hash_kv(keys, true))
H A Druler.rb47 def create_self(keys)
48 if keys and keys != None
50 *hash_kv(keys, true))
H A Dscreenruler.rb48 def create_self(keys)
49 if keys and keys != None
51 *hash_kv(keys, true))
H A Dscrolledwindow.rb38 def create_self(keys)
39 if keys and keys != None
41 *hash_kv(keys, true))
/macosx-10.10.1/Heimdal-398.1.2/kadmin/
H A Dext.c47 krb5_keytab_entry *keys = NULL; local
58 * Make sure that we have keys, some backends doesn't support
59 * getting keys, so in that case we fallback to
67 keys = malloc(sizeof(*keys) * princ.n_key_data);
68 if (keys == NULL) {
76 keys[i].principal = princ.principal;
77 keys[i].vno = kd->key_data_kvno;
78 keys[i].keyblock.keytype = kd->key_data_type[0];
79 keys[
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dsalt-des3.c48 DES_cblock keys[3]; local
73 memcpy(keys + i, tmp + i * 8, sizeof(keys[i]));
74 CCDesSetOddParity(keys + i, sizeof(keys[i]));
75 if(CCDesIsWeakKey(keys + i, sizeof(keys[i])))
76 _krb5_xor((void *)(keys + i),
78 DES_set_key_unchecked(keys + i, &s[i]);
87 memcpy(keys
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/API/c/
H A DWKDictionary.cpp40 WK_EXPORT WKDictionaryRef WKDictionaryCreate(const WKStringRef* keys, const WKTypeRef* values, size_t numberOfValues) argument
44 map.add(toImpl(keys[i])->string(), toImpl(values[i]));
61 RefPtr<API::Array> keys = toImpl(dictionaryRef)->keys(); local
62 return toAPI(keys.release().leakRef());
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tk/
H A Dscrollbar.rb11 def create_self(keys)
21 if keys and keys != None
23 #tk_call_without_enc('scrollbar', @path, *hash_kv(keys, true))
25 *hash_kv(keys, true))
29 *hash_kv(keys, true))
32 keys = __check_available_configure_options(keys)
33 unless keys.empty?
38 configure(keys)
[all...]
H A Dimage.rb24 def self.new(keys=nil)
25 if keys.kind_of?(Hash)
27 if keys.key?(:imagename)
28 name = keys[:imagename]
29 elsif keys.key?('imagename')
30 name = keys['imagename']
43 if !(keys[:without_creating] || keys['without_creating'])
44 keys = _symbolkey2str(keys)
[all...]
H A Dmenuspec.rb282 keys = (default_opts)? default_opts.dup: {}
284 tearoff = keys.delete('tearoff') if keys.key?('tearoff')
294 keys.update(_symbolkey2str(btn_info))
295 menu_name = keys.delete('menu_name')
296 keys['label'] = keys.delete('text') || ''
298 case keys['underline']
300 if idx = keys['label'].index(keys['underlin
[all...]
H A Dmenu.rb56 #def create_self(keys)
57 # if keys and keys != None
58 # tk_call_without_enc('menu', @path, *hash_kv(keys, true))
75 def self.new_menuspec(menu_spec, parent = nil, tearoff = false, keys = nil)
77 keys = _symbolkey2str(parent)
78 parent = keys.delete('parent')
79 tearoff = keys.delete('tearoff')
81 keys = _symbolkey2str(tearoff)
82 tearoff = keys
[all...]
H A Ddialog.rb59 def create_self(keys)
83 if keys.kind_of?(Hash)
84 @title = keys['title'] if keys.key? 'title'
85 @message = keys['message'] if keys.key? 'message'
86 @bitmap = keys['bitmap'] if keys.key? 'bitmap'
89 @default_button = keys['default'] if keys
[all...]
H A Dtagfont.rb17 def latinfont_configure(ltn, keys=nil)
18 @parent.latintagfont_configure(@id, ltn, keys)
23 def kanjifont_configure(knj, keys=nil)
24 @parent.kanjitagfont_configure(@id, ltn, keys)
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Dtest073.tcl73 # Number of outstanding keys.
74 set keys 0
93 incr keys
96 puts "\tTest$tnum.a.2: Initializing cursor get loop; $keys dups."
102 for { set i 0 } { $i < $keys } { incr i } {
117 # !!! keys contains the number of the next dup
120 set datum [makedatum_t73 $keys 0]
124 error_check_good "c_put(DB_KEYLAST, $keys)"\
127 set dbc($keys) $curs
128 set is_long($keys)
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/tile/
H A Ddialog.rb33 def self.define_dialog_type(name, keys)
34 Tk.tk_call('::ttk::dialog::define', name, keys)
44 def initialize(keys={})
45 @keys = _symbolkey2str(keys)
49 def create_self(keys)
55 tk_call(self.class::TkCommandNames[0], @path, *hash_kv(@keys))
64 @keys[slot.to_s]
67 @keys[slot.to_s]
86 @keys[slo
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dmenubar.rb104 keys = args[0]
106 ary.concat(hash_kv(keys))
110 name, keys = args
111 if keys
113 keys = _symbolkey2str(keys)
114 keys['menu'] = _parse_menu_spec(keys['menu']) if keys.key?('menu')
115 ary.concat(hash_kv(keys))
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DLookup.cpp31 ASSERT(!keys);
32 keys = static_cast<const char**>(fastMalloc(sizeof(char*) * numberOfValues));
36 keys[i] = values[i].m_key;
38 keys[i] = 0;
44 if (keys) {
45 fastFree(keys);
46 keys = nullptr;
/macosx-10.10.1/ICU-531.30/icuSources/samples/legacy/
H A Dlegacy.cpp25 extern "C" void test_current(UChar data[][5], uint32_t size, uint32_t maxLen, uint8_t keys[][32]);
26 extern "C" void test_legacy(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[][32]);
49 void printKeys(const char *comment, uint8_t keys[][32], int32_t keySize) { argument
54 currentKey = keys[i];
88 static uint8_t keys[4][32]; local
96 test_current(uTest, 4, 5, keys);
98 printKeys("Current keys", keys, 4);
104 test_legacy(uTest, 4, 5, keys);
106 printKeys("Legacy keys", key
[all...]
/macosx-10.10.1/CPANInternal-159.1/IPC-Signal-1.00/t/
H A Dsignal.t29 ok 2, keys %Sig_num == 0, 'num predefined';
32 ok 5, keys %Sig_num >= @Sig_name, keys(%Sig_num) . ' < ' . @Sig_name;
/macosx-10.10.1/configd-699.1.5/configd.tproj/
H A D_configclose.c70 CFArrayRef keys; local
73 keys = isRegex ? storePrivate->patterns : storePrivate->keys;
74 n = (keys != NULL) ? CFArrayGetCount(keys) : 0;
79 keysToRemove = CFArrayCreateCopy(NULL, keys);
98 CFArrayRef keys; local
110 /* Remove all notification keys and patterns */
111 removeAllKeys(*store, FALSE); // keys
118 /* Remove any session keys */
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/blt/
H A Dtabnotebook.rb17 def self.new(parent, pos=nil, name=nil, keys={})
19 keys = pos
24 keys = name
38 obj.configure if keys && ! keys.empty?
41 initialize(parent, pos, name, keys)
50 def initialize(parent, pos, name, keys)
64 tk_call(@tpath, 'tab', 'configure', @id, keys)
70 @path = @id = tk_call(@tpath, 'insert', pos, keys)
96 def insert(pos=nil, keys
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/
H A Dtktree.rb17 def create_self(keys)
19 if keys.kind_of?(Hash)
20 font = keys.delete('itemfont')
22 keys['font'] = font if font
23 # args.concat(hash_kv(keys))
24 args << keys
34 def newitem(itempath, keys = nil)
35 if keys.kind_of?(Hash)
36 keys = _symbolkey2str(keys)
[all...]
/macosx-10.10.1/configd-699.1.5/SystemConfiguration.fproj/
H A DSCPList.c42 CFArrayRef keys; local
60 keys = CFArrayCreate(allocator, prefsKeys, prefsCnt, &kCFTypeArrayCallBacks);
63 keys = CFArrayCreate(allocator, NULL, 0, &kCFTypeArrayCallBacks);
66 return keys;

Completed in 271 milliseconds

1234567891011>>