HomeSort by relevance Sort by last modified time
    Searched refs:select (Results 176 - 200 of 2212) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
UnixSelectorTest.java 69 assertEquals(1, sel0.select(100));
73 assertEquals(0, sel1.select(100));
89 assertEquals(1, sel2.select(100));
98 assertEquals(1, sel3.select(100));
106 assertEquals(1, sel4.select(100));
112 assertEquals(1, sel5.select(100));
  /external/v8/tools/turbolizer/
selection.js 22 handler.select(this.selection, false);
30 Selection.prototype.select = function(s, isSelected) { method in class:Selection
43 handler.select(this.selection, true);
52 handler.select(unselectSet, false);
95 handler.select(unselect_diff, false);
96 handler.select(pos_diff, true);
  /external/icu/icu4c/source/i18n/unicode/
plurrule.h 54 * of a series of keywords and conditions. The {@link #select} method
177 * {@link #select} method.
181 * UnicodeString keyword = pl->select(number);
334 UnicodeString select(int32_t number) const;
345 UnicodeString select(double number) const;
351 UnicodeString select(const FixedDecimal &number) const;
355 UnicodeString select(const VisibleDigitsWithExponent &number) const;
386 * Orginally intended to return all the values for which select() would return the keyword.
409 * Returns sample values for which select() would return the keyword. If
  /external/ltp/testcases/kernel/io/aio/aio02/
common.h 7 #include <sys/select.h>
  /external/strace/tests/
oldselect.c 36 # include <sys/select.h>
57 perror_msg_and_skip("select");
  /external/strace/tests-m32/
oldselect.c 36 # include <sys/select.h>
57 perror_msg_and_skip("select");
  /external/strace/tests-mx32/
oldselect.c 36 # include <sys/select.h>
57 perror_msg_and_skip("select");
  /prebuilts/go/darwin-x86/test/chan/
select.go 7 // Test simple select.
24 select {
  /prebuilts/go/linux-x86/test/chan/
select.go 7 // Test simple select.
24 select {
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/rrlp_components/
GANSSAddUTCModel.java 48 private static final Map<Asn1Tag, Select> tagToSelection = new HashMap<>();
55 for (Select select : Select.values()) {
56 for (Asn1Tag tag : select.getPossibleFirstTags()) {
57 Select select0;
58 if ((select0 = tagToSelection.put(tag, select)) != null) {
60 "GANSSAddUTCModel: " + tag + " maps to both " + select0 + " and " + select);
127 return Select.values().length;
136 selection = Select.values()[ordinal]
143 Select select = tagToSelection.get(tag); local
    [all...]
GANSSAuxiliaryInformation.java 48 private static final Map<Asn1Tag, Select> tagToSelection = new HashMap<>();
55 for (Select select : Select.values()) {
56 for (Asn1Tag tag : select.getPossibleFirstTags()) {
57 Select select0;
58 if ((select0 = tagToSelection.put(tag, select)) != null) {
60 "GANSSAuxiliaryInformation: " + tag + " maps to both " + select0 + " and " + select);
127 return Select.values().length;
136 selection = Select.values()[ordinal]
143 Select select = tagToSelection.get(tag); local
    [all...]
OTD_MsrsOfOtherSets.java 48 private static final Map<Asn1Tag, Select> tagToSelection = new HashMap<>();
55 for (Select select : Select.values()) {
56 for (Asn1Tag tag : select.getPossibleFirstTags()) {
57 Select select0;
58 if ((select0 = tagToSelection.put(tag, select)) != null) {
60 "OTD_MsrsOfOtherSets: " + tag + " maps to both " + select0 + " and " + select);
127 return Select.values().length;
136 selection = Select.values()[ordinal]
143 Select select = tagToSelection.get(tag); local
    [all...]
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/supl_triggered_start/
TriggerParams.java 48 private static final Map<Asn1Tag, Select> tagToSelection = new HashMap<>();
55 for (Select select : Select.values()) {
56 for (Asn1Tag tag : select.getPossibleFirstTags()) {
57 Select select0;
58 if ((select0 = tagToSelection.put(tag, select)) != null) {
60 "TriggerParams: " + tag + " maps to both " + select0 + " and " + select);
127 return Select.values().length;
136 selection = Select.values()[ordinal]
143 Select select = tagToSelection.get(tag); local
    [all...]
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/ulp_components/
SLPAddress.java 48 private static final Map<Asn1Tag, Select> tagToSelection = new HashMap<>();
55 for (Select select : Select.values()) {
56 for (Asn1Tag tag : select.getPossibleFirstTags()) {
57 Select select0;
58 if ((select0 = tagToSelection.put(tag, select)) != null) {
60 "SLPAddress: " + tag + " maps to both " + select0 + " and " + select);
127 return Select.values().length;
136 selection = Select.values()[ordinal]
143 Select select = tagToSelection.get(tag); local
    [all...]
  /external/tpm2/
PCR.c 408 // If size of select is less than PCR_SELECT_MAX, zero the unspecified PCR
736 TPMS_PCR_SELECTION *select;
748 select = &selection->pcrSelections[i]; // Point to the current selection
749 FilterPcr(select); // Clear out the bits for unimplemented PCR
755 if(IsPcrSelected(pcr, select)) // Is this PCR selected
784 TPMS_PCR_SELECTION *select;
793 select = &selection->pcrSelections[i]; // Point to the current selection
794 FilterPcr(select); // Clear out the bits for unimplemented PCR
798 if(IsPcrSelected(pcr, select)) // Is this PCR selected
803 // Clear rest of the current select bitma
735 TPMS_PCR_SELECTION *select; local
783 TPMS_PCR_SELECTION *select; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SelectorTest.java 46 assertEquals(1, selector.select());
60 int count = selector.select();
77 selector.select();
79 // create a latch that will reach 0 when select returns
84 selector.select();
92 // select doesn't ever return, so await() times out and returns false
132 assertEquals(1, selector.select());
134 assertEquals(0, selector.select());
167 assertEquals(1, selector.select(100));
168 assertEquals(0, selector.select(100))
    [all...]
  /prebuilts/tools/common/m2/repository/org/jsoup/jsoup/1.6.3/
jsoup-1.6.3.jar 
  /external/compiler-rt/make/
lib_util.mk 27 # Helper functions that select the entire list of subdirs where a function is
46 # Helper function to select the right set of dirs in generic priority order.
53 # Helper function to select the right set of dirs in optimized priority order.
60 # Helper function to select the right set of dirs (which should be exactly one)
  /external/curl/docs/examples/
multi-double.c 68 int rc; /* select() return code */
104 select(maxfd + 1, ...); specially in case of (maxfd == -1) there are
105 no fds ready yet so we call select(0, ...) --or Sleep() on Windows--
116 rc = select(0, NULL, NULL, NULL, &wait);
120 /* Note that on some platforms 'timeout' may be modified by select().
122 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
127 /* select error */
  /external/curl/tests/libtest/
lib1531.c 61 int rc; /* select() return code */
97 select(maxfd + 1, ...); specially in case of (maxfd == -1) there are
98 no fds ready yet so we call select(0, ...) --or Sleep() on Windows--
109 rc = select(0, NULL, NULL, NULL, &wait);
113 /* Note that on some platforms 'timeout' may be modified by select().
115 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
120 /* select error */
  /external/ltp/testcases/open_posix_testsuite/include/
mq_send.h 11 #include <sys/select.h>
65 r = select(fd[0] + 1, &rfds, NULL, NULL, &tv);
  /external/swiftshader/src/Common/
Socket.cpp 69 bool Socket::select(int us) function in class:sw::Socket
77 return ::select(FD_SETSIZE, &sockets, 0, 0, &timeout) >= 1;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
select.h 1 /* `fd_set' type and related macros, and `select'/`pselect' declarations.
20 /* POSIX 1003.1g: 6.2 Select from File Descriptor Sets <sys/select.h> */
31 #include <bits/select.h>
66 /* fd_set for select and pselect. */
109 extern int select (int __nfds, fd_set *__restrict __readfds,
130 #endif /* sys/select.h */
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprogcgo/
threadpanic.go 18 select {}

Completed in 1613 milliseconds

1 2 3 4 5 6 78 91011>>