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

1 2 3 4 5 6 7 8 91011>>

  /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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
checkextensions.py 32 files = files + select(e, mods, vars,
35 files = files + select(e, mods, vars, mod, 0)
39 def select(e, mods, vars, mod, skipofiles): function
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VcCheck/
VcCheck.c 97 char select; local
112 scanf ("%c", &select);
113 if ((select == 'Y') || (select == 'y')) {
  /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/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
  /external/python/cpython2/Tools/freeze/
checkextensions.py 32 files = files + select(e, mods, vars,
35 files = files + select(e, mods, vars, mod, 0)
39 def select(e, mods, vars, mod, skipofiles): function
  /external/python/cpython3/Tools/freeze/
checkextensions.py 32 files = files + select(e, mods, vars,
35 files = files + select(e, mods, vars, mod, 0)
39 def select(e, mods, vars, mod, skipofiles): function
  /external/v8/tools/turbolizer/
selection-broker.js 38 SelectionBroker.prototype.select = function(from, locations, selected) { method in class:SelectionBroker
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);
text-view.js 21 select: function(items, selected) {
30 broker.select(selectionHandler, view.getLocations(items), selected);
179 select(s, selected, makeVisible) {
196 view.selection.select(child, selected);
206 view.selection.select(s, selected);
211 view.selection.select(s, selected);
233 select(li, true);
20 }, method in class:selectionHandler
code-view.js 18 select: function(items, selected) {
33 broker.select(selectionHandler, locations, selected);
86 view.selection.select(currentSpan, selected);
102 view.selection.select(this, true);
17 clear: function() { broker.clear(selectionHandler); }, method in class:selectionHandler
  /packages/apps/Email/provider_src/com/android/email/provider/
FolderPickerCallback.java 23 public void select(Folder folder); method in interface:FolderPickerCallback
  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/
HeaderTextSelector.java 42 // we force it to select only the filename in the header. Meaning the name of the file would
48 mSelector.select((Spannable) value, 0, getLengthOfFilename(value));
70 * filename.txt returns the end index needed to select "filename".
87 void select(Spannable text, int start, int stop); method in interface:HeaderTextSelector.Selector
  /external/autotest/client/bin/
harness.py 84 def select(which, job, harness_args): function
  /external/python/cpython2/Lib/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
  /external/swiftshader/src/Common/
Socket.cpp 23 #include <sys/select.h>
70 bool Socket::select(int us) function in class:sw::Socket
78 return ::select(FD_SETSIZE, &sockets, 0, 0, &timeout) >= 1;
  /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
146 public abstract List<Proxy> select(URI uri); method in class:ProxySelector
152 * 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/jdk/jdk8/darwin-x86/sample/nio/server/
Dispatcher1.java 74 sel.select();
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Dispatcher1.java 74 sel.select();
  /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

Completed in 482 milliseconds

1 2 3 4 5 6 7 8 91011>>