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

1234567891011>>

/macosx-10.10/ruby-106/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...]
/macosx-10.10/ruby-106/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.10/ruby-106/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...]
/macosx-10.10/xnu-2782.1.97/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.10/JavaScriptCore-7600.1.17/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
/macosx-10.10/Heimdal-398.1.2/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.10/ruby-106/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.10/Security-57031.1.35/Security/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.10/Security-57031.1.35/Security/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.10/Libc-1044.1.2/gen/FreeBSD/
H A Dttyslot.c46 int slot; local
56 for (slot = 1; (ttyp = getttyent()); ++slot)
59 return(slot);
/macosx-10.10/WTF-7600.1.24/wtf/text/
H A DAtomicStringHash.h54 static void constructDeletedValue(WTF::AtomicString& slot) { new (NotNull, &slot) WTF::AtomicString(HashTableDeletedValue); } argument
55 static bool isDeletedValue(const WTF::AtomicString& slot) { return slot.isHashTableDeletedValue(); } argument
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSHTMLAppletElementCustom.cpp36 bool JSHTMLAppletElement::getOwnPropertySlotDelegate(ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
38 return pluginElementCustomGetOwnPropertySlot<JSHTMLAppletElement, Base>(exec, propertyName, slot, this);
41 bool JSHTMLAppletElement::putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
43 return pluginElementCustomPut(exec, propertyName, value, this, slot);
H A DJSHTMLEmbedElementCustom.cpp36 bool JSHTMLEmbedElement::getOwnPropertySlotDelegate(ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
38 return pluginElementCustomGetOwnPropertySlot<JSHTMLEmbedElement, Base>(exec, propertyName, slot, this);
41 bool JSHTMLEmbedElement::putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
43 return pluginElementCustomPut(exec, propertyName, value, this, slot);
H A DJSHTMLObjectElementCustom.cpp36 bool JSHTMLObjectElement::getOwnPropertySlotDelegate(ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
38 return pluginElementCustomGetOwnPropertySlot<JSHTMLObjectElement, Base>(exec, propertyName, slot, this);
41 bool JSHTMLObjectElement::putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
43 return pluginElementCustomPut(exec, propertyName, value, this, slot);
H A DJSUserMessageHandlersNamespaceCustom.cpp38 bool JSUserMessageHandlersNamespace::getOwnPropertySlotDelegate(ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
41 slot.setValue(this, ReadOnly | DontDelete | DontEnum, toJS(exec, globalObject(), handler));
/macosx-10.10/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.10/apache-793/httpd/modules/slotmem/
H A Dmod_slotmem_plain.c17 /* Memory handler for a plain memory divided in slot.
28 apr_size_t size; /* size of each memory slot */
166 static apr_status_t slotmem_get(ap_slotmem_instance_t *slot, unsigned int id, unsigned char *dest, apr_size_t dest_len) argument
172 if (!slot) {
176 inuse = slot->inuse + id;
177 if (id >= slot->num) {
180 if (AP_SLOTMEM_IS_PREGRAB(slot) && !*inuse) {
183 ret = slotmem_dptr(slot, id, &ptr);
192 static apr_status_t slotmem_put(ap_slotmem_instance_t *slot, unsigned int id, unsigned char *src, apr_size_t src_len) argument
198 if (!slot) {
218 slotmem_num_slots(ap_slotmem_instance_t *slot) argument
223 slotmem_num_free_slots(ap_slotmem_instance_t *slot) argument
234 slotmem_slot_size(ap_slotmem_instance_t *slot) argument
243 slotmem_grab(ap_slotmem_instance_t *slot, unsigned int *id) argument
267 slotmem_fgrab(ap_slotmem_instance_t *slot, unsigned int id) argument
283 slotmem_release(ap_slotmem_instance_t *slot, unsigned int id) argument
[all...]

Completed in 224 milliseconds

1234567891011>>