HomeSort by relevance Sort by last modified time
    Searched defs:select (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /bionic/libc/arch-arm/syscalls/
select.S 5 ENTRY(select) function
16 END(select)
  /bionic/libc/arch-x86/syscalls/
select.S 5 .type select, @function
6 .globl select
9 select: label
  /bionic/libc/arch-sh/syscalls/
select.S 5 .type select, @function
6 .globl select
9 select: label
  /external/v8/test/mjsunit/compiler/
regress-gap.js 39 function select(n, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) { function
116 assertEquals(1, select(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
117 assertEquals(4, select(3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
118 assertEquals(10, select(9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLSelectElementCustom.cpp 37 HTMLSelectElement& select = *static_cast<HTMLSelectElement*>(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)
51 select->remove(index);
58 select->setOption(index, option, ec);
  /external/webkit/Source/WebCore/platform/qt/
QtStyleOptionWebComboBox.h 52 HTMLSelectElement* select = o ? static_cast<HTMLSelectElement*>(o->node()) : 0; local
53 return select ? select->multiple() : false;
  /external/webkit/LayoutTests/fast/js/resources/
getOwnPropertyDescriptor.js 57 var select = document.createElement("select"); variable
58 select.innerHTML = "<option>foo</option>";
59 descriptorShouldBe("select", "'length'", {writable: false, enumerable: true, configurable: false, value:"select.length"});
60 descriptorShouldBe("select", "0", {writable: true, enumerable: true, configurable: false, value:"select[0]"});
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLSelectElementCustom.cpp 62 HTMLSelectElement* select = V8HTMLSelectElement::toNative(info.Holder()); local
63 return toOptionsCollectionSetter(index, value, select);
  /external/webkit/Source/WebCore/html/
HTMLOptionsCollection.cpp 30 HTMLOptionsCollection::HTMLOptionsCollection(PassRefPtr<HTMLSelectElement> select)
31 : HTMLCollection(select.get(), SelectOptions, select->collectionInfo())
35 PassRefPtr<HTMLOptionsCollection> HTMLOptionsCollection::create(PassRefPtr<HTMLSelectElement> select)
37 return adoptRef(new HTMLOptionsCollection(select));
60 HTMLSelectElement* select = static_cast<HTMLSelectElement*>(base()); local
63 select->add(newOption, 0, ec);
65 select->add(newOption, static_cast<HTMLOptionElement*>(item(index)), ec);
HTMLKeygenElement.cpp 54 DEFINE_STATIC_LOCAL(AtomicString, pseudoId, ("-webkit-keygen-select"));
70 // Create a select element with one option element for each key size.
74 RefPtr<HTMLSelectElement> select = KeygenSelectElement::create(document); local
78 select->appendChild(option, ec);
82 ensureShadowRoot()->appendChild(select, ec);
92 // Reflect disabled attribute on the shadow select element
HTMLOptGroupElement.cpp 82 ContainerNode* select = parentNode(); local
83 while (select && !select->hasTagName(selectTag))
84 select = select->parentNode();
85 if (select)
86 static_cast<HTMLSelectElement*>(select)->setRecalcListItems();
126 ContainerNode* select = parentNode(); local
127 while (select && !select->hasTagName(selectTag)
138 HTMLSelectElement* select = ownerSelectElement(); local
    [all...]
ValidityState.cpp 121 HTMLSelectElement* select = static_cast<HTMLSelectElement*>(element); local
122 return select->valueMissing();
HTMLInputElement.h 146 virtual void select() { HTMLTextFormControlElement::select(); } function in class:WebCore::HTMLInputElement
  /libcore/luni/src/main/java/java/net/
ProxySelector.java 117 public abstract List<Proxy> select(URI uri); method in class:ProxySelector
ProxySelectorImpl.java 31 @Override public List<Proxy> select(URI uri) { method in class:ProxySelectorImpl
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatViewerFilter.java 38 public boolean select(Viewer viewer, Object parent, Object element) { method in class:LogCatViewerFilter
  /libcore/luni/src/main/java/java/nio/channels/
Selector.java 30 * By invoking the {@code select} method, the key set is checked and all keys
31 * that have been canceled since last select operation are moved to the set of
32 * canceled keys. During the select operation, the channels registered with this
56 * Closes this selector. Ongoing calls to the {@code select} methods of this
106 public abstract int select() throws IOException; method in class:Selector
126 public abstract int select(long timeout) throws IOException; method in class:Selector
154 * Forces blocked {@code select} operations to return immediately.
156 * If no {@code select} operation is blocked when {@code wakeup()} is called
157 * then the next {@code select} operation will return immediately. This can
159 * {@code selectNow()}, a subsequent call of {@code select} can bloc
    [all...]
  /external/bluetooth/bluez/test/
test-health-sink 32 print "Select an adapter: ",
33 select = None variable
34 while select == None:
39 select = adapters[pos] variable
45 adapter = dbus.Interface(bus.get_object("org.bluez", select),
59 print "Select a device: ",
60 select = None variable
61 while select == None:
66 select = devices[pos] variable
72 print "Connecting to %s" % (select)
    [all...]
test-health 55 print "Select 1. source or 2. sink: ",
71 print "Select a data type: ",
86 print "Select a prefered data channel type 1.",
142 print "Select an adapter: ",
143 select = None variable
144 while select == None:
149 select = adapters[pos] variable
155 adapter = dbus.Interface(bus.get_object("org.bluez", select),
169 print "Select a device: ",
170 select = Non variable
176 select = devices[pos] variable
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLOptGroupElement.cpp 60 ContainerNode* select = element->parentNode(); local
61 while (select && !select->hasTagName(selectTag))
62 select = select->parentNode();
64 if (!select)
67 return static_cast<WMLSelectElement*>(select);
72 WMLSelectElement* select = ownerSelectElement(this); local
73 if (!select || select->focused()
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 109 * <context select="...">
119 String select = element.getAttribute("select"); local
120 Context context = new Context(inputSource, url, select);
152 final String select = element.getAttribute("select"); local
154 /* Such as <test exception="true" select="..." count="0"/> */
156 return new XPathTest(context, select) {
159 xpath.evaluate(select, contextNode);
167 /* a <test> with a nested <valueOf>, both of which have select attributes *
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCursor.java 148 String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND (" local
152 CONTACTS_SUMMARY_PROJECTION, select, null,
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
CursorFragment.java 127 String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND (" local
131 CONTACTS_SUMMARY_PROJECTION, select, null,
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/spi/
MockAbstractSelector.java 77 public int select(long arg0) throws IOException { method in class:MockAbstractSelector
81 public int select() throws IOException { method in class:MockAbstractSelector
  /external/webkit/Source/WebCore/accessibility/gtk/
AXObjectCacheAtk.cpp 85 SelectElement* select = toSelectElement(static_cast<Element*>(object->node())); local
86 if (!select)
88 int changedItemIndex = select->activeSelectionStartListIndex();
166 // Select the right signal to be emitted

Completed in 1282 milliseconds

1 2 3 4 5 6