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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-netbsd/android/include/
fd_setsize.h 1 #include <sys/select.h>
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
SelectionPolicy.java 20 * Algorithm used to select a chromosome pair from a population.
27 * Select two chromosomes from the population.
31 ChromosomePair select(Population population); method in interface:SelectionPolicy
  /external/eigen/doc/snippets/
MatrixBase_select.cpp 5 m = (m.array() >= 5).select(-m, m);
  /external/strace/tests/
select.c 6 #include <sys/select.h>
20 * Start with a nice simple select.
25 assert(select(2, set, set, set, NULL) == 1);
33 assert(select(-1, NULL, set, NULL, NULL) == -1);
40 assert(select(FD_SETSIZE + 1, set, set + 1, NULL, &timeout) == 0);
  /packages/apps/Email/provider_src/com/android/email/provider/
FolderPickerCallback.java 23 public void select(Folder folder); method in interface:FolderPickerCallback
  /libcore/luni/src/test/java/libcore/java/net/
ProxySelectorTest.java 66 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(ftpUri));
67 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(httpUri));
68 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(httpsUri));
69 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(socketUri));
70 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(otherUri));
80 proxySelector.select(ftpUri));
82 proxySelector.select(httpUri));
84 proxySelector.select(httpsUri));
85 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(otherUri));
86 assertEquals(Arrays.asList(Proxy.NO_PROXY), proxySelector.select(socketUri))
    [all...]
  /external/compiler-rt/test/msan/
vector_select.cc 4 // Regression test for MemorySanitizer instrumentation of a select instruction
10 __m128d select(bool b, __m128d c, __m128d d) function
17 __w64d select(bool b, __w64d c, __w64d d) function
  /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 *);
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/common/
console_helper.c 19 #include <sys/select.h>
37 if(select(1, &read_fd, NULL, NULL, &tv) == -1)
  /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...]
  /libcore/luni/src/main/java/java/nio/channels/
Selector.java 31 * By invoking the {@code select} method, the key set is checked and all keys
32 * that have been canceled since last select operation are moved to the set of
33 * canceled keys. During the select operation, the channels registered with this
57 * Closes this selector. Ongoing calls to the {@code select} methods of this
110 public abstract int select() throws IOException; method in class:Selector
130 public abstract int select(long timeout) throws IOException; method in class:Selector
160 * Forces blocked {@code select} operations to return immediately.
162 * If no {@code select} operation is blocked when {@code wakeup()} is called
163 * then the next {@code select} operation will return immediately. This can
165 * {@code selectNow()}, a subsequent call of {@code select} can bloc
    [all...]
  /external/clang/test/SemaCXX/
discrim-union.cpp 14 template<unsigned N> struct select {}; // : integral_constant<unsigned, N> {}; struct in namespace:detail
31 constexpr either_impl(select<0>, T &&t) : val(move(t)) {}
34 constexpr either_impl(select<N>, U &&u) : rest(select<N-1>(), move(u)) {}
49 constexpr const T &get(select<0>) { return val; }
50 template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{})) get(select<N>) {
51 return rest.get(select<N-1>{});
76 impl(detail::select<impl_t::index(detail::type<U>())>(), move(t.value)) {}
85 decltype(static_cast<const impl_t&>(impl).get(detail::select<N>{}))
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ProxySelectorTest.java 108 * java.net.ProxySelector#select(URI)
113 proxyList = selector.select(httpUri);
129 proxyList = selector.select(httpUri);
132 proxyList = selector.select(httpsUri);
135 proxyList = selector.select(ftpUri);
138 proxyList = selector.select(tcpUri);
144 * java.net.ProxySelector#select(URI)
154 proxyList = selector.select(httpUri);
170 proxyList = selector.select(httpUri);
174 proxyList = selector.select(httpsUri)
540 public List<Proxy> select(URI uri) { method in class:ProxySelectorTest.MockProxySelector
    [all...]
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/base/
list_view.css 7 -webkit-user-select: none;
15 -webkit-user-select: none;
  /libcore/luni/src/main/java/java/net/
ProxySelector.java 117 public abstract List<Proxy> select(URI uri); method in class:ProxySelector
  /frameworks/wilhelm/tests/sandbox/
getch.c 8 #include <sys/select.h>
41 return select(1, &fds, NULL, NULL, &tv);
  /development/ndk/platforms/android-3/include/sys/
select.h 40 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
  /external/doclava/res/assets/templates/components/
api_filter.cs 6 <select id="apiLevelSelector">
8 </select>
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/sys/
select.h 40 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/sys/
select.h 40 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);

Completed in 1471 milliseconds

1 2 3 4 5 6 7 8 91011>>