HomeSort by relevance Sort by last modified time
    Searched refs:hasSelection (Results 1 - 25 of 73) sorted by null

1 2 3

  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewActivityMouseTest.java 43 import static android.widget.espresso.TextViewAssertions.hasSelection;
93 onView(withId(R.id.textview)).check(hasSelection("llo wor"));
101 onView(withId(R.id.textview)).check(hasSelection(""));
114 onView(withId(R.id.textview)).check(hasSelection("llo wor"));
167 onView(withId(R.id.textview)).check(hasSelection("c def g"));
179 onView(withId(R.id.textview)).check(hasSelection(""));
197 onView(withId(R.id.textview)).check(hasSelection(""));
214 onView(withId(R.id.textview)).check(hasSelection(""));
226 onView(withId(R.id.textview)).check(hasSelection("Hello"));
230 onView(withId(R.id.textview)).check(hasSelection("world"))
    [all...]
TextViewActivityTest.java 47 import static android.widget.espresso.TextViewAssertions.hasSelection;
183 onView(withId(R.id.textview)).check(hasSelection("Kirk"));
207 onView(withId(R.id.textview)).check(hasSelection("little handsome"));
216 onView(withId(R.id.textview)).check(hasSelection("\uD83D\uDE02"));
221 onView(withId(R.id.textview)).check(hasSelection("\uD83D\uDE01"));
234 onView(withId(R.id.textview)).check(hasSelection(""));
252 onView(withId(R.id.textview)).check(hasSelection("SuetYi"));
262 onView(withId(R.id.textview)).check(hasSelection("young beautiful"));
271 onView(withId(R.id.textview)).check(hasSelection("abcd\nefg\nhijklm"));
281 onView(withId(R.id.textview)).check(hasSelection("king of the"))
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
SharedInputHandler.java 106 if (mSelectionMgr.hasSelection()) {
120 if (mSelectionMgr.hasSelection()) {
DocsSelectionHelper.java 71 public boolean hasSelection() {
72 return mDelegate.hasSelection();
207 public boolean hasSelection() {
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
TextViewAssertions.java 62 public static ViewAssertion hasSelection(String selection) {
63 return hasSelection(is(selection));
77 public static ViewAssertion hasSelection(Matcher<String> selection) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
SelectionHelper.java 44 public abstract boolean hasSelection();
MouseInputHandler.java 98 if (mSelectionHelper.hasSelection()) {
129 if (mSelectionHelper.hasSelection()) {
DefaultSelectionHelper.java 130 public boolean hasSelection() {
179 if (!hasSelection()) {
197 if (hasSelection()) {
216 if (mSingleSelect && hasSelection()) {
TouchInputHandler.java 82 if (mSelectionHelper.hasSelection()) {
GestureSelectionHelper.java 236 return mStarted && mSelectionMgr.hasSelection();
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
EdgeSwipeDetector.java 66 } else if (mTable.hasSelection()) {
KeyboardInterpreter.java 40 if (mTable.hasSelection()) {
PhotoTouchListener.java 184 if (!mTable.hasSelection()) {
210 if (mTable.hasSelection()) {
PhotoTable.java 182 public boolean hasSelection() {
191 if (hasSelection()) {
226 if (hasSelection() && mOnDeck[NEXT] != null) {
240 if (hasSelection() && mOnDeck[PREV] != null) {
252 if (hasSelection()) {
412 if (hasSelection()) {
442 if (hasSelection()) {
521 if (hasSelection() && getSelection() == mParent) {
571 if (table.hasSelection()) {
601 if (!hasSelection()) {
    [all...]
  /packages/services/Telephony/src/com/android/phone/settings/fdn/
FdnList.java 154 boolean hasSelection = (getSelectedItemPosition() >= 0);
157 menu.findItem(MENU_EDIT).setVisible(hasSelection);
158 menu.findItem(MENU_DELETE).setVisible(hasSelection);
159 menu.findItem(MENU_DIAL).setVisible(hasSelection && mFdnDialDirectlySupported);
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
DocsSelectionHelperTest.java 78 mSelectionMgr.hasSelection();
139 public boolean hasSelection() {
  /external/autotest/frontend/client/src/autotest/tko/
ContentSelect.java 72 ValueChangeEvent.fire(this, hasSelection());
92 public boolean hasSelection() {
97 if (hasSelection()) {
  /frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
MouseInputHandler.java 114 if (mSelectionTracker.hasSelection()) {
126 checkState(mSelectionTracker.hasSelection());
156 if (mSelectionTracker.hasSelection()) {
DefaultSelectionTracker.java 110 public boolean hasSelection() {
160 if (!hasSelection()) {
170 if (!hasSelection()) {
188 if (hasSelection()) {
210 if (mSingleSelect && hasSelection()) {
TouchInputHandler.java 90 if (mSelectionTracker.hasSelection()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintViewPart.java 330 boolean hasSelection = markers.size() > 0;
331 boolean canFix = hasSelection;
363 mIgnoreAction.setEnabled(hasSelection && haveFile && isJavaOrXml);
364 mIgnoreFileAction.setEnabled(hasSelection && haveFile);
365 mIgnoreProjectAction.setEnabled(hasSelection);
366 mAlwaysIgnoreAction.setEnabled(hasSelection);
367 mRemoveAction.setEnabled(hasSelection);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java     [all...]
  /frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/
DefaultSelectionTrackerTest.java 189 assertFalse(mTracker.hasSelection());
199 assertFalse(mTracker.hasSelection());
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
ViewElement.java 147 if (textView.hasSelection()) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DragStartListener.java 166 && mSelectionMgr.hasSelection()

Completed in 3135 milliseconds

1 2 3