/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
|
/external/tpm2/ |
HierarchyControl.c | 22 BOOL select = (in->state == YES); local 95 if(selected != NULL && *selected != select) 109 *selected = select; 111 if(select == CLEAR && in->enable != TPM_RH_PLATFORM_NV)
|
/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/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
|
TournamentSelection.java | 47 * Select two chromosomes from the population. Each of the two selected 56 public ChromosomePair select(Population population) { method in class:TournamentSelection 64 * Helper for {@link #select(Population)}. Draw {@link #arity} random 65 * chromosomes without replacement from the population, and then select the 86 // select a random individual and add it to the tournament 89 // do not select it again
|
/external/autotest/frontend/client/src/autotest/common/table/ |
ListFilter.java | 13 protected ListBox select; field in class:ListFilter 18 select = new ExtendedListBox(); 19 select.setMultipleSelect(isMultipleSelect()); 20 select.setStylePrimaryName("filter-box"); 21 select.addChangeHandler(new ChangeHandler() { 29 * Subclasses should override this if they wish to use a multi-select listbox 30 * @return true if and only if the listbox should be multiple select 41 if (select.getItemCount() > 0) { 42 select.setItemText(0, allValuesText); 52 return select.getItemText(index) [all...] |
/external/chromium-trace/catapult/systrace/profile_chrome/ |
ui.py | 6 import select namespace 16 select.select([sys.stdin], [], [], timeout)
|
/external/curl/src/ |
tool_setup.h | 53 # undef select macro 54 /* change which select is used for the curl command line tool */ 55 # define select(a,b,c,d,e) tpf_select_bsd(a,b,c,d,e) macro
|
/packages/apps/Email/provider_src/com/android/email/provider/ |
FolderPickerCallback.java | 23 public void select(Folder folder); method in interface:FolderPickerCallback
|
/external/autotest/client/virt/ |
virt_scheduler.py | 1 import os, select namespace 107 r, w, x = select.select(self.w2s_r, [], [])
|
/bionic/libc/bionic/ |
poll.cpp | 32 #include <sys/select.h> 68 int select(int fd_count, fd_set* read_fds, fd_set* write_fds, fd_set* error_fds, timeval* tv) { function
|
/external/autotest/client/bin/ |
harness.py | 86 def select(which, job, harness_args): function
|
/external/autotest/client/deps/pyxinput/src/ |
xi2reader.py | 7 import select namespace 146 rl, _, _ = select.select([fd], [], [])
|
/external/chromium-trace/catapult/systrace/systrace/ |
systrace-legacy.py | 15 import select namespace 153 ready = select.select([adb.stdout, adb.stderr], [],
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/ |
interactive.py | 40 import select namespace 49 r, w, e = select.select([chan, sys.stdin], [], [])
|
/libcore/ojluni/src/main/java/java/net/ |
ProxySelector.java | 41 * of URLConnection class should call the {@link #select select} 44 * #select select} method returns an iterator over a collection with 147 public abstract List<Proxy> select(URI uri); method in class:ProxySelector 153 * proxies returned by {@link #select(URI)}, using the address
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
Selector.java | 98 * cancelled-key sets. Selection is performed by the {@link #select()}, {@link 99 * #select(long)}, and {@link #selectNow()} methods, and involves three steps: 164 * <p> A thread blocked in one of the {@link #select()} or {@link 165 * #select(long)} methods may be interrupted by some other thread in one of 329 public abstract int select(long timeout) method in class:Selector 350 public abstract int select() throws IOException; method in class:Selector 357 * {@link #select()} or {@link #select(long)} methods then that invocation 362 * non-zero. Subsequent invocations of the {@link #select()} or {@link 363 * #select(long)} methods will block as usual unless this method is invoke [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/ |
PowerPlant.py | 43 def select(self, _object, _attributes={}, **_arguments): member in class:PowerPlant_Events 44 """select: Sets the present selection 45 Required argument: object to select or container of sub-objects to select 46 Keyword argument data: sub-object(s) to select
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_kqueue.py | 7 import select namespace 12 if not hasattr(select, "kqueue"): 17 kq = select.kqueue() 26 ev = select.kevent(fd) 27 other = select.kevent(1000) 29 self.assertEqual(ev.filter, select.KQ_FILTER_READ) 30 self.assertEqual(ev.flags, select.KQ_EV_ADD) 43 ev = select.kevent(fd, select.KQ_FILTER_WRITE) 45 self.assertEqual(ev.filter, select.KQ_FILTER_WRITE [all...] |
test_select.py | 3 import select namespace 19 self.assertRaises(TypeError, select.select, 1, 2, 3) 20 self.assertRaises(TypeError, select.select, [self.Nope()], [], []) 21 self.assertRaises(TypeError, select.select, [self.Almost()], [], []) 22 self.assertRaises(TypeError, select.select, [], [], [], "not a number") 26 r, w, x = select.select([], [], [], 1 [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_kqueue.py | 7 import select namespace 12 if not hasattr(select, "kqueue"): 17 kq = select.kqueue() 26 ev = select.kevent(fd) 27 other = select.kevent(1000) 29 self.assertEqual(ev.filter, select.KQ_FILTER_READ) 30 self.assertEqual(ev.flags, select.KQ_EV_ADD) 43 ev = select.kevent(fd, select.KQ_FILTER_WRITE) 45 self.assertEqual(ev.filter, select.KQ_FILTER_WRITE [all...] |
test_select.py | 3 import select namespace 19 self.assertRaises(TypeError, select.select, 1, 2, 3) 20 self.assertRaises(TypeError, select.select, [self.Nope()], [], []) 21 self.assertRaises(TypeError, select.select, [self.Almost()], [], []) 22 self.assertRaises(TypeError, select.select, [], [], [], "not a number") 26 r, w, x = select.select([], [], [], 1 [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/ |
PowerPlant.py | 43 def select(self, _object, _attributes={}, **_arguments): member in class:PowerPlant_Events 44 """select: Sets the present selection 45 Required argument: object to select or container of sub-objects to select 46 Keyword argument data: sub-object(s) to select
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_kqueue.py | 7 import select namespace 12 if not hasattr(select, "kqueue"): 17 kq = select.kqueue() 26 ev = select.kevent(fd) 27 other = select.kevent(1000) 29 self.assertEqual(ev.filter, select.KQ_FILTER_READ) 30 self.assertEqual(ev.flags, select.KQ_EV_ADD) 43 ev = select.kevent(fd, select.KQ_FILTER_WRITE) 45 self.assertEqual(ev.filter, select.KQ_FILTER_WRITE [all...] |
test_select.py | 3 import select namespace 19 self.assertRaises(TypeError, select.select, 1, 2, 3) 20 self.assertRaises(TypeError, select.select, [self.Nope()], [], []) 21 self.assertRaises(TypeError, select.select, [self.Almost()], [], []) 22 self.assertRaises(TypeError, select.select, [], [], [], "not a number") 26 r, w, x = select.select([], [], [], 1 [all...] |