Searched refs:info (Results 1 - 25 of 840) sorted by relevance

1234567891011>>

/frameworks/support/v4/ics/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompatIcs.java28 public static boolean getCanRetrieveWindowContent(AccessibilityServiceInfo info) { argument
29 return info.getCanRetrieveWindowContent();
32 public static String getDescription(AccessibilityServiceInfo info) { argument
33 return info.getDescription();
36 public static String getId(AccessibilityServiceInfo info) { argument
37 return info.getId();
40 public static ResolveInfo getResolveInfo(AccessibilityServiceInfo info) { argument
41 return info.getResolveInfo();
44 public static String getSettingsActivityName(AccessibilityServiceInfo info) { argument
45 return info
[all...]
/frameworks/support/v4/api21/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompatApi21.java31 public static Object obtain(Object info) { argument
32 return AccessibilityWindowInfo.obtain((AccessibilityWindowInfo) info);
36 public static int getType(Object info) { argument
37 return ((AccessibilityWindowInfo) info).getType();
40 public static int getLayer(Object info) { argument
41 return ((AccessibilityWindowInfo) info).getLayer();
44 public static Object getRoot(Object info) { argument
45 return ((AccessibilityWindowInfo) info).getRoot();
48 public static Object getParent(Object info) { argument
49 return ((AccessibilityWindowInfo) info)
52 getId(Object info) argument
56 getBoundsInScreen(Object info, Rect outBounds) argument
60 isActive(Object info) argument
64 isFocused(Object info) argument
68 isAccessibilityFocused(Object info) argument
72 getChildCount(Object info) argument
76 getChild(Object info, int index) argument
80 recycle(Object info) argument
[all...]
H A DAccessibilityNodeInfoCompatApi21.java29 static List<Object> getActionList(Object info) { argument
30 Object result = ((AccessibilityNodeInfo) info).getActionList();
34 static void addAction(Object info, Object action) { argument
35 ((AccessibilityNodeInfo) info).addAction((AccessibilityAction) action);
38 public static boolean removeAction(Object info, Object action) { argument
39 return ((AccessibilityNodeInfo) info).removeAction((AccessibilityAction) action);
54 public static CharSequence getError(Object info) { argument
55 return ((AccessibilityNodeInfo) info).getError();
58 public static void setError(Object info, CharSequence error) { argument
59 ((AccessibilityNodeInfo) info)
62 setMaxTextLength(Object info, int max) argument
66 getMaxTextLength(Object info) argument
70 getWindow(Object info) argument
74 removeChild(Object info, View child) argument
78 removeChild(Object info, View root, int virtualDescendantId) argument
83 isSelected(Object info) argument
[all...]
/frameworks/support/v4/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatKitKat.java29 static int getLiveRegion(Object info) { argument
30 return ((AccessibilityNodeInfo) info).getLiveRegion();
33 static void setLiveRegion(Object info, int mode) { argument
34 ((AccessibilityNodeInfo) info).setLiveRegion(mode);
37 static Object getCollectionInfo(Object info) { argument
38 return ((AccessibilityNodeInfo) info).getCollectionInfo();
41 static Object getCollectionItemInfo(Object info) { argument
42 return ((AccessibilityNodeInfo) info).getCollectionItemInfo();
45 public static void setCollectionInfo(Object info, Object collectionInfo) { argument
46 ((AccessibilityNodeInfo) info)
50 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
55 getRangeInfo(Object info) argument
59 setRangeInfo(Object info, Object rangeInfo) argument
74 setContentInvalid(Object info, boolean contentInvalid) argument
78 isContentInvalid(Object info) argument
82 canOpenPopup(Object info) argument
86 setCanOpenPopup(Object info, boolean opensPopup) argument
90 getExtras(Object info) argument
94 getInputType(Object info) argument
98 setInputType(Object info, int inputType) argument
102 isDismissable(Object info) argument
106 setDismissable(Object info, boolean dismissable) argument
110 isMultiLine(Object info) argument
114 setMultiLine(Object info, boolean multiLine) argument
118 getRoleDescription(Object info) argument
123 setRoleDescription(Object info, CharSequence roleDescription) argument
129 getColumnCount(Object info) argument
133 getRowCount(Object info) argument
137 isHierarchical(Object info) argument
143 getColumnIndex(Object info) argument
147 getColumnSpan(Object info) argument
151 getRowIndex(Object info) argument
155 getRowSpan(Object info) argument
159 isHeading(Object info) argument
165 getCurrent(Object info) argument
169 getMax(Object info) argument
173 getMin(Object info) argument
177 getType(Object info) argument
[all...]
/frameworks/support/v4/api24/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatApi24.java25 public static int getDrawingOrder(Object info) { argument
26 return ((AccessibilityNodeInfo) info).getDrawingOrder();
29 public static void setDrawingOrder(Object info, int drawingOrderInParent) { argument
30 ((AccessibilityNodeInfo) info).setDrawingOrder(drawingOrderInParent);
33 public static boolean isImportantForAccessibility(Object info) { argument
34 return ((AccessibilityNodeInfo) info).isImportantForAccessibility();
37 public static void setImportantForAccessibility(Object info, argument
39 ((AccessibilityNodeInfo) info).setImportantForAccessibility(importantForAccessibility);
H A DAccessibilityWindowInfoCompatApi24.java25 public static CharSequence getTitle(Object info) { argument
26 return ((AccessibilityWindowInfo) info).getTitle();
29 public static Object getAnchor(Object info) { argument
30 return ((AccessibilityWindowInfo) info).getAnchor();
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_get_main_data_size.cpp38 mp3Header *info, pointer to mp3 header info structure
116 int32 pvmp3_get_main_data_size(mp3Header *info, argument
121 int32 numBytes = fxp_mul32_Q28(mp3_bitrate[info->version_x][info->bitrate_index] << 20,
122 inv_sfreq[info->sampling_frequency]);
125 numBytes >>= (20 - info->version_x);
130 if (info->version_x == MPEG_1)
133 if (info->mode == MPG_MD_MONO)
147 if (info
[all...]
H A Dpvmp3_decode_header.cpp39 mp3Header *info,
43 mp3Header *info, structure holding the parsed mp3 header info
116 mp3Header *info,
153 info->version_x = MPEG_2_5;
156 info->version_x = MPEG_2;
159 info->version_x = MPEG_1;
162 info->version_x = INVALID_VERSION;
167 info->layer_description = 4 - ((temp << 13) >> 30); /* 2 */
168 info
115 pvmp3_decode_header(tmp3Bits *inputStream, mp3Header *info, uint32 *crc) argument
[all...]
H A Dpvmp3_get_main_data_size.h89 int32 pvmp3_get_main_data_size(mp3Header *info,
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java38 public static Object obtain(Object info) { argument
39 return AccessibilityNodeInfo.obtain((AccessibilityNodeInfo) info);
42 public static void addAction(Object info, int action) { argument
43 ((AccessibilityNodeInfo) info).addAction(action);
46 public static void addChild(Object info, View child) { argument
47 ((AccessibilityNodeInfo) info).addChild(child);
51 public static List<Object> findAccessibilityNodeInfosByText(Object info, String text) { argument
52 Object result = ((AccessibilityNodeInfo) info).findAccessibilityNodeInfosByText(text);
56 public static int getActions(Object info) { argument
57 return ((AccessibilityNodeInfo) info)
60 getBoundsInParent(Object info, Rect outBounds) argument
64 getBoundsInScreen(Object info, Rect outBounds) argument
68 getChild(Object info, int index) argument
72 getChildCount(Object info) argument
76 getClassName(Object info) argument
80 getContentDescription(Object info) argument
84 getPackageName(Object info) argument
88 getParent(Object info) argument
92 getText(Object info) argument
96 getWindowId(Object info) argument
100 isCheckable(Object info) argument
104 isChecked(Object info) argument
108 isClickable(Object info) argument
112 isEnabled(Object info) argument
116 isFocusable(Object info) argument
120 isFocused(Object info) argument
124 isLongClickable(Object info) argument
128 isPassword(Object info) argument
132 isScrollable(Object info) argument
136 isSelected(Object info) argument
140 performAction(Object info, int action) argument
144 setBoundsInParent(Object info, Rect bounds) argument
148 setBoundsInScreen(Object info, Rect bounds) argument
152 setCheckable(Object info, boolean checkable) argument
156 setChecked(Object info, boolean checked) argument
160 setClassName(Object info, CharSequence className) argument
164 setClickable(Object info, boolean clickable) argument
168 setContentDescription(Object info, CharSequence contentDescription) argument
172 setEnabled(Object info, boolean enabled) argument
176 setFocusable(Object info, boolean focusable) argument
180 setFocused(Object info, boolean focused) argument
184 setLongClickable(Object info, boolean longClickable) argument
188 setPackageName(Object info, CharSequence packageName) argument
192 setParent(Object info, View parent) argument
196 setPassword(Object info, boolean password) argument
200 setScrollable(Object info, boolean scrollable) argument
204 setSelected(Object info, boolean selected) argument
208 setSource(Object info, View source) argument
212 setText(Object info, CharSequence text) argument
216 recycle(Object info) argument
[all...]
/frameworks/support/v4/api22/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatApi22.java27 public static Object getTraversalBefore(Object info) { argument
28 return ((AccessibilityNodeInfo) info).getTraversalBefore();
31 public static void setTraversalBefore(Object info, View view) { argument
32 ((AccessibilityNodeInfo) info).setTraversalBefore(view);
35 public static void setTraversalBefore(Object info, View root, int virtualDescendantId) { argument
36 ((AccessibilityNodeInfo) info).setTraversalBefore(root, virtualDescendantId);
39 public static Object getTraversalAfter(Object info) { argument
40 return ((AccessibilityNodeInfo) info).getTraversalAfter();
43 public static void setTraversalAfter(Object info, View view) { argument
44 ((AccessibilityNodeInfo) info)
47 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
[all...]
/frameworks/support/v4/jellybean-mr1/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatJellybeanMr1.java24 public static void setLabelFor(Object info, View labeled) { argument
25 ((AccessibilityNodeInfo) info).setLabelFor(labeled);
28 public static void setLabelFor(Object info, View root, int virtualDescendantId) { argument
29 ((AccessibilityNodeInfo) info).setLabelFor(root, virtualDescendantId);
32 public static Object getLabelFor(Object info) { argument
33 return ((AccessibilityNodeInfo) info).getLabelFor();
36 public static void setLabeledBy(Object info, View labeled) { argument
37 ((AccessibilityNodeInfo) info).setLabeledBy(labeled);
40 public static void setLabeledBy(Object info, View root, int virtualDescendantId) { argument
41 ((AccessibilityNodeInfo) info)
44 getLabeledBy(Object info) argument
[all...]
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatJellyBean.java28 public static void addChild(Object info, View child, int virtualDescendantId) { argument
29 ((AccessibilityNodeInfo) info).addChild(child, virtualDescendantId);
32 public static void setSource(Object info, View root, int virtualDescendantId) { argument
33 ((AccessibilityNodeInfo) info).setSource(root, virtualDescendantId);
36 public static boolean isVisibleToUser(Object info) { argument
37 return ((AccessibilityNodeInfo) info).isVisibleToUser();
40 public static void setVisibleToUser(Object info, boolean visibleToUser) { argument
41 ((AccessibilityNodeInfo) info).setVisibleToUser(visibleToUser);
44 public static boolean performAction(Object info, int action, Bundle arguments) { argument
45 return ((AccessibilityNodeInfo) info)
48 setMovementGranularities(Object info, int granularities) argument
52 getMovementGranularities(Object info) argument
60 findFocus(Object info, int focus) argument
64 focusSearch(Object info, int direction) argument
68 setParent(Object info, View root, int virtualDescendantId) argument
72 isAccessibilityFocused(Object info) argument
76 setAccesibilityFocused(Object info, boolean focused) argument
[all...]
/frameworks/support/v4/jellybean-mr2/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatJellybeanMr2.java25 public static void setViewIdResourceName(Object info, String viewId) { argument
26 ((AccessibilityNodeInfo) info).setViewIdResourceName(viewId);
29 public static String getViewIdResourceName(Object info) { argument
30 return ((AccessibilityNodeInfo) info).getViewIdResourceName();
34 public static List<Object> findAccessibilityNodeInfosByViewId(Object info, String viewId) { argument
35 Object result = ((AccessibilityNodeInfo) info).findAccessibilityNodeInfosByViewId(viewId);
39 public static void setTextSelection(Object info, int start, int end) { argument
40 ((AccessibilityNodeInfo) info).setTextSelection(start, end);
43 public static int getTextSelectionStart(Object info) { argument
44 return ((AccessibilityNodeInfo) info)
47 getTextSelectionEnd(Object info) argument
51 isEditable(Object info) argument
55 setEditable(Object info, boolean editable) argument
59 refresh(Object info) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompat.java30 public Object obtain(Object info); argument
31 public int getType(Object info); argument
32 public int getLayer(Object info); argument
33 public Object getRoot(Object info); argument
34 public Object getParent(Object info); argument
35 public int getId(Object info); argument
36 public void getBoundsInScreen(Object info, Rect outBounds); argument
37 public boolean isActive(Object info); argument
38 public boolean isFocused(Object info); argument
39 public boolean isAccessibilityFocused(Object info); argument
40 getChildCount(Object info) argument
41 getChild(Object info, int index) argument
42 getTitle(Object info) argument
43 getAnchor(Object info) argument
44 recycle(Object info) argument
55 obtain(Object info) argument
60 getType(Object info) argument
65 getLayer(Object info) argument
70 getRoot(Object info) argument
75 getParent(Object info) argument
80 getId(Object info) argument
85 getBoundsInScreen(Object info, Rect outBounds) argument
89 isActive(Object info) argument
94 isFocused(Object info) argument
99 isAccessibilityFocused(Object info) argument
104 getChildCount(Object info) argument
109 getChild(Object info, int index) argument
114 recycle(Object info) argument
118 getTitle(Object info) argument
123 getAnchor(Object info) argument
135 obtain(Object info) argument
140 getType(Object info) argument
145 getLayer(Object info) argument
150 getRoot(Object info) argument
155 getParent(Object info) argument
160 getId(Object info) argument
165 getBoundsInScreen(Object info, Rect outBounds) argument
170 isActive(Object info) argument
175 isFocused(Object info) argument
180 isAccessibilityFocused(Object info) argument
185 getChildCount(Object info) argument
190 getChild(Object info, int index) argument
195 recycle(Object info) argument
202 getTitle(Object info) argument
207 getAnchor(Object info) argument
271 AccessibilityWindowInfoCompat(Object info) argument
420 obtain(AccessibilityWindowInfoCompat info) argument
[all...]
H A DAccessibilityNodeInfoCompat.java69 * Action that clicks on the node info.
113 * info.performAction(
161 * info.performAction(
204 * info.performAction(
225 * info.performAction(
283 * info.performAction(AccessibilityActionCompat.ACTION_SET_SELECTION.getId(), arguments);
330 * info.performAction(AccessibilityActionCompat.ACTION_SET_TEXT.getId(), arguments);
396 private CollectionInfoCompat(Object info) { argument
397 mInfo = info;
428 private CollectionItemInfoCompat(Object info) { argument
467 RangeInfoCompat(Object info) argument
492 obtain(Object info) argument
494 setSource(Object info, View source) argument
495 setSource(Object info, View root, int virtualDescendantId) argument
496 findFocus(Object info, int focus) argument
497 focusSearch(Object info, int direction) argument
498 getWindowId(Object info) argument
499 getChildCount(Object info) argument
500 getChild(Object info, int index) argument
501 addChild(Object info, View child) argument
502 addChild(Object info, View child, int virtualDescendantId) argument
503 removeChild(Object info, View child) argument
504 removeChild(Object info, View root, int virtualDescendantId) argument
505 getActions(Object info) argument
506 addAction(Object info, int action) argument
507 addAction(Object info, Object action) argument
508 removeAction(Object info, Object action) argument
511 performAction(Object info, int action) argument
512 performAction(Object info, int action, Bundle arguments) argument
513 setMovementGranularities(Object info, int granularities) argument
514 getMovementGranularities(Object info) argument
515 findAccessibilityNodeInfosByText(Object info, String text) argument
516 getParent(Object info) argument
517 setParent(Object info, View root, int virtualDescendantId) argument
518 setParent(Object info, View parent) argument
519 getBoundsInParent(Object info, Rect outBounds) argument
520 setBoundsInParent(Object info, Rect bounds) argument
521 getBoundsInScreen(Object info, Rect outBounds) argument
522 setBoundsInScreen(Object info, Rect bounds) argument
523 isCheckable(Object info) argument
524 setCheckable(Object info, boolean checkable) argument
525 isChecked(Object info) argument
526 setChecked(Object info, boolean checked) argument
527 isFocusable(Object info) argument
528 setFocusable(Object info, boolean focusable) argument
529 isFocused(Object info) argument
530 setFocused(Object info, boolean focused) argument
531 isVisibleToUser(Object info) argument
532 setVisibleToUser(Object info, boolean visibleToUser) argument
533 isAccessibilityFocused(Object info) argument
534 setAccessibilityFocused(Object info, boolean focused) argument
535 isSelected(Object info) argument
536 setSelected(Object info, boolean selected) argument
537 isClickable(Object info) argument
538 setClickable(Object info, boolean clickable) argument
539 isLongClickable(Object info) argument
540 setLongClickable(Object info, boolean longClickable) argument
541 isEnabled(Object info) argument
542 setEnabled(Object info, boolean enabled) argument
543 isPassword(Object info) argument
544 setPassword(Object info, boolean password) argument
545 isScrollable(Object info) argument
546 setScrollable(Object info, boolean scrollable) argument
547 getPackageName(Object info) argument
548 setPackageName(Object info, CharSequence packageName) argument
549 getClassName(Object info) argument
550 setClassName(Object info, CharSequence className) argument
551 getText(Object info) argument
552 setText(Object info, CharSequence text) argument
553 getContentDescription(Object info) argument
554 setContentDescription(Object info, CharSequence contentDescription) argument
555 recycle(Object info) argument
556 getViewIdResourceName(Object info) argument
557 setViewIdResourceName(Object info, String viewId) argument
558 getLiveRegion(Object info) argument
559 setLiveRegion(Object info, int mode) argument
560 getCollectionInfo(Object info) argument
561 setCollectionInfo(Object info, Object collectionInfo) argument
562 getCollectionItemInfo(Object info) argument
563 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
564 getRangeInfo(Object info) argument
565 setRangeInfo(Object info, Object rangeInfo) argument
566 getActionList(Object info) argument
569 getCollectionInfoColumnCount(Object info) argument
570 getCollectionInfoRowCount(Object info) argument
571 isCollectionInfoHierarchical(Object info) argument
574 getCollectionItemColumnIndex(Object info) argument
575 getCollectionItemColumnSpan(Object info) argument
576 getCollectionItemRowIndex(Object info) argument
577 getCollectionItemRowSpan(Object info) argument
578 isCollectionItemHeading(Object info) argument
579 isCollectionItemSelected(Object info) argument
580 getTraversalBefore(Object info) argument
581 setTraversalBefore(Object info, View view) argument
582 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
583 getTraversalAfter(Object info) argument
584 setTraversalAfter(Object info, View view) argument
585 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
586 setContentInvalid(Object info, boolean contentInvalid) argument
587 isContentInvalid(Object info) argument
588 setError(Object info, CharSequence error) argument
589 getError(Object info) argument
590 setLabelFor(Object info, View labeled) argument
591 setLabelFor(Object info, View root, int virtualDescendantId) argument
592 getLabelFor(Object info) argument
593 setLabeledBy(Object info, View labeled) argument
594 setLabeledBy(Object info, View root, int virtualDescendantId) argument
595 getLabeledBy(Object info) argument
596 canOpenPopup(Object info) argument
597 setCanOpenPopup(Object info, boolean opensPopup) argument
598 findAccessibilityNodeInfosByViewId(Object info, String viewId) argument
599 getExtras(Object info) argument
600 getInputType(Object info) argument
601 setInputType(Object info, int inputType) argument
602 setMaxTextLength(Object info, int max) argument
603 getMaxTextLength(Object info) argument
604 setTextSelection(Object info, int start, int end) argument
605 getTextSelectionStart(Object info) argument
606 getTextSelectionEnd(Object info) argument
607 getWindow(Object info) argument
608 isDismissable(Object info) argument
609 setDismissable(Object info, boolean dismissable) argument
610 isEditable(Object info) argument
611 setEditable(Object info, boolean editable) argument
612 getDrawingOrder(Object info) argument
613 setDrawingOrder(Object info, int drawingOrderInParent) argument
614 isImportantForAccessibility(Object info) argument
615 setImportantForAccessibility(Object info, boolean importantForAccessibility) argument
616 isMultiLine(Object info) argument
617 setMultiLine(Object info, boolean multiLine) argument
618 refresh(Object info) argument
619 getRoleDescription(Object info) argument
620 setRoleDescription(Object info, CharSequence roleDescription) argument
645 obtain(Object info) argument
650 addAction(Object info, int action) argument
655 addAction(Object info, Object action) argument
660 removeAction(Object info, Object action) argument
675 addChild(Object info, View child) argument
680 addChild(Object info, View child, int virtualDescendantId) argument
685 removeChild(Object info, View child) argument
690 removeChild(Object info, View root, int virtualDescendantId) argument
695 findAccessibilityNodeInfosByText(Object info, String text) argument
700 getActions(Object info) argument
705 getBoundsInParent(Object info, Rect outBounds) argument
710 getBoundsInScreen(Object info, Rect outBounds) argument
715 getChild(Object info, int index) argument
720 getChildCount(Object info) argument
725 getClassName(Object info) argument
730 getContentDescription(Object info) argument
735 getPackageName(Object info) argument
740 getParent(Object info) argument
745 getText(Object info) argument
750 getWindowId(Object info) argument
755 isCheckable(Object info) argument
760 isChecked(Object info) argument
765 isClickable(Object info) argument
770 isEnabled(Object info) argument
775 isFocusable(Object info) argument
780 isFocused(Object info) argument
785 isVisibleToUser(Object info) argument
790 isAccessibilityFocused(Object info) argument
795 isLongClickable(Object info) argument
800 isPassword(Object info) argument
805 isScrollable(Object info) argument
810 isSelected(Object info) argument
815 performAction(Object info, int action) argument
820 performAction(Object info, int action, Bundle arguments) argument
825 setMovementGranularities(Object info, int granularities) argument
830 getMovementGranularities(Object info) argument
835 setBoundsInParent(Object info, Rect bounds) argument
840 setBoundsInScreen(Object info, Rect bounds) argument
845 setCheckable(Object info, boolean checkable) argument
850 setChecked(Object info, boolean checked) argument
855 setClassName(Object info, CharSequence className) argument
860 setClickable(Object info, boolean clickable) argument
865 setContentDescription(Object info, CharSequence contentDescription) argument
870 setEnabled(Object info, boolean enabled) argument
875 setFocusable(Object info, boolean focusable) argument
880 setFocused(Object info, boolean focused) argument
885 setVisibleToUser(Object info, boolean visibleToUser) argument
890 setAccessibilityFocused(Object info, boolean focused) argument
895 setLongClickable(Object info, boolean longClickable) argument
900 setPackageName(Object info, CharSequence packageName) argument
905 setParent(Object info, View parent) argument
910 setPassword(Object info, boolean password) argument
915 setScrollable(Object info, boolean scrollable) argument
920 setSelected(Object info, boolean selected) argument
925 setSource(Object info, View source) argument
930 setSource(Object info, View root, int virtualDescendantId) argument
935 findFocus(Object info, int focus) argument
940 focusSearch(Object info, int direction) argument
945 setText(Object info, CharSequence text) argument
950 recycle(Object info) argument
955 setParent(Object info, View root, int virtualDescendantId) argument
960 getViewIdResourceName(Object info) argument
965 setViewIdResourceName(Object info, String viewId) argument
970 getLiveRegion(Object info) argument
975 setLiveRegion(Object info, int mode) argument
980 getCollectionInfo(Object info) argument
985 setCollectionInfo(Object info, Object collectionInfo) argument
989 getCollectionItemInfo(Object info) argument
994 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
998 getRangeInfo(Object info) argument
1003 setRangeInfo(Object info, Object rangeInfo) argument
1007 getActionList(Object info) argument
1018 getCollectionInfoColumnCount(Object info) argument
1023 getCollectionInfoRowCount(Object info) argument
1028 isCollectionInfoHierarchical(Object info) argument
1039 getCollectionItemColumnIndex(Object info) argument
1044 getCollectionItemColumnSpan(Object info) argument
1049 getCollectionItemRowIndex(Object info) argument
1054 getCollectionItemRowSpan(Object info) argument
1059 isCollectionItemHeading(Object info) argument
1064 isCollectionItemSelected(Object info) argument
1069 getTraversalBefore(Object info) argument
1074 setTraversalBefore(Object info, View view) argument
1078 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
1082 getTraversalAfter(Object info) argument
1087 setTraversalAfter(Object info, View view) argument
1091 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
1095 setContentInvalid(Object info, boolean contentInvalid) argument
1099 isContentInvalid(Object info) argument
1104 setError(Object info, CharSequence error) argument
1108 getError(Object info) argument
1113 setLabelFor(Object info, View labeled) argument
1117 setLabelFor(Object info, View root, int virtualDescendantId) argument
1121 getLabelFor(Object info) argument
1126 setLabeledBy(Object info, View labeled) argument
1130 setLabeledBy(Object info, View root, int virtualDescendantId) argument
1134 getLabeledBy(Object info) argument
1139 canOpenPopup(Object info) argument
1144 setCanOpenPopup(Object info, boolean opensPopup) argument
1148 findAccessibilityNodeInfosByViewId(Object info, String viewId) argument
1153 getExtras(Object info) argument
1158 getInputType(Object info) argument
1163 setInputType(Object info, int inputType) argument
1167 setMaxTextLength(Object info, int max) argument
1171 getMaxTextLength(Object info) argument
1176 setTextSelection(Object info, int start, int end) argument
1180 getTextSelectionStart(Object info) argument
1185 getTextSelectionEnd(Object info) argument
1190 getWindow(Object info) argument
1195 isDismissable(Object info) argument
1200 setDismissable(Object info, boolean dismissable) argument
1204 isEditable(Object info) argument
1209 setEditable(Object info, boolean editable) argument
1213 isMultiLine(Object info) argument
1218 setMultiLine(Object info, boolean multiLine) argument
1222 refresh(Object info) argument
1227 getRoleDescription(Object info) argument
1232 setRoleDescription(Object info, CharSequence roleDescription) argument
1236 getDrawingOrder(Object info) argument
1241 setDrawingOrder(Object info, int drawingOrderInParent) argument
1245 isImportantForAccessibility(Object info) argument
1250 setImportantForAccessibility(Object info, boolean importantForAccessibility) argument
1266 obtain(Object info) argument
1271 addAction(Object info, int action) argument
1276 addChild(Object info, View child) argument
1281 findAccessibilityNodeInfosByText(Object info, String text) argument
1286 getActions(Object info) argument
1291 getBoundsInParent(Object info, Rect outBounds) argument
1296 getBoundsInScreen(Object info, Rect outBounds) argument
1301 getChild(Object info, int index) argument
1306 getChildCount(Object info) argument
1311 getClassName(Object info) argument
1316 getContentDescription(Object info) argument
1321 getPackageName(Object info) argument
1326 getParent(Object info) argument
1331 getText(Object info) argument
1336 getWindowId(Object info) argument
1341 isCheckable(Object info) argument
1346 isChecked(Object info) argument
1351 isClickable(Object info) argument
1356 isEnabled(Object info) argument
1361 isFocusable(Object info) argument
1366 isFocused(Object info) argument
1371 isLongClickable(Object info) argument
1376 isPassword(Object info) argument
1381 isScrollable(Object info) argument
1386 isSelected(Object info) argument
1391 performAction(Object info, int action) argument
1396 setBoundsInParent(Object info, Rect bounds) argument
1401 setBoundsInScreen(Object info, Rect bounds) argument
1406 setCheckable(Object info, boolean checkable) argument
1411 setChecked(Object info, boolean checked) argument
1416 setClassName(Object info, CharSequence className) argument
1421 setClickable(Object info, boolean clickable) argument
1426 setContentDescription(Object info, CharSequence contentDescription) argument
1431 setEnabled(Object info, boolean enabled) argument
1436 setFocusable(Object info, boolean focusable) argument
1441 setFocused(Object info, boolean focused) argument
1446 setLongClickable(Object info, boolean longClickable) argument
1451 setPackageName(Object info, CharSequence packageName) argument
1456 setParent(Object info, View parent) argument
1461 setPassword(Object info, boolean password) argument
1466 setScrollable(Object info, boolean scrollable) argument
1471 setSelected(Object info, boolean selected) argument
1476 setSource(Object info, View source) argument
1481 setText(Object info, CharSequence text) argument
1486 recycle(Object info) argument
1498 findFocus(Object info, int focus) argument
1503 focusSearch(Object info, int direction) argument
1508 addChild(Object info, View child, int virtualDescendantId) argument
1513 setSource(Object info, View root, int virtualDescendantId) argument
1518 isVisibleToUser(Object info) argument
1523 setVisibleToUser(Object info, boolean visibleToUser) argument
1528 isAccessibilityFocused(Object info) argument
1533 setAccessibilityFocused(Object info, boolean focused) argument
1538 performAction(Object info, int action, Bundle arguments) argument
1543 setMovementGranularities(Object info, int granularities) argument
1548 getMovementGranularities(Object info) argument
1553 setParent(Object info, View root, int virtualDescendantId) argument
1561 setLabelFor(Object info, View labeled) argument
1566 setLabelFor(Object info, View root, int virtualDescendantId) argument
1571 getLabelFor(Object info) argument
1576 setLabeledBy(Object info, View labeled) argument
1581 setLabeledBy(Object info, View root, int virtualDescendantId) argument
1586 getLabeledBy(Object info) argument
1595 getViewIdResourceName(Object info) argument
1600 setViewIdResourceName(Object info, String viewId) argument
1605 findAccessibilityNodeInfosByViewId(Object info, String viewId) argument
1611 setTextSelection(Object info, int start, int end) argument
1616 getTextSelectionStart(Object info) argument
1621 getTextSelectionEnd(Object info) argument
1626 isEditable(Object info) argument
1631 setEditable(Object info, boolean editable) argument
1636 refresh(Object info) argument
1643 getLiveRegion(Object info) argument
1648 setLiveRegion(Object info, int mode) argument
1653 getCollectionInfo(Object info) argument
1658 setCollectionInfo(Object info, Object collectionInfo) argument
1677 getCollectionInfoColumnCount(Object info) argument
1682 getCollectionInfoRowCount(Object info) argument
1687 isCollectionInfoHierarchical(Object info) argument
1692 getCollectionItemInfo(Object info) argument
1697 getRangeInfo(Object info) argument
1702 setRangeInfo(Object info, Object rangeInfo) argument
1707 getCollectionItemColumnIndex(Object info) argument
1712 getCollectionItemColumnSpan(Object info) argument
1717 getCollectionItemRowIndex(Object info) argument
1722 getCollectionItemRowSpan(Object info) argument
1727 isCollectionItemHeading(Object info) argument
1732 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
1737 setContentInvalid(Object info, boolean contentInvalid) argument
1742 isContentInvalid(Object info) argument
1747 canOpenPopup(Object info) argument
1752 setCanOpenPopup(Object info, boolean opensPopup) argument
1757 getExtras(Object info) argument
1762 getInputType(Object info) argument
1767 setInputType(Object info, int inputType) argument
1772 isDismissable(Object info) argument
1777 setDismissable(Object info, boolean dismissable) argument
1782 isMultiLine(Object info) argument
1787 setMultiLine(Object info, boolean multiLine) argument
1792 getRoleDescription(Object info) argument
1797 setRoleDescription(Object info, CharSequence roleDescription) argument
1809 getActionList(Object info) argument
1821 addAction(Object info, Object action) argument
1826 removeAction(Object info, Object action) argument
1848 isCollectionItemSelected(Object info) argument
1853 getError(Object info) argument
1858 setError(Object info, CharSequence error) argument
1863 setMaxTextLength(Object info, int max) argument
1868 getMaxTextLength(Object info) argument
1873 getWindow(Object info) argument
1878 removeChild(Object info, View child) argument
1883 removeChild(Object info, View root, int virtualDescendantId) argument
1890 getTraversalBefore(Object info) argument
1895 setTraversalBefore(Object info, View view) argument
1900 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
1905 getTraversalAfter(Object info) argument
1910 setTraversalAfter(Object info, View view) argument
1915 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
1922 getDrawingOrder(Object info) argument
1927 setDrawingOrder(Object info, int drawingOrderInParent) argument
1932 isImportantForAccessibility(Object info) argument
1937 setImportantForAccessibility(Object info, boolean importantForAccessibility) argument
2320 AccessibilityNodeInfoCompat(Object info) argument
2373 obtain(AccessibilityNodeInfoCompat info) argument
[all...]
/frameworks/support/v4/java/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompat.java32 public String getId(AccessibilityServiceInfo info); argument
33 public ResolveInfo getResolveInfo(AccessibilityServiceInfo info); argument
34 public boolean getCanRetrieveWindowContent(AccessibilityServiceInfo info); argument
35 public String getDescription(AccessibilityServiceInfo info); argument
36 public String getSettingsActivityName(AccessibilityServiceInfo info); argument
37 public int getCapabilities(AccessibilityServiceInfo info); argument
42 public boolean getCanRetrieveWindowContent(AccessibilityServiceInfo info) { argument
46 public String getDescription(AccessibilityServiceInfo info) { argument
50 public String getId(AccessibilityServiceInfo info) { argument
54 public ResolveInfo getResolveInfo(AccessibilityServiceInfo info) { argument
58 getSettingsActivityName(AccessibilityServiceInfo info) argument
62 getCapabilities(AccessibilityServiceInfo info) argument
70 getCanRetrieveWindowContent(AccessibilityServiceInfo info) argument
75 getDescription(AccessibilityServiceInfo info) argument
80 getId(AccessibilityServiceInfo info) argument
85 getResolveInfo(AccessibilityServiceInfo info) argument
90 getSettingsActivityName(AccessibilityServiceInfo info) argument
95 getCapabilities(AccessibilityServiceInfo info) argument
105 getCapabilities(AccessibilityServiceInfo info) argument
290 getId(AccessibilityServiceInfo info) argument
302 getResolveInfo(AccessibilityServiceInfo info) argument
315 getSettingsActivityName(AccessibilityServiceInfo info) argument
328 getCanRetrieveWindowContent(AccessibilityServiceInfo info) argument
341 getDescription(AccessibilityServiceInfo info) argument
423 getCapabilities(AccessibilityServiceInfo info) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPixelFormat.java94 public static void getPixelFormatInfo(int format, PixelFormat info) { argument
98 info.bitsPerPixel = 32;
99 info.bytesPerPixel = 4;
102 info.bitsPerPixel = 24;
103 info.bytesPerPixel = 3;
109 info.bitsPerPixel = 16;
110 info.bytesPerPixel = 2;
115 info.bitsPerPixel = 8;
116 info.bytesPerPixel = 1;
120 info
[all...]
/frameworks/base/core/java/android/hardware/
H A DCameraInfo.java30 public Camera.CameraInfo info = new Camera.CameraInfo(); field in class:CameraInfo
39 out.writeInt(info.facing);
40 out.writeInt(info.orientation);
44 info.facing = in.readInt();
45 info.orientation = in.readInt();
52 CameraInfo info = new CameraInfo();
53 info.readFromParcel(in);
55 return info;
/frameworks/base/libs/hwui/
H A DFrameInfo.cpp40 void FrameInfo::importUiThreadInfo(int64_t* info) { argument
41 memcpy(mFrameInfo, info, UI_THREAD_FRAME_INFO_SIZE * sizeof(int64_t));
/frameworks/support/v4/jellybean-mr2/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompatJellyBeanMr2.java27 public static int getCapabilities(AccessibilityServiceInfo info) { argument
28 return info.getCapabilities();
/frameworks/base/media/java/android/media/projection/
H A DIMediaProjectionWatcherCallback.aidl23 void onStart(in MediaProjectionInfo info);
24 void onStop(in MediaProjectionInfo info);
/frameworks/base/media/mca/effect/java/android/media/effect/
H A DEffectUpdateListener.java30 * @param info A value that gives more information about the update. See the effect's
33 public void onEffectUpdated(Effect effect, Object info); argument
/frameworks/base/libs/hwui/tests/common/
H A DTestScene.cpp30 void TestScene::registerScene(const TestScene::Info& info) { argument
31 testMap()[info.name] = info;
/frameworks/base/services/core/java/com/android/server/
H A DLockGuard.java71 LockInfo info = sKnown.get(lock);
72 if (info == null) {
73 info = new LockInfo();
74 info.label = "0x" + Integer.toHexString(System.identityHashCode(lock)) + " ["
76 sKnown.put(lock, info);
78 return info;
92 final LockInfo info = findOrCreateLockInfo(lock);
93 for (int i = 0; i < info.children.size(); i++) {
94 final Object child = info.children.valueAt(i);
125 final LockInfo info
[all...]

Completed in 1209 milliseconds

1234567891011>>