Searched refs:info (Results 1 - 25 of 700) 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/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,
H A Dpvmp3_alias_reduction.h84 mp3Header *info);
H A Dpvmp3_decode_header.h90 mp3Header *info,
H A Dpvmp3_get_side_info.h91 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/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatKitKat.java25 static int getLiveRegion(Object info) { argument
26 return ((AccessibilityNodeInfo) info).getLiveRegion();
29 static void setLiveRegion(Object info, int mode) { argument
30 ((AccessibilityNodeInfo) info).setLiveRegion(mode);
33 static Object getCollectionInfo(Object info) { argument
34 return ((AccessibilityNodeInfo) info).getCollectionInfo();
37 static Object getCollectionItemInfo(Object info) { argument
38 return ((AccessibilityNodeInfo) info).getCollectionItemInfo();
41 public static void setCollectionInfo(Object info, Object collectionInfo) { argument
42 ((AccessibilityNodeInfo) info)
46 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
51 getRangeInfo(Object info) argument
67 getColumnCount(Object info) argument
71 getRowCount(Object info) argument
75 isHierarchical(Object info) argument
81 getColumnIndex(Object info) argument
85 getColumnSpan(Object info) argument
89 getRowIndex(Object info) argument
93 getRowSpan(Object info) argument
97 isHeading(Object info) argument
103 getCurrent(Object info) argument
107 getMax(Object info) argument
111 getMin(Object info) argument
115 getType(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/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.java23 public static void setViewIdResourceName(Object info, String viewId) { argument
24 ((AccessibilityNodeInfo) info).setViewIdResourceName(viewId);
27 public static String getViewIdResourceName(Object info) { argument
28 return ((AccessibilityNodeInfo) info).getViewIdResourceName();
/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/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/support/v4/jellybean-mr2/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompatJellyBeanMr2.java27 public static int getCapabilities(AccessibilityServiceInfo info) { argument
28 return info.getCapabilities();
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java96 private CollectionInfoCompat(Object info) { argument
97 mInfo = info;
128 private CollectionItemInfoCompat(Object info) { argument
129 mInfo = info;
167 private RangeInfoCompat(Object info) { argument
168 mInfo = info;
192 public Object obtain(Object info); argument
194 public void setSource(Object info, View source); argument
195 public void setSource(Object info, View root, int virtualDescendantId); argument
196 public Object findFocus(Object info, in argument
197 focusSearch(Object info, int direction) argument
198 getWindowId(Object info) argument
199 getChildCount(Object info) argument
200 getChild(Object info, int index) argument
201 addChild(Object info, View child) argument
202 addChild(Object info, View child, int virtualDescendantId) argument
203 getActions(Object info) argument
204 addAction(Object info, int action) argument
205 addAction(Object info, Object action) argument
208 performAction(Object info, int action) argument
209 performAction(Object info, int action, Bundle arguments) argument
210 setMovementGranularities(Object info, int granularities) argument
211 getMovementGranularities(Object info) argument
212 findAccessibilityNodeInfosByText(Object info, String text) argument
213 getParent(Object info) argument
214 setParent(Object info, View root, int virtualDescendantId) argument
215 setParent(Object info, View parent) argument
216 getBoundsInParent(Object info, Rect outBounds) argument
217 setBoundsInParent(Object info, Rect bounds) argument
218 getBoundsInScreen(Object info, Rect outBounds) argument
219 setBoundsInScreen(Object info, Rect bounds) argument
220 isCheckable(Object info) argument
221 setCheckable(Object info, boolean checkable) argument
222 isChecked(Object info) argument
223 setChecked(Object info, boolean checked) argument
224 isFocusable(Object info) argument
225 setFocusable(Object info, boolean focusable) argument
226 isFocused(Object info) argument
227 setFocused(Object info, boolean focused) argument
228 isVisibleToUser(Object info) argument
229 setVisibleToUser(Object info, boolean visibleToUser) argument
230 isAccessibilityFocused(Object info) argument
231 setAccessibilityFocused(Object info, boolean focused) argument
232 isSelected(Object info) argument
233 setSelected(Object info, boolean selected) argument
234 isClickable(Object info) argument
235 setClickable(Object info, boolean clickable) argument
236 isLongClickable(Object info) argument
237 setLongClickable(Object info, boolean longClickable) argument
238 isEnabled(Object info) argument
239 setEnabled(Object info, boolean enabled) argument
240 isPassword(Object info) argument
241 setPassword(Object info, boolean password) argument
242 isScrollable(Object info) argument
243 setScrollable(Object info, boolean scrollable) argument
244 getPackageName(Object info) argument
245 setPackageName(Object info, CharSequence packageName) argument
246 getClassName(Object info) argument
247 setClassName(Object info, CharSequence className) argument
248 getText(Object info) argument
249 setText(Object info, CharSequence text) argument
250 getContentDescription(Object info) argument
251 setContentDescription(Object info, CharSequence contentDescription) argument
252 recycle(Object info) argument
253 getViewIdResourceName(Object info) argument
254 setViewIdResourceName(Object info, String viewId) argument
255 getLiveRegion(Object info) argument
256 setLiveRegion(Object info, int mode) argument
257 getCollectionInfo(Object info) argument
258 setCollectionInfo(Object info, Object collectionInfo) argument
259 getCollectionItemInfo(Object info) argument
260 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
261 getRangeInfo(Object info) argument
262 getActionList(Object info) argument
265 getCollectionInfoColumnCount(Object info) argument
266 getCollectionInfoRowCount(Object info) argument
267 isCollectionInfoHierarchical(Object info) argument
270 getCollectionItemColumnIndex(Object info) argument
271 getCollectionItemColumnSpan(Object info) argument
272 getCollectionItemRowIndex(Object info) argument
273 getCollectionItemRowSpan(Object info) argument
274 isCollectionItemHeading(Object info) argument
275 isCollectionItemSelected(Object info) argument
276 getTraversalBefore(Object info) argument
277 setTraversalBefore(Object info, View view) argument
278 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
279 getTraversalAfter(Object info) argument
280 setTraversalAfter(Object info, View view) argument
281 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
306 obtain(Object info) argument
311 addAction(Object info, int action) argument
316 addAction(Object info, Object action) argument
331 addChild(Object info, View child) argument
336 addChild(Object info, View child, int virtualDescendantId) argument
341 findAccessibilityNodeInfosByText(Object info, String text) argument
346 getActions(Object info) argument
351 getBoundsInParent(Object info, Rect outBounds) argument
356 getBoundsInScreen(Object info, Rect outBounds) argument
361 getChild(Object info, int index) argument
366 getChildCount(Object info) argument
371 getClassName(Object info) argument
376 getContentDescription(Object info) argument
381 getPackageName(Object info) argument
386 getParent(Object info) argument
391 getText(Object info) argument
396 getWindowId(Object info) argument
401 isCheckable(Object info) argument
406 isChecked(Object info) argument
411 isClickable(Object info) argument
416 isEnabled(Object info) argument
421 isFocusable(Object info) argument
426 isFocused(Object info) argument
431 isVisibleToUser(Object info) argument
436 isAccessibilityFocused(Object info) argument
441 isLongClickable(Object info) argument
446 isPassword(Object info) argument
451 isScrollable(Object info) argument
456 isSelected(Object info) argument
461 performAction(Object info, int action) argument
466 performAction(Object info, int action, Bundle arguments) argument
471 setMovementGranularities(Object info, int granularities) argument
476 getMovementGranularities(Object info) argument
481 setBoundsInParent(Object info, Rect bounds) argument
486 setBoundsInScreen(Object info, Rect bounds) argument
491 setCheckable(Object info, boolean checkable) argument
496 setChecked(Object info, boolean checked) argument
501 setClassName(Object info, CharSequence className) argument
506 setClickable(Object info, boolean clickable) argument
511 setContentDescription(Object info, CharSequence contentDescription) argument
516 setEnabled(Object info, boolean enabled) argument
521 setFocusable(Object info, boolean focusable) argument
526 setFocused(Object info, boolean focused) argument
531 setVisibleToUser(Object info, boolean visibleToUser) argument
536 setAccessibilityFocused(Object info, boolean focused) argument
541 setLongClickable(Object info, boolean longClickable) argument
546 setPackageName(Object info, CharSequence packageName) argument
551 setParent(Object info, View parent) argument
556 setPassword(Object info, boolean password) argument
561 setScrollable(Object info, boolean scrollable) argument
566 setSelected(Object info, boolean selected) argument
571 setSource(Object info, View source) argument
576 setSource(Object info, View root, int virtualDescendantId) argument
581 findFocus(Object info, int focus) argument
586 focusSearch(Object info, int direction) argument
591 setText(Object info, CharSequence text) argument
596 recycle(Object info) argument
601 setParent(Object info, View root, int virtualDescendantId) argument
606 getViewIdResourceName(Object info) argument
611 setViewIdResourceName(Object info, String viewId) argument
616 getLiveRegion(Object info) argument
621 setLiveRegion(Object info, int mode) argument
626 getCollectionInfo(Object info) argument
631 setCollectionInfo(Object info, Object collectionInfo) argument
635 getCollectionItemInfo(Object info) argument
640 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
644 getRangeInfo(Object info) argument
649 getActionList(Object info) argument
660 getCollectionInfoColumnCount(Object info) argument
665 getCollectionInfoRowCount(Object info) argument
670 isCollectionInfoHierarchical(Object info) argument
681 getCollectionItemColumnIndex(Object info) argument
686 getCollectionItemColumnSpan(Object info) argument
691 getCollectionItemRowIndex(Object info) argument
696 getCollectionItemRowSpan(Object info) argument
701 isCollectionItemHeading(Object info) argument
706 isCollectionItemSelected(Object info) argument
711 getTraversalBefore(Object info) argument
716 setTraversalBefore(Object info, View view) argument
720 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
724 getTraversalAfter(Object info) argument
729 setTraversalAfter(Object info, View view) argument
733 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
749 obtain(Object info) argument
754 addAction(Object info, int action) argument
759 addChild(Object info, View child) argument
764 findAccessibilityNodeInfosByText(Object info, String text) argument
769 getActions(Object info) argument
774 getBoundsInParent(Object info, Rect outBounds) argument
779 getBoundsInScreen(Object info, Rect outBounds) argument
784 getChild(Object info, int index) argument
789 getChildCount(Object info) argument
794 getClassName(Object info) argument
799 getContentDescription(Object info) argument
804 getPackageName(Object info) argument
809 getParent(Object info) argument
814 getText(Object info) argument
819 getWindowId(Object info) argument
824 isCheckable(Object info) argument
829 isChecked(Object info) argument
834 isClickable(Object info) argument
839 isEnabled(Object info) argument
844 isFocusable(Object info) argument
849 isFocused(Object info) argument
854 isLongClickable(Object info) argument
859 isPassword(Object info) argument
864 isScrollable(Object info) argument
869 isSelected(Object info) argument
874 performAction(Object info, int action) argument
879 setBoundsInParent(Object info, Rect bounds) argument
884 setBoundsInScreen(Object info, Rect bounds) argument
889 setCheckable(Object info, boolean checkable) argument
894 setChecked(Object info, boolean checked) argument
899 setClassName(Object info, CharSequence className) argument
904 setClickable(Object info, boolean clickable) argument
909 setContentDescription(Object info, CharSequence contentDescription) argument
914 setEnabled(Object info, boolean enabled) argument
919 setFocusable(Object info, boolean focusable) argument
924 setFocused(Object info, boolean focused) argument
929 setLongClickable(Object info, boolean longClickable) argument
934 setPackageName(Object info, CharSequence packageName) argument
939 setParent(Object info, View parent) argument
944 setPassword(Object info, boolean password) argument
949 setScrollable(Object info, boolean scrollable) argument
954 setSelected(Object info, boolean selected) argument
959 setSource(Object info, View source) argument
964 setText(Object info, CharSequence text) argument
969 recycle(Object info) argument
981 findFocus(Object info, int focus) argument
986 focusSearch(Object info, int direction) argument
991 addChild(Object info, View child, int virtualDescendantId) argument
996 setSource(Object info, View root, int virtualDescendantId) argument
1001 isVisibleToUser(Object info) argument
1006 setVisibleToUser(Object info, boolean visibleToUser) argument
1011 isAccessibilityFocused(Object info) argument
1016 setAccessibilityFocused(Object info, boolean focused) argument
1021 performAction(Object info, int action, Bundle arguments) argument
1026 setMovementGranularities(Object info, int granularities) argument
1031 getMovementGranularities(Object info) argument
1036 setParent(Object info, View root, int virtualDescendantId) argument
1044 getViewIdResourceName(Object info) argument
1049 setViewIdResourceName(Object info, String viewId) argument
1056 getLiveRegion(Object info) argument
1061 setLiveRegion(Object info, int mode) argument
1066 getCollectionInfo(Object info) argument
1071 setCollectionInfo(Object info, Object collectionInfo) argument
1090 getCollectionInfoColumnCount(Object info) argument
1095 getCollectionInfoRowCount(Object info) argument
1100 isCollectionInfoHierarchical(Object info) argument
1105 getCollectionItemInfo(Object info) argument
1110 getRangeInfo(Object info) argument
1115 getCollectionItemColumnIndex(Object info) argument
1120 getCollectionItemColumnSpan(Object info) argument
1125 getCollectionItemRowIndex(Object info) argument
1130 getCollectionItemRowSpan(Object info) argument
1135 isCollectionItemHeading(Object info) argument
1140 setCollectionItemInfo(Object info, Object collectionItemInfo) argument
1152 getActionList(Object info) argument
1164 addAction(Object info, Object action) argument
1186 isCollectionItemSelected(Object info) argument
1193 getTraversalBefore(Object info) argument
1203 setTraversalBefore(Object info, View view) argument
1208 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
1213 getTraversalAfter(Object info) argument
1223 setTraversalAfter(Object info, View view) argument
1228 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
1590 AccessibilityNodeInfoCompat(Object info) argument
1643 obtain(AccessibilityNodeInfoCompat info) argument
[all...]
/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/native/graphics/jni/
H A Dbitmap.cpp21 AndroidBitmapInfo* info) {
31 if (info) {
32 info->width = bm->width();
33 info->height = bm->height();
34 info->stride = bm->rowBytes();
35 info->flags = 0;
39 info->format = ANDROID_BITMAP_FORMAT_RGBA_8888;
42 info->format = ANDROID_BITMAP_FORMAT_RGB_565;
45 info->format = ANDROID_BITMAP_FORMAT_RGBA_4444;
48 info
20 AndroidBitmap_getInfo(JNIEnv* env, jobject jbitmap, AndroidBitmapInfo* info) argument
[all...]
/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);
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DHistoryHandler.java43 String info = new String("HIST");
44 info += "_ID" + cameraId;
46 info = info + '_' + msg.toString();
48 info += "_HEND";
49 return info;
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarDrawerToggleHoneycomb.java49 public static SetIndicatorInfo setActionBarUpIndicator(SetIndicatorInfo info, Activity activity, argument
51 if (true || info == null) {
52 info = new SetIndicatorInfo(activity);
54 if (info.setHomeAsUpIndicator != null) {
57 info.setHomeAsUpIndicator.invoke(actionBar, drawable);
58 info.setHomeActionContentDescription.invoke(actionBar, contentDescRes);
62 } else if (info.upIndicatorView != null) {
63 info.upIndicatorView.setImageDrawable(drawable);
67 return info;
70 public static SetIndicatorInfo setActionBarDescription(SetIndicatorInfo info, Activit argument
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DLegacyVpnInfo.java61 LegacyVpnInfo info = new LegacyVpnInfo();
62 info.key = in.readString();
63 info.state = in.readInt();
64 info.intent = in.readParcelable(null);
65 return info;
78 public static int stateFromNetworkInfo(NetworkInfo info) { argument
79 switch (info.getDetailedState()) {
89 Log.w(TAG, "Unhandled state " + info.getDetailedState()
/frameworks/native/services/sensorservice/
H A DSensorDevice.cpp87 const Info& info = mActivationCount.valueFor(list[i].handle); local
89 info.batchParams.size());
90 for (size_t j = 0; j < info.batchParams.size(); j++) {
91 BatchParams params = info.batchParams.valueAt(j);
93 j < info.batchParams.size() - 1 ? ", " : "");
95 result.appendFormat(" }, selected=%4.1f ms\n", info.bestBatchParams.batchDelay / 1e6f);
98 info.batchParams.size());
99 for (size_t j = 0; j < info.batchParams.size(); j++) {
100 BatchParams params = info.batchParams.valueAt(j);
102 j < info
[all...]

Completed in 757 milliseconds

1234567891011>>