Searched refs:select (Results 1 - 25 of 796) sorted by relevance

1234567891011>>

/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A D_select.h30 * This is called from sys/select.h and sys/time.h for the common prototype
31 * of select(). Setting _DARWIN_C_SOURCE or _DARWIN_UNLIMITED_SELECT uses
32 * the version of select() that does not place a limit on the first argument
39 int select(int, fd_set * __restrict, fd_set * __restrict,
42 __DARWIN_EXTSN_C(select) variable
45 __DARWIN_1050(select)
47 __DARWIN_ALIAS_C(select)
/macosx-10.9.5/emacs-92/emacs/oldXMenu/
H A DAddSel.c30 register XMSelect *select; /* Newly created selection. */ local
52 select = (XMSelect *)calloc(1, sizeof(XMSelect));
53 if (select == NULL) {
68 select->type = SEPARATOR;
69 select->active = 0;
73 select->type = SELECTION;
74 select->active = active;
77 select->serial = -1;
78 select->label = label;
79 select
[all...]
H A DInsSel.c31 XMSelect *select; /* Newly created selection. */ local
60 select = (XMSelect *)calloc(1, sizeof(XMSelect));
61 if (select == NULL) {
78 select->type = SEPARATOR;
79 select->active = 0;
83 select->type = SELECTION;
84 select->active = active;
87 select->active = active;
88 select->serial = -1;
89 select
[all...]
H A DAddPane.c26 register XMSelect *select; /* Initial selection for the new pane. */ local
47 select = (XMSelect *)calloc(1, sizeof(XMSelect));
48 if (select == NULL) {
65 select->next = select;
66 select->prev = select;
67 select->type = SL_HEADER;
68 select->serial = -1;
69 select
[all...]
H A DInsPane.c29 register XMSelect *select; /* Initial selection for the new pane. */ local
57 select = (XMSelect *)calloc(1, sizeof(XMSelect));
58 if (select == NULL) {
73 select->next = select;
74 select->prev = select;
75 select->type = SL_HEADER;
76 select->serial = -1;
77 select
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DthemeQtNoListboxes.css28 select[size],
29 select[multiple],
30 select[size][multiple] {
H A DmobileThemeQt.css28 input[type="submit"], select {
32 input[type="submit"]:disabled, input[type="submit"]:disabled:active, select:disabled, input[type="text"]:disabled {
/macosx-10.9.5/WebCore-7537.78.1/html/shadow/
H A DHTMLContentElement.idl30 [Reflect] attribute DOMString select;
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dacl_process.cpp40 assert(select.uses(CSSM_ACL_MATCH_BITS));
50 if (select.uses(CSSM_ACL_MATCH_UID)) {
52 if (!(uid == select.uid || (select.uses(CSSM_ACL_MATCH_HONOR_ROOT) && uid == 0)))
57 if (select.uses(CSSM_ACL_MATCH_GID) && select.gid != env->getgid())
72 &select, sizeof(select)), sizeof(select));
115 pub(select);
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dacl_process.cpp40 assert(select.uses(CSSM_ACL_MATCH_BITS));
50 if (select.uses(CSSM_ACL_MATCH_UID)) {
52 if (!(uid == select.uid || (select.uses(CSSM_ACL_MATCH_HONOR_ROOT) && uid == 0)))
57 if (select.uses(CSSM_ACL_MATCH_GID) && select.gid != env->getgid())
72 &select, sizeof(select)), sizeof(select));
115 pub(select);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLOptGroupElement.cpp92 ContainerNode* select = parentNode(); local
93 while (select && !select->hasTagName(selectTag))
94 select = select->parentNode();
95 if (select)
96 toHTMLSelectElement(select)->setRecalcListItems();
104 // renderer like <optgroup> or if it doesn't allow children like <select>.
147 ContainerNode* select = parentNode(); local
148 while (select
159 HTMLSelectElement* select = ownerSelectElement(); local
[all...]
H A DHTMLOptionsCollection.cpp30 HTMLOptionsCollection::HTMLOptionsCollection(Node* select) argument
31 : HTMLCollection(select, SelectOptions, DoesNotOverrideItemAfter)
33 ASSERT(select->hasTagName(HTMLNames::selectTag));
36 PassRefPtr<HTMLOptionsCollection> HTMLOptionsCollection::create(Node* select, CollectionType) argument
38 return adoptRef(new HTMLOptionsCollection(select));
61 HTMLSelectElement* select = toHTMLSelectElement(ownerNode()); local
64 select->add(newOption, 0, ec);
66 select->add(newOption, static_cast<HTMLOptionElement*>(item(index)), ec);
H A DHTMLOptionElement.cpp98 // renderer like <optgroup> or if it doesn't allow children like <select>.
144 // Changing the text causes a recalc of a select's items, which will reset the selected
145 // index to the first item if the select is single selection with a menu list. We attempt to
147 RefPtr<HTMLSelectElement> select = ownerSelectElement(); local
148 bool selectIsMenuList = select && select->usesMenuList();
149 int oldSelectedIndex = selectIsMenuList ? select->selectedIndex() : -1;
160 if (selectIsMenuList && select->selectedIndex() != oldSelectedIndex)
161 select->setSelectedIndex(oldSelectedIndex);
166 HTMLSelectElement* select local
290 ContainerNode* select = parentNode(); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSHTMLSelectElementCustom.cpp37 HTMLSelectElement& select = *toHTMLSelectElement(impl()); local
41 select.remove(option);
43 select.remove(exec->argument(0).toInt32(exec));
48 void selectIndexSetter(HTMLSelectElement* select, JSC::ExecState* exec, unsigned index, JSC::JSValue value) argument
51 select->remove(index);
58 select->setOption(index, option, ec);
/macosx-10.9.5/ntp-88/lib/isc/unix/
H A Dsocket_p.h26 #include <sys/select.h>
/macosx-10.9.5/ruby-104/ruby/nacl/
H A Dselect.h5 int select(int num_fds, fd_set *in_fds, fd_set *out_fds,
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/unix/
H A Dsocket_p.h26 #include <sys/select.h>
/macosx-10.9.5/dcerpc-58/dcerpc/libdcethread/
H A Ddcethread_select.c92 DCETHREAD_SYSCALL(int, select(nfds, readfds, writefds, exceptfds, timeout));
/macosx-10.9.5/emacs-92/emacs/src/s/
H A Desix.h16 #define select sys_select /* Emacs select() not good enough? */ macro
/macosx-10.9.5/curl-78.94.1/curl/src/
H A Dtool_setup.h53 # undef select macro
54 /* change which select is used for the curl command line tool */
55 # define select(a,b,c,d,e) tpf_select_bsd(a,b,c,d,e) macro
H A Dtool_sleep.c25 # include <sys/select.h>
55 select(0, NULL, NULL, NULL, &timeout);
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/src/
H A DTokenStreamSelector.cpp68 select(stream);
75 select(stream);
81 select(sname);
90 void TokenStreamSelector::select(TokenStream* stream) function in class:antlr::TokenStreamSelector
95 void TokenStreamSelector::select(const ANTLR_USE_NAMESPACE(std)string& sname)
/macosx-10.9.5/emacs-92/emacs/src/
H A Dsysselect.h1 /* sysselect.h - System-dependent definitions for the select function.
26 #include <sys/select.h>
51 #define select sys_select macro
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Ddoze.c34 #include <sys/select.h>
52 while (select(0, (fd_set *) 0, (fd_set *) 0, (fd_set *) 0, &tv) < 0)
54 msg_fatal("doze: select: %m");
/macosx-10.9.5/vim-53/runtime/indent/
H A Dvb.vim15 setlocal indentkeys+==~else,=~elseif,=~end,=~wend,=~case,=~next,=~select,=~loop,<:>
51 if previous_line =~? '^\s*\<\(begin\|\%(\%(private\|public\|friend\)\s\+\)\=\%(function\|sub\|property\)\|select\|case\|default\|if\|else\|elseif\|do\|for\|while\|enum\|with\)\>'
56 if this_line =~? '^\s*\<end\>\s\+\<select\>'
57 if previous_line !~? '^\s*\<select\>'
60 " this case is for an empty 'select' -- 'end select'
63 " select case readwrite
64 " end select
70 if previous_line !~? '^\s*\<select\>'

Completed in 170 milliseconds

1234567891011>>