Searched refs:info (Results 1 - 25 of 723) 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.java26 static int getLiveRegion(Object info) { argument
27 return ((AccessibilityNodeInfo) info).getLiveRegion();
30 static void setLiveRegion(Object info, int mode) { argument
31 ((AccessibilityNodeInfo) info).setLiveRegion(mode);
34 static Object getCollectionInfo(Object info) { argument
35 return ((AccessibilityNodeInfo) info).getCollectionInfo();
38 static Object getCollectionItemInfo(Object info) { argument
39 return ((AccessibilityNodeInfo) info).getCollectionItemInfo();
42 public static void setCollectionInfo(Object info, Object collectionInfo) { argument
43 ((AccessibilityNodeInfo) info)
47 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
52 getRangeInfo(Object info) argument
56 setRangeInfo(Object info, Object rangeInfo) argument
71 setContentInvalid(Object info, boolean contentInvalid) argument
75 isContentInvalid(Object info) argument
79 canOpenPopup(Object info) argument
83 setCanOpenPopup(Object info, boolean opensPopup) argument
87 getExtras(Object info) argument
91 getInputType(Object info) argument
95 setInputType(Object info, int inputType) argument
99 isDismissable(Object info) argument
103 setDismissable(Object info, boolean dismissable) argument
107 isMultiLine(Object info) argument
111 setMultiLine(Object info, boolean multiLine) argument
116 getColumnCount(Object info) argument
120 getRowCount(Object info) argument
124 isHierarchical(Object info) argument
130 getColumnIndex(Object info) argument
134 getColumnSpan(Object info) argument
138 getRowIndex(Object info) argument
142 getRowSpan(Object info) argument
146 isHeading(Object info) argument
152 getCurrent(Object info) argument
156 getMax(Object info) argument
160 getMin(Object info) argument
164 getType(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/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/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
292 getId(AccessibilityServiceInfo info) argument
304 getResolveInfo(AccessibilityServiceInfo info) argument
317 getSettingsActivityName(AccessibilityServiceInfo info) argument
330 getCanRetrieveWindowContent(AccessibilityServiceInfo info) argument
343 getDescription(AccessibilityServiceInfo info) argument
425 getCapabilities(AccessibilityServiceInfo 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 recycle(Object info) argument
53 obtain(Object info) argument
58 getType(Object info) argument
63 getLayer(Object info) argument
68 getRoot(Object info) argument
73 getParent(Object info) argument
78 getId(Object info) argument
83 getBoundsInScreen(Object info, Rect outBounds) argument
87 isActive(Object info) argument
92 isFocused(Object info) argument
97 isAccessibilityFocused(Object info) argument
102 getChildCount(Object info) argument
107 getChild(Object info, int index) argument
112 recycle(Object info) argument
123 obtain(Object info) argument
128 getType(Object info) argument
133 getLayer(Object info) argument
138 getRoot(Object info) argument
143 getParent(Object info) argument
148 getId(Object info) argument
153 getBoundsInScreen(Object info, Rect outBounds) argument
158 isActive(Object info) argument
163 isFocused(Object info) argument
168 isAccessibilityFocused(Object info) argument
173 getChildCount(Object info) argument
178 getChild(Object info, int index) argument
183 recycle(Object info) argument
245 AccessibilityWindowInfoCompat(Object info) argument
375 obtain(AccessibilityWindowInfoCompat info) argument
[all...]
H A DAccessibilityNodeInfoCompat.java68 * Action that clicks on the node info.
112 * info.performAction(
160 * info.performAction(
203 * info.performAction(
224 * info.performAction(
282 * info.performAction(AccessibilityActionCompat.ACTION_SET_SELECTION.getId(), arguments);
329 * info.performAction(AccessibilityActionCompat.ACTION_SET_TEXT.getId(), arguments);
395 private CollectionInfoCompat(Object info) { argument
396 mInfo = info;
427 private CollectionItemInfoCompat(Object info) { argument
466 RangeInfoCompat(Object info) argument
491 obtain(Object info) argument
493 setSource(Object info, View source) argument
494 setSource(Object info, View root, int virtualDescendantId) argument
495 findFocus(Object info, int focus) argument
496 focusSearch(Object info, int direction) argument
497 getWindowId(Object info) argument
498 getChildCount(Object info) argument
499 getChild(Object info, int index) argument
500 addChild(Object info, View child) argument
501 addChild(Object info, View child, int virtualDescendantId) argument
502 removeChild(Object info, View child) argument
503 removeChild(Object info, View root, int virtualDescendantId) argument
504 getActions(Object info) argument
505 addAction(Object info, int action) argument
506 addAction(Object info, Object action) argument
507 removeAction(Object info, Object action) argument
510 performAction(Object info, int action) argument
511 performAction(Object info, int action, Bundle arguments) argument
512 setMovementGranularities(Object info, int granularities) argument
513 getMovementGranularities(Object info) argument
514 findAccessibilityNodeInfosByText(Object info, String text) argument
515 getParent(Object info) argument
516 setParent(Object info, View root, int virtualDescendantId) argument
517 setParent(Object info, View parent) argument
518 getBoundsInParent(Object info, Rect outBounds) argument
519 setBoundsInParent(Object info, Rect bounds) argument
520 getBoundsInScreen(Object info, Rect outBounds) argument
521 setBoundsInScreen(Object info, Rect bounds) argument
522 isCheckable(Object info) argument
523 setCheckable(Object info, boolean checkable) argument
524 isChecked(Object info) argument
525 setChecked(Object info, boolean checked) argument
526 isFocusable(Object info) argument
527 setFocusable(Object info, boolean focusable) argument
528 isFocused(Object info) argument
529 setFocused(Object info, boolean focused) argument
530 isVisibleToUser(Object info) argument
531 setVisibleToUser(Object info, boolean visibleToUser) argument
532 isAccessibilityFocused(Object info) argument
533 setAccessibilityFocused(Object info, boolean focused) argument
534 isSelected(Object info) argument
535 setSelected(Object info, boolean selected) argument
536 isClickable(Object info) argument
537 setClickable(Object info, boolean clickable) argument
538 isLongClickable(Object info) argument
539 setLongClickable(Object info, boolean longClickable) argument
540 isEnabled(Object info) argument
541 setEnabled(Object info, boolean enabled) argument
542 isPassword(Object info) argument
543 setPassword(Object info, boolean password) argument
544 isScrollable(Object info) argument
545 setScrollable(Object info, boolean scrollable) argument
546 getPackageName(Object info) argument
547 setPackageName(Object info, CharSequence packageName) argument
548 getClassName(Object info) argument
549 setClassName(Object info, CharSequence className) argument
550 getText(Object info) argument
551 setText(Object info, CharSequence text) argument
552 getContentDescription(Object info) argument
553 setContentDescription(Object info, CharSequence contentDescription) argument
554 recycle(Object info) argument
555 getViewIdResourceName(Object info) argument
556 setViewIdResourceName(Object info, String viewId) argument
557 getLiveRegion(Object info) argument
558 setLiveRegion(Object info, int mode) argument
559 getCollectionInfo(Object info) argument
560 setCollectionInfo(Object info, Object collectionInfo) argument
561 getCollectionItemInfo(Object info) argument
562 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
563 getRangeInfo(Object info) argument
564 setRangeInfo(Object info, Object rangeInfo) argument
565 getActionList(Object info) argument
568 getCollectionInfoColumnCount(Object info) argument
569 getCollectionInfoRowCount(Object info) argument
570 isCollectionInfoHierarchical(Object info) argument
573 getCollectionItemColumnIndex(Object info) argument
574 getCollectionItemColumnSpan(Object info) argument
575 getCollectionItemRowIndex(Object info) argument
576 getCollectionItemRowSpan(Object info) argument
577 isCollectionItemHeading(Object info) argument
578 isCollectionItemSelected(Object info) argument
579 getTraversalBefore(Object info) argument
580 setTraversalBefore(Object info, View view) argument
581 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
582 getTraversalAfter(Object info) argument
583 setTraversalAfter(Object info, View view) argument
584 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
585 setContentInvalid(Object info, boolean contentInvalid) argument
586 isContentInvalid(Object info) argument
587 setError(Object info, CharSequence error) argument
588 getError(Object info) argument
589 setLabelFor(Object info, View labeled) argument
590 setLabelFor(Object info, View root, int virtualDescendantId) argument
591 getLabelFor(Object info) argument
592 setLabeledBy(Object info, View labeled) argument
593 setLabeledBy(Object info, View root, int virtualDescendantId) argument
594 getLabeledBy(Object info) argument
595 canOpenPopup(Object info) argument
596 setCanOpenPopup(Object info, boolean opensPopup) argument
597 findAccessibilityNodeInfosByViewId(Object info, String viewId) argument
598 getExtras(Object info) argument
599 getInputType(Object info) argument
600 setInputType(Object info, int inputType) argument
601 setMaxTextLength(Object info, int max) argument
602 getMaxTextLength(Object info) argument
603 setTextSelection(Object info, int start, int end) argument
604 getTextSelectionStart(Object info) argument
605 getTextSelectionEnd(Object info) argument
606 getWindow(Object info) argument
607 isDismissable(Object info) argument
608 setDismissable(Object info, boolean dismissable) argument
609 isEditable(Object info) argument
610 setEditable(Object info, boolean editable) argument
611 isMultiLine(Object info) argument
612 setMultiLine(Object info, boolean multiLine) argument
613 refresh(Object info) argument
638 obtain(Object info) argument
643 addAction(Object info, int action) argument
648 addAction(Object info, Object action) argument
653 removeAction(Object info, Object action) argument
668 addChild(Object info, View child) argument
673 addChild(Object info, View child, int virtualDescendantId) argument
678 removeChild(Object info, View child) argument
683 removeChild(Object info, View root, int virtualDescendantId) argument
688 findAccessibilityNodeInfosByText(Object info, String text) argument
693 getActions(Object info) argument
698 getBoundsInParent(Object info, Rect outBounds) argument
703 getBoundsInScreen(Object info, Rect outBounds) argument
708 getChild(Object info, int index) argument
713 getChildCount(Object info) argument
718 getClassName(Object info) argument
723 getContentDescription(Object info) argument
728 getPackageName(Object info) argument
733 getParent(Object info) argument
738 getText(Object info) argument
743 getWindowId(Object info) argument
748 isCheckable(Object info) argument
753 isChecked(Object info) argument
758 isClickable(Object info) argument
763 isEnabled(Object info) argument
768 isFocusable(Object info) argument
773 isFocused(Object info) argument
778 isVisibleToUser(Object info) argument
783 isAccessibilityFocused(Object info) argument
788 isLongClickable(Object info) argument
793 isPassword(Object info) argument
798 isScrollable(Object info) argument
803 isSelected(Object info) argument
808 performAction(Object info, int action) argument
813 performAction(Object info, int action, Bundle arguments) argument
818 setMovementGranularities(Object info, int granularities) argument
823 getMovementGranularities(Object info) argument
828 setBoundsInParent(Object info, Rect bounds) argument
833 setBoundsInScreen(Object info, Rect bounds) argument
838 setCheckable(Object info, boolean checkable) argument
843 setChecked(Object info, boolean checked) argument
848 setClassName(Object info, CharSequence className) argument
853 setClickable(Object info, boolean clickable) argument
858 setContentDescription(Object info, CharSequence contentDescription) argument
863 setEnabled(Object info, boolean enabled) argument
868 setFocusable(Object info, boolean focusable) argument
873 setFocused(Object info, boolean focused) argument
878 setVisibleToUser(Object info, boolean visibleToUser) argument
883 setAccessibilityFocused(Object info, boolean focused) argument
888 setLongClickable(Object info, boolean longClickable) argument
893 setPackageName(Object info, CharSequence packageName) argument
898 setParent(Object info, View parent) argument
903 setPassword(Object info, boolean password) argument
908 setScrollable(Object info, boolean scrollable) argument
913 setSelected(Object info, boolean selected) argument
918 setSource(Object info, View source) argument
923 setSource(Object info, View root, int virtualDescendantId) argument
928 findFocus(Object info, int focus) argument
933 focusSearch(Object info, int direction) argument
938 setText(Object info, CharSequence text) argument
943 recycle(Object info) argument
948 setParent(Object info, View root, int virtualDescendantId) argument
953 getViewIdResourceName(Object info) argument
958 setViewIdResourceName(Object info, String viewId) argument
963 getLiveRegion(Object info) argument
968 setLiveRegion(Object info, int mode) argument
973 getCollectionInfo(Object info) argument
978 setCollectionInfo(Object info, Object collectionInfo) argument
982 getCollectionItemInfo(Object info) argument
987 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
991 getRangeInfo(Object info) argument
996 setRangeInfo(Object info, Object rangeInfo) argument
1000 getActionList(Object info) argument
1011 getCollectionInfoColumnCount(Object info) argument
1016 getCollectionInfoRowCount(Object info) argument
1021 isCollectionInfoHierarchical(Object info) argument
1032 getCollectionItemColumnIndex(Object info) argument
1037 getCollectionItemColumnSpan(Object info) argument
1042 getCollectionItemRowIndex(Object info) argument
1047 getCollectionItemRowSpan(Object info) argument
1052 isCollectionItemHeading(Object info) argument
1057 isCollectionItemSelected(Object info) argument
1062 getTraversalBefore(Object info) argument
1067 setTraversalBefore(Object info, View view) argument
1071 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
1075 getTraversalAfter(Object info) argument
1080 setTraversalAfter(Object info, View view) argument
1084 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
1088 setContentInvalid(Object info, boolean contentInvalid) argument
1092 isContentInvalid(Object info) argument
1097 setError(Object info, CharSequence error) argument
1101 getError(Object info) argument
1106 setLabelFor(Object info, View labeled) argument
1110 setLabelFor(Object info, View root, int virtualDescendantId) argument
1114 getLabelFor(Object info) argument
1119 setLabeledBy(Object info, View labeled) argument
1123 setLabeledBy(Object info, View root, int virtualDescendantId) argument
1127 getLabeledBy(Object info) argument
1132 canOpenPopup(Object info) argument
1137 setCanOpenPopup(Object info, boolean opensPopup) argument
1141 findAccessibilityNodeInfosByViewId(Object info, String viewId) argument
1146 getExtras(Object info) argument
1151 getInputType(Object info) argument
1156 setInputType(Object info, int inputType) argument
1160 setMaxTextLength(Object info, int max) argument
1164 getMaxTextLength(Object info) argument
1169 setTextSelection(Object info, int start, int end) argument
1173 getTextSelectionStart(Object info) argument
1178 getTextSelectionEnd(Object info) argument
1183 getWindow(Object info) argument
1188 isDismissable(Object info) argument
1193 setDismissable(Object info, boolean dismissable) argument
1197 isEditable(Object info) argument
1202 setEditable(Object info, boolean editable) argument
1206 isMultiLine(Object info) argument
1211 setMultiLine(Object info, boolean multiLine) argument
1215 refresh(Object info) argument
1232 obtain(Object info) argument
1237 addAction(Object info, int action) argument
1242 addChild(Object info, View child) argument
1247 findAccessibilityNodeInfosByText(Object info, String text) argument
1252 getActions(Object info) argument
1257 getBoundsInParent(Object info, Rect outBounds) argument
1262 getBoundsInScreen(Object info, Rect outBounds) argument
1267 getChild(Object info, int index) argument
1272 getChildCount(Object info) argument
1277 getClassName(Object info) argument
1282 getContentDescription(Object info) argument
1287 getPackageName(Object info) argument
1292 getParent(Object info) argument
1297 getText(Object info) argument
1302 getWindowId(Object info) argument
1307 isCheckable(Object info) argument
1312 isChecked(Object info) argument
1317 isClickable(Object info) argument
1322 isEnabled(Object info) argument
1327 isFocusable(Object info) argument
1332 isFocused(Object info) argument
1337 isLongClickable(Object info) argument
1342 isPassword(Object info) argument
1347 isScrollable(Object info) argument
1352 isSelected(Object info) argument
1357 performAction(Object info, int action) argument
1362 setBoundsInParent(Object info, Rect bounds) argument
1367 setBoundsInScreen(Object info, Rect bounds) argument
1372 setCheckable(Object info, boolean checkable) argument
1377 setChecked(Object info, boolean checked) argument
1382 setClassName(Object info, CharSequence className) argument
1387 setClickable(Object info, boolean clickable) argument
1392 setContentDescription(Object info, CharSequence contentDescription) argument
1397 setEnabled(Object info, boolean enabled) argument
1402 setFocusable(Object info, boolean focusable) argument
1407 setFocused(Object info, boolean focused) argument
1412 setLongClickable(Object info, boolean longClickable) argument
1417 setPackageName(Object info, CharSequence packageName) argument
1422 setParent(Object info, View parent) argument
1427 setPassword(Object info, boolean password) argument
1432 setScrollable(Object info, boolean scrollable) argument
1437 setSelected(Object info, boolean selected) argument
1442 setSource(Object info, View source) argument
1447 setText(Object info, CharSequence text) argument
1452 recycle(Object info) argument
1464 findFocus(Object info, int focus) argument
1469 focusSearch(Object info, int direction) argument
1474 addChild(Object info, View child, int virtualDescendantId) argument
1479 setSource(Object info, View root, int virtualDescendantId) argument
1484 isVisibleToUser(Object info) argument
1489 setVisibleToUser(Object info, boolean visibleToUser) argument
1494 isAccessibilityFocused(Object info) argument
1499 setAccessibilityFocused(Object info, boolean focused) argument
1504 performAction(Object info, int action, Bundle arguments) argument
1509 setMovementGranularities(Object info, int granularities) argument
1514 getMovementGranularities(Object info) argument
1519 setParent(Object info, View root, int virtualDescendantId) argument
1527 setLabelFor(Object info, View labeled) argument
1532 setLabelFor(Object info, View root, int virtualDescendantId) argument
1537 getLabelFor(Object info) argument
1542 setLabeledBy(Object info, View labeled) argument
1547 setLabeledBy(Object info, View root, int virtualDescendantId) argument
1552 getLabeledBy(Object info) argument
1561 getViewIdResourceName(Object info) argument
1566 setViewIdResourceName(Object info, String viewId) argument
1571 findAccessibilityNodeInfosByViewId(Object info, String viewId) argument
1577 setTextSelection(Object info, int start, int end) argument
1582 getTextSelectionStart(Object info) argument
1587 getTextSelectionEnd(Object info) argument
1592 isEditable(Object info) argument
1597 setEditable(Object info, boolean editable) argument
1602 refresh(Object info) argument
1609 getLiveRegion(Object info) argument
1614 setLiveRegion(Object info, int mode) argument
1619 getCollectionInfo(Object info) argument
1624 setCollectionInfo(Object info, Object collectionInfo) argument
1643 getCollectionInfoColumnCount(Object info) argument
1648 getCollectionInfoRowCount(Object info) argument
1653 isCollectionInfoHierarchical(Object info) argument
1658 getCollectionItemInfo(Object info) argument
1663 getRangeInfo(Object info) argument
1668 setRangeInfo(Object info, Object rangeInfo) argument
1673 getCollectionItemColumnIndex(Object info) argument
1678 getCollectionItemColumnSpan(Object info) argument
1683 getCollectionItemRowIndex(Object info) argument
1688 getCollectionItemRowSpan(Object info) argument
1693 isCollectionItemHeading(Object info) argument
1698 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
1703 setContentInvalid(Object info, boolean contentInvalid) argument
1708 isContentInvalid(Object info) argument
1713 canOpenPopup(Object info) argument
1718 setCanOpenPopup(Object info, boolean opensPopup) argument
1723 getExtras(Object info) argument
1728 getInputType(Object info) argument
1733 setInputType(Object info, int inputType) argument
1738 isDismissable(Object info) argument
1743 setDismissable(Object info, boolean dismissable) argument
1748 isMultiLine(Object info) argument
1753 setMultiLine(Object info, boolean multiLine) argument
1765 getActionList(Object info) argument
1777 addAction(Object info, Object action) argument
1782 removeAction(Object info, Object action) argument
1804 isCollectionItemSelected(Object info) argument
1809 getError(Object info) argument
1814 setError(Object info, CharSequence error) argument
1819 setMaxTextLength(Object info, int max) argument
1824 getMaxTextLength(Object info) argument
1829 getWindow(Object info) argument
1834 removeChild(Object info, View child) argument
1839 removeChild(Object info, View root, int virtualDescendantId) argument
1846 getTraversalBefore(Object info) argument
1851 setTraversalBefore(Object info, View view) argument
1856 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
1861 getTraversalAfter(Object info) argument
1866 setTraversalAfter(Object info, View view) argument
1871 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
2250 AccessibilityNodeInfoCompat(Object info) argument
2303 obtain(AccessibilityNodeInfoCompat info) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPixelFormat.java84 public static void getPixelFormatInfo(int format, PixelFormat info) { argument
88 info.bitsPerPixel = 32;
89 info.bytesPerPixel = 4;
92 info.bitsPerPixel = 24;
93 info.bytesPerPixel = 3;
99 info.bitsPerPixel = 16;
100 info.bytesPerPixel = 2;
105 info.bitsPerPixel = 8;
106 info.bytesPerPixel = 1;
110 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/native/services/sensorservice/
H A DSensorDevice.cpp87 const Info& info = mActivationCount.valueFor(list[i].handle); local
88 if (info.batchParams.isEmpty()) continue;
90 info.batchParams.size());
91 for (size_t j = 0; j < info.batchParams.size(); j++) {
92 const BatchParams& params = info.batchParams.valueAt(j);
94 j < info.batchParams.size() - 1 ? ", " : "");
96 result.appendFormat(" }, selected=%4.1f ms\n", info.bestBatchParams.batchDelay / 1e6f);
99 info.batchParams.size());
100 for (size_t j = 0; j < info.batchParams.size(); j++) {
101 BatchParams params = info
338 Info& info = mActivationCount.editValueAt(i); local
371 const Info& info = mActivationCount.valueAt(i); local
[all...]
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreECPublicKey.java40 public AndroidKeyStoreECPublicKey(String alias, ECPublicKey info) { argument
41 this(alias, info.getEncoded(), info.getParams(), info.getW());
42 if (!"X.509".equalsIgnoreCase(info.getFormat())) {
44 "Unsupported key export format: " + info.getFormat());
H A DAndroidKeyStoreRSAPublicKey.java38 public AndroidKeyStoreRSAPublicKey(String alias, RSAPublicKey info) { argument
39 this(alias, info.getEncoded(), info.getModulus(), info.getPublicExponent());
40 if (!"X.509".equalsIgnoreCase(info.getFormat())) {
42 "Unsupported key export format: " + info.getFormat());
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DAttachInfo_Accessor.java36 AttachInfo info = new AttachInfo(new BridgeWindowSession(), new BridgeWindow(),
38 info.mHasWindowFocus = true;
39 info.mWindowVisibility = View.VISIBLE;
40 info.mInTouchMode = false; // this is so that we can display selections.
41 info.mHardwareAccelerated = false;
42 view.dispatchAttachedToWindow(info, 0);

Completed in 614 milliseconds

1234567891011>>