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

1 2 34 5 6 7 8 91011>>

  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
AddressedMediaPlayer.java 80 // No players (if a player exists, we would have selected it)
280 List<MediaSession.QueueItem> selected = local
282 if (selected.isEmpty()) {
286 return selected;
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSimpleAdapter.java 93 boolean selected; field in class:SelectCalendarsSimpleAdapter.CalendarRow
203 mData[p].selected = c.getInt(mVisibleColumn) != 0;
222 boolean selected = mData[position].selected;
274 if (selected) {
285 syncCheckBox.setChecked(selected);
294 if (selected) {
312 view.findViewById(R.id.color).setEnabled(selected && hasMoreColors(position));
313 view.setBackgroundDrawable(getBackground(position, selected));
323 visibleCheckBox.setChecked(selected);
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/
MultiChoiceManager.java 166 // onDestroyActionMode gets called when the share target was selected,
274 SparseBooleanArray selected = mDelegate.getSelectedItemPositions(); local
275 for (int i = 0; i < selected.size(); i++) {
276 if (selected.valueAt(i)) {
287 SparseBooleanArray selected = mDelegate.getSelectedItemPositions(); local
288 for (int i = 0; i < selected.size(); i++) {
289 if (selected.valueAt(i)) {
290 return mDelegate.getItemAtPosition(selected.keyAt(i));
  /bootable/recovery/
screen_ui.cpp 156 // Clear the screen and draw the currently selected background icon (if any).
317 size_t selected = 0; local
318 SelectAndShowBackgroundText(locales_entries, selected);
326 selected = (selected == 0) ? locales_entries.size() - 1 : selected - 1;
327 SelectAndShowBackgroundText(locales_entries, selected);
329 selected = (selected == locales_entries.size() - 1) ? 0 : selected + 1
    [all...]
recovery.cpp 625 // a menu item gets selected. 'initial_selection' controls the initial cursor location. Returns the
634 int selected = initial_selection; local
654 selected = ui->SelectMenu(--selected);
657 selected = ui->SelectMenu(++selected);
660 chosen_item = selected;
674 // Returns the selected filename, or an empty string.
731 // Selected a zip file: return the path to the caller.
    [all...]
  /external/curl/lib/vtls/
vtls.c 1224 static const struct Curl_ssl *selected; local
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-internal-inl.h 323 const int selected = begin + random->Generate(range_width); local
324 std::swap((*v)[selected], (*v)[last_in_range]);
    [all...]
  /external/icu/icu4c/source/test/intltest/
rbbiapts.cpp 1464 UnicodeString selected; local
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-internal-inl.h 319 const int selected = begin + random->Generate(range_width); local
320 std::swap((*v)[selected], (*v)[last_in_range]);
    [all...]
  /external/protobuf/gtest/src/
gtest-internal-inl.h 305 const int selected = begin + random->Generate(range_width); local
306 std::swap((*v)[selected], (*v)[last_in_range]);
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-internal-inl.h 316 const int selected = begin + random->Generate(range_width); local
317 std::swap((*v)[selected], (*v)[last_in_range]);
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_ttls.c 76 char *selected; local
82 selected = "EAP";
100 selected = "MSCHAPV2";
104 selected = "MSCHAP";
108 selected = "PAP";
112 selected = "CHAP";
139 selected = "EAP";
144 wpa_printf(MSG_DEBUG, "EAP-TTLS: Phase2 type: %s", selected);
324 wpa_printf(MSG_DEBUG, "EAP-TTLS: Selected "
389 wpa_printf(MSG_DEBUG, "EAP-TTLS: Selected "
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 1119 Rational lower, upper, selected; local
1218 Rational lower, upper, selected; local
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/app/
RowsFragment.java 249 if (DEBUG) Log.v(TAG, "new row selected position " + position + " subposition "
328 static void setRowViewSelected(ItemBridgeAdapter.ViewHolder vh, boolean selected,
331 extra.animateSelect(selected, immediate);
332 ((RowPresenter) vh.getPresenter()).setRowViewSelected(vh.getViewHolder(), selected); local
354 // selected state is initialized to false, then driven by grid view onChildSelected
519 // we will get a success callback to update selected row position. Since the
520 // update to selected row position happens in a post, we want to ensure that this
RowsSupportFragment.java 244 if (DEBUG) Log.v(TAG, "new row selected position " + position + " subposition "
323 static void setRowViewSelected(ItemBridgeAdapter.ViewHolder vh, boolean selected,
326 extra.animateSelect(selected, immediate);
327 ((RowPresenter) vh.getPresenter()).setRowViewSelected(vh.getViewHolder(), selected); local
349 // selected state is initialized to false, then driven by grid view onChildSelected
514 // we will get a success callback to update selected row position. Since the
515 // update to selected row position happens in a post, we want to ensure that this
  /packages/apps/Contacts/src/com/android/contacts/editor/
LabeledEditorView.java 93 * A marker in the spinner adapter of the currently selected custom type.
292 * Build the current label state based on selected {@link EditType} and
520 EditType selected = mEditTypeAdapter.getItem(position); local
522 if (mEditTypeAdapter.hasCustomSelection() && selected == CUSTOM_SELECTION) {
526 if (mType == selected && mType.customColumn == null) {
530 if (selected.customColumn != null) {
534 mType = selected;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
ProcessingService.java 197 String selected = intent.getStringExtra(SELECTED_URI); local
205 if (selected != null) {
206 selectedUri = Uri.parse(selected);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ActionModeHandler.java 272 ArrayList<MediaObject> selected = new ArrayList<MediaObject>(); local
278 selected.add(manager.getMediaObject(path));
281 return selected;
287 private int computeMenuOptions(ArrayList<MediaObject> selected) {
290 for (MediaObject mediaObject: selected) {
296 switch (selected.size()) {
389 public void updateSupportedOperation(Path path, boolean selected) {
410 ArrayList<MediaObject> selected = getSelectedMediaObjects(jc);
411 if (selected == null) {
417 // Disable all the operations when no item is selected
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DeviceChooserDialog.java 506 * but the selected item can have changed in between.
802 AvdInfo selected = mPreferredAvdSelector.getSelected(); local
811 if (selected != null) {
812 if (mPreferredAvdSelector.setSelection(selected) == false) {
814 // running the AVD that was selected was launched from outside of Eclipse).
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ExportWizard.java 360 Object selected = selection.getFirstElement(); local
362 if (selected instanceof IProject) {
363 mProject = (IProject)selected;
364 } else if (selected instanceof IAdaptable) {
365 IResource r = (IResource)((IAdaptable)selected).getAdapter(IResource.class);
  /toolchain/binutils/binutils-2.27/opcodes/
m32c-desc.c 62897 const CGEN_HW_ENTRY **selected = local
62931 const CGEN_OPERAND **selected = xmalloc (MAX_OPERANDS * sizeof (* selected)); local
    [all...]
  /external/googletest/googletest/src/
gtest-internal-inl.h 326 const int selected = begin + random->Generate(range_width); local
327 std::swap((*v)[selected], (*v)[last_in_range]);
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-internal-inl.h 326 const int selected = begin + random->Generate(range_width); local
327 std::swap((*v)[selected], (*v)[last_in_range]);
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-internal-inl.h 325 const int selected = begin + random->Generate(range_width); local
326 std::swap((*v)[selected], (*v)[last_in_range]);
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowView.java 49 private boolean selected; field in class:ShadowView
312 public void setSelected(boolean selected) {
313 this.selected = selected;
318 return this.selected;

Completed in 871 milliseconds

1 2 34 5 6 7 8 91011>>