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

1 2 3 4 5 6 7 8 91011>>

  /external/tpm2/
HierarchyControl.c 23 BOOL *selected = NULL; local
68 // Enable or disable the selected hierarchy
80 selected = &gc.shEnable;
83 selected = &gc.ehEnable;
86 selected = &g_phEnable;
89 selected = &gc.phEnableNV;
95 if(selected != NULL && *selected != select)
109 *selected = select;
  /external/autotest/frontend/client/src/autotest/common/table/
BooleanFilter.java 16 String selected = getSelectedText(); local
17 params.put(fieldName, JSONBoolean.getInstance(selected.equals("Yes")));
ListFilter.java 56 int selected = select.getSelectedIndex(); local
57 if (selected == -1) {
60 return getItemText(selected);
RadioButtonSetFilter.java 16 private int selected; field in class:RadioButtonSetFilter
44 selected = index;
49 return selected;
58 selected = Integer.parseInt(((RadioButton) event.getSource()).getFormValue());
  /toolchain/binutils/binutils-2.27/binutils/
objdump.h 26 /* TRUE if the option is selected. Automatically set and cleared by
28 unsigned int selected; member in struct:objdump_private_option
40 options whose SELECTED field is set. */
  /external/conscrypt/common/src/main/java/org/conscrypt/
ApplicationProtocolSelectorAdapter.java 52 * selected protocol (i.e. points to the length prefix). Otherwise, returns
64 final String selected; local
66 selected = selector.selectApplicationProtocol(engine, protocols);
68 selected = selector.selectApplicationProtocol(socket, protocols);
70 if (selected == null || selected.isEmpty()) {
76 if (selected.equals(protocol)) {
77 // Found the selected protocol. Return the index position of the beginning of
  /external/squashfs-tools/squashfs-tools/
gzip_wrapper.h 61 int selected; member in struct:strategy
xz_wrapper.h 51 int selected; member in struct:bcj
gzip_wrapper.c 117 if(strategy[i].selected == 0) {
118 strategy[i].selected = 1;
152 if(strategy_count == 1 && strategy[0].selected) {
154 strategy[0].selected = 0;
191 strategies |= strategy[i].selected << i;
263 strategy[i].selected = 1;
266 strategy[i].selected = 0;
312 printf("\tStrategies selected: ");
319 printf("\tStrategies selected: default\n");
362 if(!strategy[i].selected)
401 struct gzip_strategy *selected = NULL; local
    [all...]
xz_wrapper.c 86 if(bcj[i].selected == 0) {
87 bcj[i].selected = 1;
245 flags |= bcj[i].selected << i;
309 bcj[i].selected = 1;
312 bcj[i].selected = 0;
357 printf("\tFilters selected: ");
409 if(bcj[i].selected) {
442 struct filter *selected = NULL; local
460 if(!selected || selected->length > filter->length
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
WorkingSetHelper.java 42 IWorkingSet[] selected= getSelectedWorkingSet(selection); local
43 if (selected != null && selected.length > 0) {
44 for (int i= 0; i < selected.length; i++) {
45 if (!isValidWorkingSet(selected[i]))
48 return selected;
ImportPage.java 214 List<ImportedProject> selected = new ArrayList<ImportedProject>(); local
228 selected.add(project);
232 mValues.importProjects = selected;
235 mCheckboxTableViewer.setCheckedElements(selected.toArray());
318 * @return the selected working sets to which the new project should be added
327 * @param workingSets the initial selected working sets
422 List<ImportedProject> selected = new ArrayList<ImportedProject>(checked.length); local
425 selected.add((ImportedProject) o);
428 mValues.importProjects = selected;
  /art/tools/ahat/src/main/com/android/ahat/
SubsetSelector.java 39 * the limit selectors selected value.
53 // Return the list of elements included in the selected subset.
54 public List<T> selected() { method in class:SubsetSelector
58 // Return the list of remaining elements not included in the selected subset.
64 * Returns the currently selected limit.
67 * @return the number of selected elements
  /cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
AssertHelpers.java 182 T selected = null; local
186 selected = check;
196 return selected;
  /external/selinux/libsemanage/src/
pywrap-test.py 67 def selected(self): member in class:Tests
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
AssertHelpers.java 188 T selected = null; local
192 selected = check;
202 return selected;
  /external/droiddriver/src/io/appium/droiddriver/finders/
By.java 131 * Matches a UiElement that is selected.
133 public static MatchFinder selected() { method in class:By
134 return is(Attribute.SELECTED);
  /external/tensorflow/tensorflow/core/kernels/
non_max_suppression_op.cc 115 std::vector<int> selected; local
119 if (selected.size() >= output_size) break;
122 // therefore we iterate through the selected boxes backwards.
132 selected.push_back(sorted_indices[i]);
139 TensorShape output_shape({static_cast<int>(selected.size())});
142 std::copy_n(selected.begin(), selected.size(), selected_indices_data.data());
  /frameworks/base/tools/aapt2/split/
TableSplitter.cpp 61 std::vector<ResourceConfigValue*> selected; local
71 selected.push_back(config_value);
104 selected.push_back(best_value);
107 return selected;
228 // No need to do any work if we selected nothing.
245 // Copy the selected values into the new Split Entry.
  /cts/tests/app/src/android/app/cts/
AlertDialog_BuilderCursorTest.java 179 final SQLiteCursor selected = (SQLiteCursor) mListView.getSelectedItem(); local
180 assertEquals(mCursor.getString(1), selected.getString(1));
200 final SQLiteCursor selected = (SQLiteCursor) mListView.getSelectedItem(); local
201 assertEquals(mCursor.getString(1), selected.getString(1));
225 SQLiteCursor selected = (SQLiteCursor) mListView.getSelectedItem(); local
226 assertEquals(mCursor.getString(0), selected.getString(0));
237 selected = (SQLiteCursor) mListView.getSelectedItem();
238 assertEquals(mCursor.getString(1), selected.getString(1));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
KMeansPlusPlusClusterer.java 58 /** Selected strategy for empty clusters. */
204 * @return a random point from the selected cluster
209 Cluster<T> selected = null; local
224 selected = cluster;
231 if (selected == null) {
236 final List<T> selectedPoints = selected.getPoints();
245 * @return a random point from the selected cluster
250 Cluster<T> selected = null; local
259 selected = cluster;
265 if (selected == null)
    [all...]
  /external/autotest/frontend/client/src/autotest/common/ui/
MultiListSelectPresenter.java 21 /* Simple display showing two list boxes, one of available items and one of selected items */
57 private boolean selected; field in class:MultiListSelectPresenter.Item
101 return selected;
104 private void setSelected(boolean selected) {
106 this.selected = selected;
289 // single selector always needs something selected
309 * Set the set of selected items by specifying item names. All names must exist in the set of
334 * Set the set of selected items, silently dropping any that don't exist in the header field
367 // reduce selection to the first selected ite
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
SavedQueriesControl.java 120 int selected = queryList.getSelectedIndex(); local
123 String queryName = queryList.getItemText(selected);
140 String idString = queryList.getValue(selected);
  /external/boringssl/src/tool/
speed.cc 144 const std::string &selected) {
145 if (!selected.empty() && key_name.find(selected) == std::string::npos) {
288 size_t ad_len, const std::string &selected) {
289 if (!selected.empty() && name.find(selected) == std::string::npos) {
302 size_t ad_len, const std::string &selected) {
303 if (!selected.empty() && name.find(selected) == std::string::npos) {
345 const std::string &selected) {
650 std::string selected; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBIAPITest.java 468 String selected; local
473 selected = testString.substring(start, gotoffset);
475 selected = testString.substring(gotoffset, start);
477 if (!selected.equals(expected))
478 errln("ERROR:****selected \"" + selected + "\" instead of \"" + expected + "\"");
480 logln("****selected \"" + selected + "\"");

Completed in 686 milliseconds

1 2 3 4 5 6 7 8 91011>>