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

1234567891011>>

/frameworks/support/compat/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/compat/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 getSelectionMode(Object info) argument
89 isSelected(Object info) argument
[all...]
/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/compat/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java37 public static Object obtain(Object info) { argument
38 return AccessibilityNodeInfo.obtain((AccessibilityNodeInfo) info);
41 public static void addAction(Object info, int action) { argument
42 ((AccessibilityNodeInfo) info).addAction(action);
45 public static void addChild(Object info, View child) { argument
46 ((AccessibilityNodeInfo) info).addChild(child);
50 public static List<Object> findAccessibilityNodeInfosByText(Object info, String text) { argument
51 Object result = ((AccessibilityNodeInfo) info).findAccessibilityNodeInfosByText(text);
55 public static int getActions(Object info) { argument
56 return ((AccessibilityNodeInfo) info)
59 getBoundsInParent(Object info, Rect outBounds) argument
63 getBoundsInScreen(Object info, Rect outBounds) argument
67 getChild(Object info, int index) argument
71 getChildCount(Object info) argument
75 getClassName(Object info) argument
79 getContentDescription(Object info) argument
83 getPackageName(Object info) argument
87 getParent(Object info) argument
91 getText(Object info) argument
95 getWindowId(Object info) argument
99 isCheckable(Object info) argument
103 isChecked(Object info) argument
107 isClickable(Object info) argument
111 isEnabled(Object info) argument
115 isFocusable(Object info) argument
119 isFocused(Object info) argument
123 isLongClickable(Object info) argument
127 isPassword(Object info) argument
131 isScrollable(Object info) argument
135 isSelected(Object info) argument
139 performAction(Object info, int action) argument
143 setBoundsInParent(Object info, Rect bounds) argument
147 setBoundsInScreen(Object info, Rect bounds) argument
151 setCheckable(Object info, boolean checkable) argument
155 setChecked(Object info, boolean checked) argument
159 setClassName(Object info, CharSequence className) argument
163 setClickable(Object info, boolean clickable) argument
167 setContentDescription(Object info, CharSequence contentDescription) argument
171 setEnabled(Object info, boolean enabled) argument
175 setFocusable(Object info, boolean focusable) argument
179 setFocused(Object info, boolean focused) argument
183 setLongClickable(Object info, boolean longClickable) argument
187 setPackageName(Object info, CharSequence packageName) argument
191 setParent(Object info, View parent) argument
195 setPassword(Object info, boolean password) argument
199 setScrollable(Object info, boolean scrollable) argument
203 setSelected(Object info, boolean selected) argument
207 setSource(Object info, View source) argument
211 setText(Object info, CharSequence text) argument
215 recycle(Object info) argument
[all...]
/frameworks/support/compat/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/compat/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/compat/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/compat/api24/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatApi24.java29 public static int getDrawingOrder(Object info) { argument
30 return ((AccessibilityNodeInfo) info).getDrawingOrder();
33 public static void setDrawingOrder(Object info, int drawingOrderInParent) { argument
34 ((AccessibilityNodeInfo) info).setDrawingOrder(drawingOrderInParent);
37 public static boolean isImportantForAccessibility(Object info) { argument
38 return ((AccessibilityNodeInfo) info).isImportantForAccessibility();
41 public static void setImportantForAccessibility(Object info, argument
43 ((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/support/compat/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/compat/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatKitKat.java33 static int getLiveRegion(Object info) { argument
34 return ((AccessibilityNodeInfo) info).getLiveRegion();
37 static void setLiveRegion(Object info, int mode) { argument
38 ((AccessibilityNodeInfo) info).setLiveRegion(mode);
41 static Object getCollectionInfo(Object info) { argument
42 return ((AccessibilityNodeInfo) info).getCollectionInfo();
45 static Object getCollectionItemInfo(Object info) { argument
46 return ((AccessibilityNodeInfo) info).getCollectionItemInfo();
49 public static void setCollectionInfo(Object info, Object collectionInfo) { argument
50 ((AccessibilityNodeInfo) info)
54 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
59 getRangeInfo(Object info) argument
63 setRangeInfo(Object info, Object rangeInfo) argument
82 setContentInvalid(Object info, boolean contentInvalid) argument
86 isContentInvalid(Object info) argument
90 canOpenPopup(Object info) argument
94 setCanOpenPopup(Object info, boolean opensPopup) argument
98 getExtras(Object info) argument
102 getTraits(Object info) argument
106 setTrait(Object info, long trait) argument
112 getInputType(Object info) argument
116 setInputType(Object info, int inputType) argument
120 isDismissable(Object info) argument
124 setDismissable(Object info, boolean dismissable) argument
128 isMultiLine(Object info) argument
132 setMultiLine(Object info, boolean multiLine) argument
136 getRoleDescription(Object info) argument
141 setRoleDescription(Object info, CharSequence roleDescription) argument
151 getColumnCount(Object info) argument
155 getRowCount(Object info) argument
159 isHierarchical(Object info) argument
165 getColumnIndex(Object info) argument
169 getColumnSpan(Object info) argument
173 getRowIndex(Object info) argument
177 getRowSpan(Object info) argument
181 isHeading(Object info) argument
187 getCurrent(Object info) argument
191 getMax(Object info) argument
195 getMin(Object info) argument
199 getType(Object info) argument
[all...]
/frameworks/support/compat/java/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompat.java33 public String getId(AccessibilityServiceInfo info); argument
34 public ResolveInfo getResolveInfo(AccessibilityServiceInfo info); argument
35 public boolean getCanRetrieveWindowContent(AccessibilityServiceInfo info); argument
36 public String getDescription(AccessibilityServiceInfo info); argument
37 public String getSettingsActivityName(AccessibilityServiceInfo info); argument
38 public int getCapabilities(AccessibilityServiceInfo info); argument
39 public String loadDescription(AccessibilityServiceInfo info, PackageManager pm); argument
45 public boolean getCanRetrieveWindowContent(AccessibilityServiceInfo info) { argument
50 public String getDescription(AccessibilityServiceInfo info) { argument
55 public String getId(AccessibilityServiceInfo info) { argument
60 getResolveInfo(AccessibilityServiceInfo info) argument
65 getSettingsActivityName(AccessibilityServiceInfo info) argument
70 getCapabilities(AccessibilityServiceInfo info) argument
75 loadDescription(AccessibilityServiceInfo info, PackageManager pm) argument
83 getCanRetrieveWindowContent(AccessibilityServiceInfo info) argument
88 getDescription(AccessibilityServiceInfo info) argument
93 getId(AccessibilityServiceInfo info) argument
98 getResolveInfo(AccessibilityServiceInfo info) argument
103 getSettingsActivityName(AccessibilityServiceInfo info) argument
108 getCapabilities(AccessibilityServiceInfo info) argument
118 loadDescription(AccessibilityServiceInfo info, PackageManager pm) argument
126 getCapabilities(AccessibilityServiceInfo info) argument
314 getId(AccessibilityServiceInfo info) argument
327 getResolveInfo(AccessibilityServiceInfo info) argument
341 getSettingsActivityName(AccessibilityServiceInfo info) argument
355 getCanRetrieveWindowContent(AccessibilityServiceInfo info) argument
371 getDescription(AccessibilityServiceInfo info) argument
386 loadDescription( AccessibilityServiceInfo info, PackageManager packageManager) argument
469 getCapabilities(AccessibilityServiceInfo info) argument
[all...]
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompat.java30 Object obtain(Object info); argument
31 int getType(Object info); argument
32 int getLayer(Object info); argument
33 Object getRoot(Object info); argument
34 Object getParent(Object info); argument
35 int getId(Object info); argument
36 void getBoundsInScreen(Object info, Rect outBounds); argument
37 boolean isActive(Object info); argument
38 boolean isFocused(Object info); argument
39 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
58 obtain(Object info) argument
63 getType(Object info) argument
68 getLayer(Object info) argument
73 getRoot(Object info) argument
78 getParent(Object info) argument
83 getId(Object info) argument
88 getBoundsInScreen(Object info, Rect outBounds) argument
92 isActive(Object info) argument
97 isFocused(Object info) argument
102 isAccessibilityFocused(Object info) argument
107 getChildCount(Object info) argument
112 getChild(Object info, int index) argument
117 recycle(Object info) argument
121 getTitle(Object info) argument
126 getAnchor(Object info) argument
141 obtain(Object info) argument
146 getType(Object info) argument
151 getLayer(Object info) argument
156 getRoot(Object info) argument
161 getParent(Object info) argument
166 getId(Object info) argument
171 getBoundsInScreen(Object info, Rect outBounds) argument
176 isActive(Object info) argument
181 isFocused(Object info) argument
186 isAccessibilityFocused(Object info) argument
191 getChildCount(Object info) argument
196 getChild(Object info, int index) argument
201 recycle(Object info) argument
211 getTitle(Object info) argument
216 getAnchor(Object info) argument
286 AccessibilityWindowInfoCompat(Object info) argument
435 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);
499 CollectionInfoCompat(Object info) { argument
500 mInfo = info;
592 CollectionItemInfoCompat(Object info) { argument
678 RangeInfoCompat(Object info) argument
727 obtain(Object info) argument
729 setSource(Object info, View source) argument
730 setSource(Object info, View root, int virtualDescendantId) argument
731 findFocus(Object info, int focus) argument
732 focusSearch(Object info, int direction) argument
733 getWindowId(Object info) argument
734 getChildCount(Object info) argument
735 getChild(Object info, int index) argument
736 addChild(Object info, View child) argument
737 addChild(Object info, View child, int virtualDescendantId) argument
738 removeChild(Object info, View child) argument
739 removeChild(Object info, View root, int virtualDescendantId) argument
740 getActions(Object info) argument
741 addAction(Object info, int action) argument
742 addAction(Object info, Object action) argument
743 removeAction(Object info, Object action) argument
746 performAction(Object info, int action) argument
747 performAction(Object info, int action, Bundle arguments) argument
748 setMovementGranularities(Object info, int granularities) argument
749 getMovementGranularities(Object info) argument
750 findAccessibilityNodeInfosByText(Object info, String text) argument
751 getParent(Object info) argument
752 setParent(Object info, View root, int virtualDescendantId) argument
753 setParent(Object info, View parent) argument
754 getBoundsInParent(Object info, Rect outBounds) argument
755 setBoundsInParent(Object info, Rect bounds) argument
756 getBoundsInScreen(Object info, Rect outBounds) argument
757 setBoundsInScreen(Object info, Rect bounds) argument
758 isCheckable(Object info) argument
759 setCheckable(Object info, boolean checkable) argument
760 isChecked(Object info) argument
761 setChecked(Object info, boolean checked) argument
762 isFocusable(Object info) argument
763 setFocusable(Object info, boolean focusable) argument
764 isFocused(Object info) argument
765 setFocused(Object info, boolean focused) argument
766 isVisibleToUser(Object info) argument
767 setVisibleToUser(Object info, boolean visibleToUser) argument
768 isAccessibilityFocused(Object info) argument
769 setAccessibilityFocused(Object info, boolean focused) argument
770 isSelected(Object info) argument
771 setSelected(Object info, boolean selected) argument
772 isClickable(Object info) argument
773 setClickable(Object info, boolean clickable) argument
774 isLongClickable(Object info) argument
775 setLongClickable(Object info, boolean longClickable) argument
776 isEnabled(Object info) argument
777 setEnabled(Object info, boolean enabled) argument
778 isPassword(Object info) argument
779 setPassword(Object info, boolean password) argument
780 isScrollable(Object info) argument
781 setScrollable(Object info, boolean scrollable) argument
782 getPackageName(Object info) argument
783 setPackageName(Object info, CharSequence packageName) argument
784 getClassName(Object info) argument
785 setClassName(Object info, CharSequence className) argument
786 getText(Object info) argument
787 setText(Object info, CharSequence text) argument
788 getContentDescription(Object info) argument
789 setContentDescription(Object info, CharSequence contentDescription) argument
790 recycle(Object info) argument
791 getViewIdResourceName(Object info) argument
792 setViewIdResourceName(Object info, String viewId) argument
793 getLiveRegion(Object info) argument
794 setLiveRegion(Object info, int mode) argument
795 getCollectionInfo(Object info) argument
796 setCollectionInfo(Object info, Object collectionInfo) argument
797 getCollectionItemInfo(Object info) argument
798 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
799 getRangeInfo(Object info) argument
800 setRangeInfo(Object info, Object rangeInfo) argument
801 getActionList(Object info) argument
805 getCollectionInfoColumnCount(Object info) argument
806 getCollectionInfoRowCount(Object info) argument
807 isCollectionInfoHierarchical(Object info) argument
808 getCollectionInfoSelectionMode(Object info) argument
813 getCollectionItemColumnIndex(Object info) argument
814 getCollectionItemColumnSpan(Object info) argument
815 getCollectionItemRowIndex(Object info) argument
816 getCollectionItemRowSpan(Object info) argument
817 isCollectionItemHeading(Object info) argument
818 isCollectionItemSelected(Object info) argument
820 getTraversalBefore(Object info) argument
821 setTraversalBefore(Object info, View view) argument
822 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
823 getTraversalAfter(Object info) argument
824 setTraversalAfter(Object info, View view) argument
825 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
826 setContentInvalid(Object info, boolean contentInvalid) argument
827 isContentInvalid(Object info) argument
828 setError(Object info, CharSequence error) argument
829 getError(Object info) argument
830 setLabelFor(Object info, View labeled) argument
831 setLabelFor(Object info, View root, int virtualDescendantId) argument
832 getLabelFor(Object info) argument
833 setLabeledBy(Object info, View labeled) argument
834 setLabeledBy(Object info, View root, int virtualDescendantId) argument
835 getLabeledBy(Object info) argument
836 canOpenPopup(Object info) argument
837 setCanOpenPopup(Object info, boolean opensPopup) argument
838 findAccessibilityNodeInfosByViewId(Object info, String viewId) argument
839 getExtras(Object info) argument
840 getInputType(Object info) argument
841 setInputType(Object info, int inputType) argument
842 setMaxTextLength(Object info, int max) argument
843 getMaxTextLength(Object info) argument
844 setTextSelection(Object info, int start, int end) argument
845 getTextSelectionStart(Object info) argument
846 getTextSelectionEnd(Object info) argument
847 getWindow(Object info) argument
848 isDismissable(Object info) argument
849 setDismissable(Object info, boolean dismissable) argument
850 isEditable(Object info) argument
851 setEditable(Object info, boolean editable) argument
852 getDrawingOrder(Object info) argument
853 setDrawingOrder(Object info, int drawingOrderInParent) argument
854 isImportantForAccessibility(Object info) argument
855 setImportantForAccessibility(Object info, boolean importantForAccessibility) argument
856 isMultiLine(Object info) argument
857 setMultiLine(Object info, boolean multiLine) argument
858 refresh(Object info) argument
859 getRoleDescription(Object info) argument
860 setRoleDescription(Object info, CharSequence roleDescription) argument
863 isContextClickable(Object info) argument
864 setContextClickable(Object info, boolean contextClickable) argument
895 obtain(Object info) argument
900 addAction(Object info, int action) argument
905 addAction(Object info, Object action) argument
910 removeAction(Object info, Object action) argument
925 addChild(Object info, View child) argument
930 addChild(Object info, View child, int virtualDescendantId) argument
935 removeChild(Object info, View child) argument
940 removeChild(Object info, View root, int virtualDescendantId) argument
945 findAccessibilityNodeInfosByText(Object info, String text) argument
950 getActions(Object info) argument
955 getBoundsInParent(Object info, Rect outBounds) argument
960 getBoundsInScreen(Object info, Rect outBounds) argument
965 getChild(Object info, int index) argument
970 getChildCount(Object info) argument
975 getClassName(Object info) argument
980 getContentDescription(Object info) argument
985 getPackageName(Object info) argument
990 getParent(Object info) argument
995 getText(Object info) argument
1000 getWindowId(Object info) argument
1005 isCheckable(Object info) argument
1010 isChecked(Object info) argument
1015 isClickable(Object info) argument
1020 isEnabled(Object info) argument
1025 isFocusable(Object info) argument
1030 isFocused(Object info) argument
1035 isVisibleToUser(Object info) argument
1040 isAccessibilityFocused(Object info) argument
1045 isLongClickable(Object info) argument
1050 isPassword(Object info) argument
1055 isScrollable(Object info) argument
1060 isSelected(Object info) argument
1065 performAction(Object info, int action) argument
1070 performAction(Object info, int action, Bundle arguments) argument
1075 setMovementGranularities(Object info, int granularities) argument
1080 getMovementGranularities(Object info) argument
1085 setBoundsInParent(Object info, Rect bounds) argument
1090 setBoundsInScreen(Object info, Rect bounds) argument
1095 setCheckable(Object info, boolean checkable) argument
1100 setChecked(Object info, boolean checked) argument
1105 setClassName(Object info, CharSequence className) argument
1110 setClickable(Object info, boolean clickable) argument
1115 setContentDescription(Object info, CharSequence contentDescription) argument
1120 setEnabled(Object info, boolean enabled) argument
1125 setFocusable(Object info, boolean focusable) argument
1130 setFocused(Object info, boolean focused) argument
1135 setVisibleToUser(Object info, boolean visibleToUser) argument
1140 setAccessibilityFocused(Object info, boolean focused) argument
1145 setLongClickable(Object info, boolean longClickable) argument
1150 setPackageName(Object info, CharSequence packageName) argument
1155 setParent(Object info, View parent) argument
1160 setPassword(Object info, boolean password) argument
1165 setScrollable(Object info, boolean scrollable) argument
1170 setSelected(Object info, boolean selected) argument
1175 setSource(Object info, View source) argument
1180 setSource(Object info, View root, int virtualDescendantId) argument
1185 findFocus(Object info, int focus) argument
1190 focusSearch(Object info, int direction) argument
1195 setText(Object info, CharSequence text) argument
1200 recycle(Object info) argument
1205 setParent(Object info, View root, int virtualDescendantId) argument
1210 getViewIdResourceName(Object info) argument
1215 setViewIdResourceName(Object info, String viewId) argument
1220 getLiveRegion(Object info) argument
1225 setLiveRegion(Object info, int mode) argument
1230 getCollectionInfo(Object info) argument
1235 setCollectionInfo(Object info, Object collectionInfo) argument
1239 getCollectionItemInfo(Object info) argument
1244 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
1248 getRangeInfo(Object info) argument
1253 setRangeInfo(Object info, Object rangeInfo) argument
1257 getActionList(Object info) argument
1273 getCollectionInfoColumnCount(Object info) argument
1278 getCollectionInfoRowCount(Object info) argument
1283 isCollectionInfoHierarchical(Object info) argument
1300 getCollectionItemColumnIndex(Object info) argument
1305 getCollectionItemColumnSpan(Object info) argument
1310 getCollectionItemRowIndex(Object info) argument
1315 getCollectionItemRowSpan(Object info) argument
1320 isCollectionItemHeading(Object info) argument
1325 isCollectionItemSelected(Object info) argument
1335 getTraversalBefore(Object info) argument
1340 setTraversalBefore(Object info, View view) argument
1344 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
1348 getTraversalAfter(Object info) argument
1353 setTraversalAfter(Object info, View view) argument
1357 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
1361 setContentInvalid(Object info, boolean contentInvalid) argument
1365 isContentInvalid(Object info) argument
1370 setError(Object info, CharSequence error) argument
1374 getError(Object info) argument
1379 setLabelFor(Object info, View labeled) argument
1383 setLabelFor(Object info, View root, int virtualDescendantId) argument
1387 getLabelFor(Object info) argument
1392 setLabeledBy(Object info, View labeled) argument
1396 setLabeledBy(Object info, View root, int virtualDescendantId) argument
1400 getLabeledBy(Object info) argument
1405 canOpenPopup(Object info) argument
1410 setCanOpenPopup(Object info, boolean opensPopup) argument
1414 findAccessibilityNodeInfosByViewId(Object info, String viewId) argument
1419 getExtras(Object info) argument
1424 getInputType(Object info) argument
1429 setInputType(Object info, int inputType) argument
1433 setMaxTextLength(Object info, int max) argument
1437 getMaxTextLength(Object info) argument
1442 setTextSelection(Object info, int start, int end) argument
1446 getTextSelectionStart(Object info) argument
1451 getTextSelectionEnd(Object info) argument
1456 getWindow(Object info) argument
1461 isDismissable(Object info) argument
1466 setDismissable(Object info, boolean dismissable) argument
1470 isEditable(Object info) argument
1475 setEditable(Object info, boolean editable) argument
1479 isMultiLine(Object info) argument
1484 setMultiLine(Object info, boolean multiLine) argument
1488 refresh(Object info) argument
1493 getRoleDescription(Object info) argument
1498 setRoleDescription(Object info, CharSequence roleDescription) argument
1512 isContextClickable(Object info) argument
1517 setContextClickable(Object info, boolean contextClickable) argument
1552 getCollectionInfoSelectionMode(Object info) argument
1557 getDrawingOrder(Object info) argument
1562 setDrawingOrder(Object info, int drawingOrderInParent) argument
1566 isImportantForAccessibility(Object info) argument
1571 setImportantForAccessibility(Object info, boolean importantForAccessibility) argument
1587 obtain(Object info) argument
1592 addAction(Object info, int action) argument
1597 addChild(Object info, View child) argument
1602 findAccessibilityNodeInfosByText(Object info, String text) argument
1607 getActions(Object info) argument
1612 getBoundsInParent(Object info, Rect outBounds) argument
1617 getBoundsInScreen(Object info, Rect outBounds) argument
1622 getChild(Object info, int index) argument
1627 getChildCount(Object info) argument
1632 getClassName(Object info) argument
1637 getContentDescription(Object info) argument
1642 getPackageName(Object info) argument
1647 getParent(Object info) argument
1652 getText(Object info) argument
1657 getWindowId(Object info) argument
1662 isCheckable(Object info) argument
1667 isChecked(Object info) argument
1672 isClickable(Object info) argument
1677 isEnabled(Object info) argument
1682 isFocusable(Object info) argument
1687 isFocused(Object info) argument
1692 isLongClickable(Object info) argument
1697 isPassword(Object info) argument
1702 isScrollable(Object info) argument
1707 isSelected(Object info) argument
1712 performAction(Object info, int action) argument
1717 setBoundsInParent(Object info, Rect bounds) argument
1722 setBoundsInScreen(Object info, Rect bounds) argument
1727 setCheckable(Object info, boolean checkable) argument
1732 setChecked(Object info, boolean checked) argument
1737 setClassName(Object info, CharSequence className) argument
1742 setClickable(Object info, boolean clickable) argument
1747 setContentDescription(Object info, CharSequence contentDescription) argument
1752 setEnabled(Object info, boolean enabled) argument
1757 setFocusable(Object info, boolean focusable) argument
1762 setFocused(Object info, boolean focused) argument
1767 setLongClickable(Object info, boolean longClickable) argument
1772 setPackageName(Object info, CharSequence packageName) argument
1777 setParent(Object info, View parent) argument
1782 setPassword(Object info, boolean password) argument
1787 setScrollable(Object info, boolean scrollable) argument
1792 setSelected(Object info, boolean selected) argument
1797 setSource(Object info, View source) argument
1802 setText(Object info, CharSequence text) argument
1807 recycle(Object info) argument
1819 findFocus(Object info, int focus) argument
1824 focusSearch(Object info, int direction) argument
1829 addChild(Object info, View child, int virtualDescendantId) argument
1834 setSource(Object info, View root, int virtualDescendantId) argument
1839 isVisibleToUser(Object info) argument
1844 setVisibleToUser(Object info, boolean visibleToUser) argument
1849 isAccessibilityFocused(Object info) argument
1854 setAccessibilityFocused(Object info, boolean focused) argument
1859 performAction(Object info, int action, Bundle arguments) argument
1864 setMovementGranularities(Object info, int granularities) argument
1869 getMovementGranularities(Object info) argument
1874 setParent(Object info, View root, int virtualDescendantId) argument
1882 setLabelFor(Object info, View labeled) argument
1887 setLabelFor(Object info, View root, int virtualDescendantId) argument
1892 getLabelFor(Object info) argument
1897 setLabeledBy(Object info, View labeled) argument
1902 setLabeledBy(Object info, View root, int virtualDescendantId) argument
1907 getLabeledBy(Object info) argument
1916 getViewIdResourceName(Object info) argument
1921 setViewIdResourceName(Object info, String viewId) argument
1926 findAccessibilityNodeInfosByViewId(Object info, String viewId) argument
1932 setTextSelection(Object info, int start, int end) argument
1937 getTextSelectionStart(Object info) argument
1942 getTextSelectionEnd(Object info) argument
1947 isEditable(Object info) argument
1952 setEditable(Object info, boolean editable) argument
1957 refresh(Object info) argument
1964 getLiveRegion(Object info) argument
1969 setLiveRegion(Object info, int mode) argument
1974 getCollectionInfo(Object info) argument
1979 setCollectionInfo(Object info, Object collectionInfo) argument
2011 getCollectionInfoColumnCount(Object info) argument
2016 getCollectionInfoRowCount(Object info) argument
2021 isCollectionInfoHierarchical(Object info) argument
2026 getCollectionItemInfo(Object info) argument
2031 getRangeInfo(Object info) argument
2036 setRangeInfo(Object info, Object rangeInfo) argument
2041 getCollectionItemColumnIndex(Object info) argument
2046 getCollectionItemColumnSpan(Object info) argument
2051 getCollectionItemRowIndex(Object info) argument
2056 getCollectionItemRowSpan(Object info) argument
2061 isCollectionItemHeading(Object info) argument
2066 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
2076 setContentInvalid(Object info, boolean contentInvalid) argument
2081 isContentInvalid(Object info) argument
2086 canOpenPopup(Object info) argument
2091 setCanOpenPopup(Object info, boolean opensPopup) argument
2096 getExtras(Object info) argument
2101 getInputType(Object info) argument
2106 setInputType(Object info, int inputType) argument
2111 isDismissable(Object info) argument
2116 setDismissable(Object info, boolean dismissable) argument
2121 isMultiLine(Object info) argument
2126 setMultiLine(Object info, boolean multiLine) argument
2131 getRoleDescription(Object info) argument
2136 setRoleDescription(Object info, CharSequence roleDescription) argument
2148 getActionList(Object info) argument
2160 addAction(Object info, Object action) argument
2165 removeAction(Object info, Object action) argument
2187 isCollectionItemSelected(Object info) argument
2192 getError(Object info) argument
2197 setError(Object info, CharSequence error) argument
2202 setMaxTextLength(Object info, int max) argument
2207 getMaxTextLength(Object info) argument
2212 getWindow(Object info) argument
2217 removeChild(Object info, View child) argument
2222 removeChild(Object info, View root, int virtualDescendantId) argument
2227 getCollectionInfoSelectionMode(Object info) argument
2234 getTraversalBefore(Object info) argument
2239 setTraversalBefore(Object info, View view) argument
2244 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
2249 getTraversalAfter(Object info) argument
2254 setTraversalAfter(Object info, View view) argument
2259 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
2301 isContextClickable(Object info) argument
2306 setContextClickable(Object info, boolean contextClickable) argument
2318 getDrawingOrder(Object info) argument
2323 setDrawingOrder(Object info, int drawingOrderInParent) argument
2328 isImportantForAccessibility(Object info) argument
2333 setImportantForAccessibility(Object info, boolean importantForAccessibility) argument
2760 AccessibilityNodeInfoCompat(Object info) argument
2813 obtain(AccessibilityNodeInfoCompat 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/support/compat/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...]
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreECPublicKey.java40 public AndroidKeyStoreECPublicKey(String alias, int uid, ECPublicKey info) { argument
41 this(alias, uid, info.getEncoded(), info.getParams(), info.getW());
42 if (!"X.509".equalsIgnoreCase(info.getFormat())) {
44 "Unsupported key export format: " + info.getFormat());

Completed in 1008 milliseconds

1234567891011>>