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

1 2 3 4 5 6 7 8 9

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ListRow.java 57 * {@link HeaderItem#getContentDescription()} or {@link HeaderItem#getName()},
62 public CharSequence getContentDescription() {
68 CharSequence contentDescription = headerItem.getContentDescription();
78 * Explicitly set content description for the ListRow, {@link #getContentDescription()} will
HeaderItem.java 63 public CharSequence getContentDescription() {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
ExpandableIndicator.java 36 setContentDescription(getContentDescription(mExpanded));
49 setContentDescription(getContentDescription(expanded));
68 private String getContentDescription(boolean expanded) {
  /frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
KeyguardClockAccessibilityDelegateTest.java 59 assertFalse(TextUtils.isEmpty(ev.getContentDescription()));
60 assertTrue(isAscii(ev.getContentDescription()));
76 info.setContentDescription(mView.getContentDescription());
82 assertFalse(TextUtils.isEmpty(info.getContentDescription()));
83 assertTrue(isAscii(info.getContentDescription()));
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardClockAccessibilityDelegate.java 42 CharSequence text = event.getContentDescription();
69 if (!TextUtils.isEmpty(info.getContentDescription())) {
70 info.setContentDescription(replaceFancyColon(info.getContentDescription()));
  /packages/apps/Contacts/src/com/android/contacts/interactions/
ContactInteraction.java 35 Spannable getContentDescription(Context context);
  /frameworks/opt/setupwizard/library/gingerbread/test/instrumentation/src/com/android/setupwizardlib/test/
LinkAccessibilityHelperTest.java 96 "e", event.getContentDescription().toString());
109 event.getContentDescription().toString());
122 "e", info.getContentDescription().toString());
162 "?", info.getContentDescription().toString());
184 "elit. Praesent accumsan", info.getContentDescription().toString());
208 info.getContentDescription().toString());
237 info.getContentDescription().toString());
  /frameworks/support/compat/java/android/support/v4/view/
MenuItemCompat.java 94 CharSequence getContentDescription(MenuItem item);
147 public CharSequence getContentDescription(MenuItem item) {
210 public CharSequence getContentDescription(MenuItem item) {
211 return item.getContentDescription();
496 public static CharSequence getContentDescription(MenuItem item) {
498 return ((SupportMenuItem) item).getContentDescription();
500 return IMPL.getContentDescription(item);
  /external/droiddriver/src/io/appium/droiddriver/
UiElement.java 77 String getContentDescription();
  /external/droiddriver/src/io/appium/droiddriver/validators/
DefaultAccessibilityValidator.java 82 return !TextUtils.isEmpty(element.getContentDescription())
  /frameworks/base/core/tests/coretests/src/android/view/accessibility/
RecycleAccessibilityEventTest.java 67 assertNull(first.getContentDescription());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
EthernetSignalController.java 52 String contentDescription = getStringIfExists(getContentDescription());
  /frameworks/base/tests/AccessibilityEventsLogger/src/com/android/tests/accessibilityeventlogger/
AELogger.java 57 event.getContentDescription()
  /frameworks/support/design/tests/src/android/support/design/testutils/
TextInputLayoutMatchers.java 49 && !TextUtils.isEmpty(passwordToggle.getContentDescription());
  /cts/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityNodeInfoTest.java 192 assertTrue(TextUtils.equals(originalText, info.getContentDescription()));
255 assertEquals("contentDescription has incorrect value", expectedInfo.getContentDescription(),
256 receivedInfo.getContentDescription());
321 assertNull("contentDescription not properly recycled", info.getContentDescription());
AccessibilityEventTest.java 179 assertTrue(TextUtils.equals(originalText, event.getContentDescription()));
236 .getContentDescription(), receivedEvent.getContentDescription());
AccessibilityRecordTest.java 88 record.getContentDescription());
146 expectedRecord.getContentDescription(), receivedRecord.getContentDescription());
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
UiCollection.java 60 String nodeDesc = row.getContentDescription();
AccessibilityNodeInfoDumper.java 111 serializer.attribute("", "content-desc", safeCharSeqToString(node.getContentDescription()));
171 && safeCharSeqToString(node.getContentDescription()).isEmpty()
200 if (!safeCharSeqToString(childNode.getContentDescription()).isEmpty()
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/
NotificationMenuRowPlugin.java 60 public String getContentDescription();
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
TextViewWithCircularIndicator.java 80 public CharSequence getContentDescription() {
  /frameworks/support/compat/java/android/support/v4/internal/view/
SupportMenuItem.java 227 CharSequence getContentDescription();
  /cts/tests/tests/view/src/android/view/cts/
MenuInflaterTest.java 313 assertEquals("description1", item1.getContentDescription());
315 assertEquals("description2", item2.getContentDescription());
317 assertNull(item2.getContentDescription());
319 assertEquals("description2_new", item2.getContentDescription());
321 assertNull(item3.getContentDescription());
323 assertEquals("description3", item3.getContentDescription());
  /cts/tests/tests/widget/src/android/widget/cts/
PopupMenuTest.java 292 assertNotNull(item.getContentDescription());
295 assertNull(item.getContentDescription());
301 assertEquals(item.getContentDescription(), itemView.getContentDescription());
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskBackService.java 131 CharSequence contentDescription = record.getContentDescription();

Completed in 1124 milliseconds

1 2 3 4 5 6 7 8 9