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

1 2 3 4 5

  /external/droiddriver/src/com/google/android/droiddriver/
UiElement.java 47 String 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/
SignalClusterView.java 131 if (mWifiVisible && mWifiGroup != null && mWifiGroup.getContentDescription() != null)
132 event.getText().add(mWifiGroup.getContentDescription());
133 if (mMobileVisible && mMobileGroup != null && mMobileGroup.getContentDescription() != null)
134 event.getText().add(mMobileGroup.getContentDescription());
  /external/droiddriver/src/com/google/android/droiddriver/instrumentation/
ViewElement.java 83 public String getContentDescription() {
84 return charSequenceToString(view.getContentDescription());
  /external/droiddriver/src/com/google/android/droiddriver/uiautomation/
UiAutomationElement.java 63 public String getContentDescription() {
64 return charSequenceToString(node.getContentDescription());
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MockAccessibilityService.java 190 .getContentDescription(), receivedEvent.getContentDescription());
  /frameworks/support/v4/ics/android/support/v4/view/accessibility/
AccessibilityRecordCompatIcs.java 50 public static CharSequence getContentDescription(Object record) {
51 return ((AccessibilityRecord) record).getContentDescription();
AccessibilityNodeInfoCompatIcs.java 80 public static CharSequence getContentDescription(Object info) {
81 return ((AccessibilityNodeInfo) info).getContentDescription();
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
TextViewWithCircularIndicator.java 82 public CharSequence getContentDescription() {
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiCollection.java 57 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()
UiSelector.java 697 s = node.getContentDescription();
704 s = node.getContentDescription();
711 s = node.getContentDescription();
717 s = node.getContentDescription();
    [all...]
  /frameworks/uiautomator/src/com/android/uiautomator/core/
UiCollection.java 57 String nodeDesc = row.getContentDescription();
AccessibilityNodeInfoDumper.java 89 serializer.attribute("", "content-desc", safeCharSeqToString(node.getContentDescription()));
149 && safeCharSeqToString(node.getContentDescription()).isEmpty()
178 if (!safeCharSeqToString(childNode.getContentDescription()).isEmpty()
UiSelector.java 697 s = node.getContentDescription();
704 s = node.getContentDescription();
711 s = node.getContentDescription();
717 s = node.getContentDescription();
    [all...]
  /cts/tests/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityNodeInfoTest.java 147 assertEquals("contentDescription has incorrect value", expectedInfo.getContentDescription(),
148 receivedInfo.getContentDescription());
200 assertNull("contentDescription not properly recycled", info.getContentDescription());
AccessibilityRecordTest.java 88 record.getContentDescription());
146 expectedRecord.getContentDescription(), receivedRecord.getContentDescription());
AccessibilityEventTest.java 215 .getContentDescription(), receivedEvent.getContentDescription());
  /frameworks/support/v4/java/android/support/v4/view/accessibility/
AccessibilityRecordCompat.java 75 public CharSequence getContentDescription(Object record);
103 public CharSequence getContentDescription(Object record) {
295 public CharSequence getContentDescription(Object record) {
296 return AccessibilityRecordCompatIcs.getContentDescription(record);
969 public CharSequence getContentDescription() {
970 return IMPL.getContentDescription(mRecord);
AccessibilityNodeInfoCompat.java 95 public CharSequence getContentDescription(Object info);
176 public CharSequence getContentDescription(Object info) {
488 public CharSequence getContentDescription(Object info) {
489 return AccessibilityNodeInfoCompatIcs.getContentDescription(info);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskBackService.java 131 CharSequence contentDescription = record.getContentDescription();
  /external/droiddriver/src/com/google/android/droiddriver/finders/
Attribute.java 56 return element.getContentDescription();
  /external/droiddriver/src/com/google/android/droiddriver/scroll/
DynamicSentinelStrategy.java 138 return uniqueStringChild.getContentDescription();
  /frameworks/support/v4/java/android/support/v4/widget/
ExploreByTouchHelper.java 295 if (event.getText().isEmpty() && (event.getContentDescription() == null)) {
388 if ((node.getText() == null) && (node.getContentDescription() == null)) {
  /packages/apps/Settings/src/com/android/settings/widget/
SettingsAppWidgetProvider.java 206 getContentDescription(context, R.string.gadget_state_off));
213 getContentDescription(context, R.string.gadget_state_on));
226 getContentDescription(context, R.string.gadget_state_turning_on));
232 getContentDescription(context, R.string.gadget_state_turning_off));
245 private final String getContentDescription(Context context, int stateResId) {
    [all...]

Completed in 8404 milliseconds

1 2 3 4 5