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

1 23 4 5 6

  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 142 public java.util.List<Proxy> select(URI uri) { method in class:HttpURLConnectionTest.TestProxySelector
  /build/core/
config.mk 156 define select-android-config-h
161 include $(BUILD_SYSTEM)/combo/select.mk
167 include $(BUILD_SYSTEM)/combo/select.mk
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SelectionKeyTest.java 304 selector.select();
SelectorTest.java 224 * @tests java.nio.channel.Selector#select()
234 * @tests java.nio.channel.Selector#select()
241 * @tests java.nio.channel.Selector#select(long)
256 * @tests java.nio.channel.Selector#select(long)
265 * @tests java.nio.channel.Selector#select(long)
269 selector.select(-1);
276 * @test java.nio.channels.Selector#select(long)
279 // make sure select(timeout) doesn't block
280 selector.select(WAIT_TIME);
284 * @test java.nio.channels.Selector#select(long
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.cc 151 // Be explicit in SELECT order to match up with UnpackEntry.
514 "SELECT db_create_version, db_create_time FROM share_info");
545 query.append(") SELECT ");
564 string select; local
565 select.reserve(kUpdateStatementBufferSize);
566 select.append("SELECT ");
567 AppendColumnList(&select);
568 select.append(" FROM metas ");
570 statement.prepare(load_dbhandle_, select.c_str())
    [all...]
  /external/chromium/net/tools/testserver/
testserver.py 24 import select namespace
188 select.select(read_fds, write_fds, exceptional_fds))
189 except select.error, err:
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLFormControlElement.cpp 663 void HTMLTextFormControlElement::select() function in class:WebCore::HTMLTextFormControlElement
  /external/webkit/Source/WebCore/inspector/front-end/
utilities.js 313 Text.prototype.select = function(start, end)
  /external/webkit/Source/WebCore/rendering/
RenderListBox.cpp 159 SelectElement* select = toSelectElement(static_cast<Element*>(node())); local
163 int firstIndex = select->activeSelectionStartListIndex();
164 if (firstIndex >= 0 && !listIndexIsVisible(select->activeSelectionEndListIndex()))
306 SelectElement* select = toSelectElement(static_cast<Element*>(node()));
309 int selectedItem = select->activeSelectionEndListIndex();
317 const Vector<Element*>& listItems = select->listItems();
360 SelectElement* select = toSelectElement(static_cast<Element*>(node())); local
361 const Vector<Element*>& listItems = select->listItems();
411 SelectElement* select = toSelectElement(static_cast<Element*>(node())); local
412 const Vector<Element*>& listItems = select->listItems()
508 SelectElement* select = toSelectElement(static_cast<Element*>(node())); local
538 SelectElement* select = toSelectElement(static_cast<Element*>(node())); local
589 SelectElement* select = toSelectElement(element); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetMetaDataTest.java 37 String query = "select * from zoo";
240 String query = "select name, animal_id from hutch, zoo where zoo.id = 1" ;
285 String select = "select * from DecimalNumbers;"; local
293 rs = st3.executeQuery(select);
350 String select = "select * from DecimalNumbers;"; local
356 rs = st.executeQuery(select);
OldStatementTest.java 81 st.execute("select animals from zoo");
111 st.execute("select animals from zoooo");
128 st.execute("select animals from zoooo");
140 st.execute("select horse from zoooooo");
222 "select animal_id, address from hutch where animal_id=1;",
223 "create view address as select address from hutch where animal_id=2",
248 "select animal_id, from hutch where animal_id=1;",
276 "select animal_id, address from hutch where animal_id=1;",
277 "create view address as select address from hutch where animal_id=2",
384 st.executeQuery("select * from zoo;")
1001 String select = "select * from zoo"; local
1014 String select = "select * from zoo"; local
1176 String select = "select * from zoo where id == 4;"; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigManagerDialog.java 322 select(d, configName);
358 select(d, configName);
383 String newConfigName = null; // name of the single new config. used for the select.
417 select(targetDevice, newConfigName);
437 // either select the device (if we removed a entry, or the top custom node if
439 select(selection.config != null ? selection.device : null, null);
522 * @param device the device to select
523 * @param configName the config to select (optional)
525 private void select(LayoutDevice device, String configName) { method in class:ConfigManagerDialog
528 // select the "custom" nod
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
SampleView.java 182 public boolean select(Viewer viewer, Object parentElement, method in class:SampleView.Filter
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLTest.java 1237 public List<Proxy> select(URI uri) { method in class:URLTest.MockProxySelector
    [all...]
  /external/icu4c/i18n/
plurrule.cpp 166 PluralRules::select(int32_t number) const { function in class:PluralRules
171 return mRules->select(number);
176 PluralRules::select(double number) const { function in class:PluralRules
181 return mRules->select(number);
272 myKeyword = this->select(i);
273 otherKeyword = other.select(i);
721 RuleChain::select(double number) const { function in class:RuleChain
729 return next->select(number);
tmutfmt.cpp 218 UnicodeString count = fPluralRules->select(number);
294 UnicodeString select = fPluralRules->select(tmpNumber); local
296 select.extract(0, select.length(), res, "UTF-8");
297 std::cout << "parse plural select count: " << res << "\n";
299 if (*count != select) {
    [all...]
  /external/webkit/Source/WebKit/win/
DOMHTMLClasses.cpp 1239 HRESULT STDMETHODCALLTYPE DOMHTMLInputElement::select( void) function in class:DOMHTMLInputElement
1243 inputElement->select()
1567 HRESULT STDMETHODCALLTYPE DOMHTMLTextAreaElement::select( void) function in class:DOMHTMLTextAreaElement
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
voAMRWBEnc.c 199 Word32 i, j, i_subfr, select, pit_flag, clip_gain, vad_flag; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManager.java 229 // This view info is not already selected. Select it now.
278 // Otherwise we select the item under the cursor.
303 * is a plain select or a toggle, etc.
305 public void select(MouseEvent e) { method in class:SelectionManager
318 // Otherwise we select the item under the cursor.
370 // Case where alt is pressed: select or cycle the object pointed at.
386 // select the current one
398 // Now select the next one.
408 // Case where no modifier is pressed: either select or reset the selection.
414 * Removes all the currently selected item and only select the given item
499 public void select(Collection<INode> nodes) { method in class:SelectionManager
514 \/* package *\/ void select(Node xmlNode) { method in class:SelectionManager
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiTreeBlock.java 613 // Select the new item
658 * Displays a selection dialog that lets the user select which kind of node
926 public boolean select(Viewer viewer, Object parentElement, Object element) { method in class:UiTreeBlock.DescriptorFilterAction.DescriptorFilter
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLFramesView.java 138 public boolean select(Viewer viewer, Object parentElement, method in class:GLFramesView.Filter
  /libcore/luni/src/test/java/libcore/java/net/
OldURLTest.java 577 public List<Proxy> select(URI uri) { method in class:OldURLTest.MockProxySelector
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 242 void select(ViewNode node) { method in class:ScreenViewer
  /ndk/build/core/
definitions.mk     [all...]
  /bionic/libc/kernel/common/linux/
hdreg.h 45 unsigned select : 1; member in struct:ide_reg_valid_s::__anon259

Completed in 884 milliseconds

1 23 4 5 6