HomeSort by relevance Sort by last modified time
    Searched full:select (Results 1626 - 1650 of 8132) sorted by null

<<61626364656667686970>>

  /libcore/luni/src/test/java/tests/java/sql/
DeleteFunctionalityTest.java 158 ResultSet r = statement.executeQuery("SELECT COUNT(*) FROM "
173 + " WHERE name_id = ANY (SELECT id FROM "
175 ResultSet r = statement.executeQuery("SELECT COUNT(*) FROM "
194 ResultSet r = statement.executeQuery("SELECT COUNT(*) FROM "
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/config/
user.hpp 74 // boost.config would normally select, any replacement should set up
79 // boost.config would normally select, any replacement should undo
105 // BOOST_ALL_NO_LIB: Tells the config system not to automatically select
114 // select which library to link against for library "whatever",
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
version.hpp 28 // This is used by <config/auto_link.hpp> to select which library version to link to.
  /packages/apps/Contacts/res/layout/
edit_date_picker.xml 18 <!-- Button to select a date in the contact editor. -->
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/
select.h 39 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/
select.h 39 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/sys/
select.h 39 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/sys/
select.h 39 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/sys/
select.h 39 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/sys/
select.h 39 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutWizard.java 135 mTypeCombo.select(0);
141 mTypeCombo.select(i);
148 mTypeCombo.select(i);
167 setErrorMessage("Select a layout type");
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/
README.txt 25 Select "Run a single test"
58 B- Select the "unittests" source folder, right-click and select
88 Select "Run a single test"
  /sdk/emulator/opengl/tests/event_injector/
iolooper-select.c 21 /* An implementation of iolooper.h based on Unix select() */
27 # include <sys/select.h>
179 ret = select( count, iol->reads_result, iol->writes_result, &errs, &tv);
210 ret = select( count, iol->reads_result, iol->writes_result, &errs, tm);
  /system/core/libcutils/
socket_loopback_client.c 28 #include <sys/select.h>
  /art/runtime/jdwp/
jdwp_adb.cc 335 LOG(INFO) << "NOTE: entering select w/o wakepipe";
344 * Select blocks until it sees activity on the file descriptors.
347 * and accept(), but not select()).
352 * re-issue the select. We're currently using #2, as it's more
355 selCount = select(maxfd+1, &readfds, NULL, NULL, NULL);
360 PLOG(ERROR) << "select failed";
365 LOG(DEBUG) << "Got wake-up signal, bailing out of select";
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemForEach.java 52 * select %expr; #REQUIRED
83 * The "select" expression.
96 * Set the "select" attribute.
98 * @param xpath The XPath expression for the "select" attribute.
110 * Get the "select" attribute.
112 * @return The XPath expression for the "select" attribute.
425 * select %expr; "node()"
ElemSort.java 34 * select %expr; "."
51 * xsl:sort has a select attribute whose value is an expression.
57 * Set the "select" attribute.
58 * xsl:sort has a select attribute whose value is an expression.
64 * sort key for that node. The default value of the select attribute
68 * @param v Value to set for the "select" attribute
80 * Get the "select" attribute.
81 * xsl:sort has a select attribute whose value is an expression.
87 * sort key for that node. The default value of the select attribute
91 * @return The value of the "select" attribut
    [all...]
  /external/chromium_org/native_client_sdk/src/doc/devguide/coding/
nacl_io.rst 91 #. select the fopen command (when you select a command the fields in the line
95 #. select the fwrite command and select the file ``/persistent/test`` in the
98 #. select the fclose command, be sure the file ``/persistent/test`` is selected
100 #. select the fopen command
103 #. select the fread command, be sure the file /persistent/test is selected in
  /external/chromium_org/third_party/WebKit/Source/web/
PopupListBox.h 70 // Autocomplete popups are restricted, combo-boxes (select tags) aren't.
88 // or <optgroup> in a <select> widget) and is used by PopupListBox.
144 // Sets the index of the option that is displayed in the <select> widget in the page
203 // Select an index in the list, scrolling if necessary.
206 // Accepts the selected index as the value to be displayed in the <select>
273 // A list of the options contained within the <select>
276 // The <select> PopupMenuClient that opened us.
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
ui.js 96 ui.html.select = function(label, queryParameter, options)
99 '<select onchange="g_history.setQueryParameter(\'' + queryParameter + '\', this[this.selectedIndex].value)">';
107 html += '</select></label> ';
129 // Returns the HTML for the select element to switch to different testTypes.
132 var html = ui.html.select('Test type', 'testType', builders.testTypes);
137 html += ui.html.select('Builder', 'builder', buildersForMenu);
140 html += ui.html.select('Group', 'group', builders.groupNamesForTestType(g_history.crossDashboardState.testType));
  /external/chromium_org/third_party/sqlite/src/test/
e_droptrigger.test 35 db eval "SELECT '$name.' || name FROM $tbl WHERE type = 'trigger'"
56 CREATE TRIGGER tr1 AFTER $event ON t1 BEGIN SELECT r('temp.tr1') ; END;
60 CREATE TRIGGER tr1 BEFORE $event ON t2 BEGIN SELECT r('main.tr1') ; END;
61 CREATE TRIGGER tr2 AFTER $event ON t2 BEGIN SELECT r('main.tr2') ; END;
65 CREATE TRIGGER aux.tr1 BEFORE $event ON t3 BEGIN SELECT r('aux.tr1') ; END;
66 CREATE TRIGGER aux.tr2 AFTER $event ON t3 BEGIN SELECT r('aux.tr2') ; END;
67 CREATE TRIGGER aux.tr3 AFTER $event ON t3 BEGIN SELECT r('aux.tr3') ; END;
wal5.test 108 do_test 1.$tn.2 { sql2 { BEGIN; SELECT x FROM t1 } } {1 2 3}
144 do_test 1.$tn.8 { sql2 { BEGIN ; SELECT x FROM t1 } } {1 2 3 4 5}
149 do_test 1.$tn.10 { sql3 { BEGIN ; SELECT x FROM t1 } } {1 2 3 4 5 6}
217 do_test 2.2.$tn.3 { sql2 { BEGIN; SELECT * FROM t1 } } {1 2}
233 do_test 2.3.$tn.3 { sql2 { BEGIN; SELECT * FROM t1 } } {1 2}
280 1 { sql2 "COMMIT ; BEGIN ; SELECT * FROM t1" }
294 sql3 { BEGIN; SELECT * FROM t1 }
  /external/chromium_org/third_party/sqlite/src/tool/
speedtest.tcl 156 puts $fd "SELECT count(*), avg(b) FROM t2 WHERE b>=$lwr AND b<$upr;"
165 puts $fd "SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%[number_name $i]%';"
184 puts $fd "SELECT count(*), avg(b) FROM t2 WHERE b>=$lwr AND b<$upr;"
229 puts $fd "INSERT INTO t1 SELECT * FROM t2;"
230 puts $fd "INSERT INTO t2 SELECT * FROM t1;"
233 runtest {INSERTs from a SELECT}
252 puts $fd {INSERT INTO t2 SELECT * FROM t1;}
  /external/eigen/test/
array_for_matrix.cpp 107 // test Select
108 VERIFY_IS_APPROX( (m1.array()<m2.array()).select(m1,m2), m1.cwiseMin(m2) );
109 VERIFY_IS_APPROX( (m1.array()>m2.array()).select(m1,m2), m1.cwiseMax(m2) );
115 .select(MatrixType::Zero(rows,cols),m1), m3);
118 .select(0,m1), m3);
120 .select(m1,0), m3);
122 VERIFY_IS_APPROX( (m1.array().abs()<mid).select(0,m1), m3);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
Connection.cpp 127 ret = select(socketDescriptor + 1, &readfds, NULL, NULL, ptv);
131 LOG_ERRNO("select");
137 LOG_W(" Timeout during select() / No more notifications.");
145 LOG_ERRNO("no fd is set, select");
196 ret = select(socketDescriptor + 1, &readfds, NULL, NULL, ptv);
200 LOG_ERRNO("select");
203 LOG_E("select() timed out");

Completed in 758 milliseconds

<<61626364656667686970>>