Searched refs:slot (Results 1 - 25 of 484) sorted by relevance

1234567891011>>

/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/tcllib/
H A Dswaplist.rb93 def cget_strict(slot)
94 slot = slot.to_s
95 if slot == 'complete_list'
97 elsif slot == 'selected_list'
100 @keys[slot]
103 def cget(slot)
104 cget_strict(slot)
107 def configure(slot, value=None)
108 if slot
[all...]
H A Dgetstring.rb90 def cget_strict(slot)
91 slot = slot.to_s
92 if slot == 'text'
95 @keys[slot]
98 def cget(slot)
99 cget_strict(slot)
102 def configure(slot, value=None)
103 if slot.kind_of?(Hash)
104 slot
[all...]
H A Dcrosshair.rb78 def confugure(w, slot, value=None)
79 itemconfigure(w, slot, value)
81 def confuginfo(w, slot = nil)
82 itemconfiginfo(w, slot)
84 def current_configinfo(w, slot = nil)
85 current_itemconfiginfo(w, slot)
87 def cget(w, slot)
88 current_itemconfiginfo(w, slot).values[0]
108 def crosshair_configinfo(slot = nil)
109 Tk::Tcllib::Crosshair.configinfo(self, slot)
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dmessagedlg.rb57 def cget(slot)
58 slot = slot.to_s
59 if slot == 'relative'
60 slot = 'parent'
63 val = super(slot)
64 @keys[slot] = val
66 @keys[slot]
68 def cget_strict(slot)
69 slot
[all...]
H A Ddialog.rb67 def cget_tkstring(slot)
68 if slot.to_s == 'relative'
71 super(slot)
74 def cget_strict(slot)
75 if slot.to_s == 'relative'
78 super(slot)
81 def cget(slot)
82 if slot.to_s == 'relative'
85 super(slot)
89 def configure(slot, valu
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tk/
H A Dcomposite.rb202 def __cget_delegates(slot)
203 slot = slot.to_s
205 if @option_methods.include?(slot)
206 if @option_methods[slot][:cget]
207 return self.__send__(@option_methods[slot][:cget])
209 if @option_setting[slot]
210 return @option_setting[slot]
217 tbl = @delegates[slot]
223 opt = slot i
[all...]
H A Dtextimage.rb43 def [](slot)
44 cget(slot)
46 def []=(slot, value)
47 configure(slot, value)
51 def cget(slot)
52 @t.image_cget(@index, slot)
55 def cget_strict(slot)
56 @t.image_cget_strict(@index, slot)
59 def configure(slot, value=None)
60 @t.image_configure(@index, slot, valu
[all...]
H A Dtextwindow.rb64 def [](slot)
65 cget(slot)
67 def []=(slot, value)
68 configure(slot, value)
72 def cget(slot)
73 @t.window_cget(@index, slot)
75 def cget_strict(slot)
76 @t.window_cget_strict(@index, slot)
79 def configure(slot, value=None)
80 if slot
[all...]
H A Dkinput.rb37 def TkKinput.attribute_config(win, slot, value=None)
38 if slot.kind_of? Hash
39 tk_call('kanjiInput', 'attribute', win, *hash_kv(slot))
41 tk_call('kanjiInput', 'attribute', win, "-#{slot}", value)
44 def kinput_attribute_config(slot, value=None)
45 TkKinput.attribute_config(self, slot, value)
48 def TkKinput.attribute_info(win, slot=nil)
49 if slot
51 win, "-#{slot}"))
61 def kinput_attribute_info(slot
[all...]
H A Dscale.rb65 def configure_cmd(slot, value)
66 configure(slot=>value)
69 def configure(slot, value=None)
70 if (slot == 'command' || slot == :command)
72 elsif slot.kind_of?(Hash) &&
73 (slot.key?('command') || slot.key?(:command))
74 slot = _symbolkey2str(slot)
[all...]
/macosx-10.9.5/xnu-2422.115.4/libsyscall/os/
H A Dtsd.h54 _os_tsd_get_direct(unsigned long slot) argument
58 __asm__("mov %%gs:%1, %0" : "=r" (ret) : "m" (*(void **)(slot * sizeof(void *))));
67 _os_tsd_set_direct(unsigned long slot, void* val) argument
70 __asm__("movl %1, %%gs:%0" : "=m" (*(void **)(slot * sizeof(void *))) : "rn" (val));
72 __asm__("movl %1, %%gs:%0" : "=m" (*(void **)(slot * sizeof(void *))) : "ri" (val));
74 __asm__("movq %1, %%gs:%0" : "=m" (*(void **)(slot * sizeof(void *))) : "rn" (val));
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DHeapRootVisitor.h59 inline void HeapRootVisitor::visit(JSValue* slot) argument
61 m_visitor.append(slot);
64 inline void HeapRootVisitor::visit(JSValue* slot, size_t count) argument
66 m_visitor.append(slot, count);
69 inline void HeapRootVisitor::visit(JSString** slot) argument
71 m_visitor.append(reinterpret_cast<JSCell**>(slot));
74 inline void HeapRootVisitor::visit(JSCell** slot) argument
76 m_visitor.append(slot);
H A DHandleTypes.h38 static ExternalType getFromSlot(HandleSlot slot) { return (slot && *slot) ? reinterpret_cast<ExternalType>(static_cast<void*>(slot->asCell())) : 0; } argument
45 static ExternalType getFromSlot(HandleSlot slot) { return slot ? *slot : JSValue(); } argument
H A DSlotVisitorInlines.h38 ALWAYS_INLINE void SlotVisitor::append(JSValue* slot, size_t count) argument
41 JSValue& value = slot[i];
47 inline void SlotVisitor::appendUnbarrieredPointer(T** slot) argument
49 ASSERT(slot);
50 JSCell* cell = *slot;
54 ALWAYS_INLINE void SlotVisitor::append(JSValue* slot) argument
56 ASSERT(slot);
57 internalAppend(*slot);
60 ALWAYS_INLINE void SlotVisitor::appendUnbarrieredValue(JSValue* slot) argument
62 ASSERT(slot);
66 append(JSCell** slot) argument
[all...]
H A DStrong.h39 using Handle<T>::slot;
58 if (!other.slot())
60 setSlot(HandleSet::heapFor(other.slot())->allocate());
67 if (!other.slot())
69 setSlot(HandleSet::heapFor(other.slot())->allocate());
74 bool isHashTableDeletedValue() const { return slot() == hashTableDeletedValue(); }
85 bool operator!() const { return !slot() || !*slot(); }
96 ExternalType get() const { return HandleTypes<T>::getFromSlot(this->slot()); }
102 if (!other.slot()) {
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Ddlfcn_w32.c44 DWORD slot = TlsAlloc(); local
47 if (slot == TLS_OUT_OF_INDEXES)
50 if ((old_slot = InterlockedCompareExchange(&dlfcn_tls, slot,
55 TlsFree(slot);
58 return slot;
71 DWORD slot = get_tl_error_slot(); local
73 if (slot == TLS_OUT_OF_INDEXES)
81 old_s = (char *) TlsGetValue(slot);
82 TlsSetValue(slot, (LPVOID) s);
89 DWORD slot local
125 DWORD slot = get_tl_error_slot(); local
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/tile/
H A Ddialog.rb63 def cget_strict(slot)
64 @keys[slot.to_s]
66 def cget(slot)
67 @keys[slot.to_s]
70 def cget(slot)
72 cget_strict(slot)
74 cget_strict(slot) rescue nil
79 def configure(slot, value=None)
80 if slot.kind_of?(Hash)
81 slot
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_codesigning/
H A Dsigblob.cpp35 CFDataRef EmbeddedSignatureBlob::component(CodeDirectory::SpecialSlot slot) const
37 if (const BlobCore *blob = this->find(slot)) {
38 if (CodeDirectory::slotAttributes(slot) & cdComponentIsBlob) {
50 void EmbeddedSignatureBlob::Maker::component(CodeDirectory::SpecialSlot slot, CFDataRef data) argument
52 if (CodeDirectory::slotAttributes(slot) & cdComponentIsBlob)
53 add(slot, reinterpret_cast<const BlobCore *>(CFDataGetBytePtr(data))->clone());
55 add(slot, BlobWrapper::alloc(CFDataGetBytePtr(data), CFDataGetLength(data)));
H A Dcsprocess.cpp59 CFDataRef ProcessDynamicCode::component(CodeDirectory::SpecialSlot slot, OSStatus fail /* = errSecCSSignatureFailed */) argument
61 if (slot == cdInfoSlot && !mGuest->pidBased()->supportInfoPlist())
63 else if (slot == cdResourceDirSlot)
65 return SecStaticCode::component(slot, fail);
75 void ProcessDynamicCode::validateComponent(CodeDirectory::SpecialSlot slot, OSStatus fail /* = errSecCSSignatureFailed */) argument
77 if (slot == cdInfoSlot && !mGuest->pidBased()->supportInfoPlist())
79 else if (slot == cdResourceDirSlot)
81 SecStaticCode::validateComponent(slot, fail);
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/lib/
H A Dsigblob.cpp35 CFDataRef EmbeddedSignatureBlob::component(CodeDirectory::SpecialSlot slot) const
37 if (const BlobCore *blob = this->find(slot)) {
38 if (CodeDirectory::slotAttributes(slot) & cdComponentIsBlob) {
50 void EmbeddedSignatureBlob::Maker::component(CodeDirectory::SpecialSlot slot, CFDataRef data) argument
52 if (CodeDirectory::slotAttributes(slot) & cdComponentIsBlob)
53 add(slot, reinterpret_cast<const BlobCore *>(CFDataGetBytePtr(data))->clone());
55 add(slot, BlobWrapper::alloc(CFDataGetBytePtr(data), CFDataGetLength(data)));
H A Dcsprocess.cpp59 CFDataRef ProcessDynamicCode::component(CodeDirectory::SpecialSlot slot, OSStatus fail /* = errSecCSSignatureFailed */) argument
61 if (slot == cdInfoSlot && !mGuest->pidBased()->supportInfoPlist())
63 else if (slot == cdResourceDirSlot)
65 return SecStaticCode::component(slot, fail);
75 void ProcessDynamicCode::validateComponent(CodeDirectory::SpecialSlot slot, OSStatus fail /* = errSecCSSignatureFailed */) argument
77 if (slot == cdInfoSlot && !mGuest->pidBased()->supportInfoPlist())
79 else if (slot == cdResourceDirSlot)
81 SecStaticCode::validateComponent(slot, fail);
/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dttyslot.c46 int slot; local
56 for (slot = 1; (ttyp = getttyent()); ++slot)
59 return(slot);
/macosx-10.9.5/OpenPAM-20/openpam/lib/
H A Dpam_set_item.c59 void **slot, *tmp; local
65 slot = &pamh->item[item_type];
78 if (*slot != NULL)
79 osize = strlen(*slot) + 1;
92 if (*slot != NULL) {
93 memset(*slot, 0xd0, osize);
94 FREE(*slot);
103 *slot = tmp;
/macosx-10.9.5/swig-10/Lib/chicken/
H A Dmulti-generic.scm43 (let ([h (##sys#slot l 0)]
44 [r (##sys#slot l 1)] )
71 (and (applicable? (##sys#slot list1 0) (##sys#slot list2 0))
72 (check-applicable (##sys#slot list1 1) (##sys#slot list2 1)))))))
74 (if (or (null? applicable) (null? (##sys#slot applicable 1)))
88 (let ((c1 (##sys#slot specls1 0))
89 (c2 (##sys#slot specls2 0))
90 (arg (##sys#slot arg
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/blt/
H A Dunix_dnd.rb45 def configure(win, slot, value=None)
46 itemconfigure(['configure', win], slot, value)
48 def configinfo(win, slot=nil)
49 itemconfiginfo(['configure', win], slot)
51 def current_configinfo(win, slot=nil)
52 current_itemconfiginfo(['configure', win], slot)
64 def token_configure(win, slot, value=None)
65 itemconfigure(['token', 'configure', win], slot, value)
67 def token_configinfo(win, slot=nil)
68 itemconfiginfo(['token', 'configure', win], slot)
[all...]

Completed in 279 milliseconds

1234567891011>>