Searched refs:info (Results 1 - 25 of 505) 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,
H A Dpvmp3_mpeg2_get_scale_data.h92 mp3Header *info,
H A Dpvmp3_mpeg2_get_scale_factors.h93 mp3Header *info,
H A Dpvmp3_reorder.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/native/libs/ui/
H A DPixelFormat.cpp80 PixelFormatInfo info; local
81 status_t err = getPixelFormatInfo(format, &info);
82 return (err < 0) ? err : info.bytesPerPixel;
87 PixelFormatInfo info; local
88 status_t err = getPixelFormatInfo(format, &info);
89 return (err < 0) ? err : info.bitsPerPixel;
92 status_t getPixelFormatInfo(PixelFormat format, PixelFormatInfo* info) argument
97 if (info->version != sizeof(PixelFormatInfo))
104 info->bitsPerPixel = 16;
108 info
[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/view/accessibility/
H A DAccessibilityNodeInfoCompat.java38 public Object obtain(Object info); argument
40 public void setSource(Object info, View source); argument
41 public void setSource(Object info, View root, int virtualDescendantId); argument
42 public Object findFocus(Object info, int focus); argument
43 public Object focusSearch(Object info, int direction); argument
44 public int getWindowId(Object info); argument
45 public int getChildCount(Object info); argument
46 public Object getChild(Object info, int index); argument
47 public void addChild(Object info, View child); argument
48 public void addChild(Object info, Vie argument
49 getActions(Object info) argument
50 addAction(Object info, int action) argument
51 performAction(Object info, int action) argument
52 performAction(Object info, int action, Bundle arguments) argument
53 setMovementGranularities(Object info, int granularities) argument
54 getMovementGranularities(Object info) argument
55 findAccessibilityNodeInfosByText(Object info, String text) argument
56 getParent(Object info) argument
57 setParent(Object info, View root, int virtualDescendantId) argument
58 setParent(Object info, View parent) argument
59 getBoundsInParent(Object info, Rect outBounds) argument
60 setBoundsInParent(Object info, Rect bounds) argument
61 getBoundsInScreen(Object info, Rect outBounds) argument
62 setBoundsInScreen(Object info, Rect bounds) argument
63 isCheckable(Object info) argument
64 setCheckable(Object info, boolean checkable) argument
65 isChecked(Object info) argument
66 setChecked(Object info, boolean checked) argument
67 isFocusable(Object info) argument
68 setFocusable(Object info, boolean focusable) argument
69 isFocused(Object info) argument
70 setFocused(Object info, boolean focused) argument
71 isVisibleToUser(Object info) argument
72 setVisibleToUser(Object info, boolean visibleToUser) argument
73 isAccessibilityFocused(Object info) argument
74 setAccessibilityFocused(Object info, boolean focused) argument
75 isSelected(Object info) argument
76 setSelected(Object info, boolean selected) argument
77 isClickable(Object info) argument
78 setClickable(Object info, boolean clickable) argument
79 isLongClickable(Object info) argument
80 setLongClickable(Object info, boolean longClickable) argument
81 isEnabled(Object info) argument
82 setEnabled(Object info, boolean enabled) argument
83 isPassword(Object info) argument
84 setPassword(Object info, boolean password) argument
85 isScrollable(Object info) argument
86 setScrollable(Object info, boolean scrollable) argument
87 getPackageName(Object info) argument
88 setPackageName(Object info, CharSequence packageName) argument
89 getClassName(Object info) argument
90 setClassName(Object info, CharSequence className) argument
91 getText(Object info) argument
92 setText(Object info, CharSequence text) argument
93 getContentDescription(Object info) argument
94 setContentDescription(Object info, CharSequence contentDescription) argument
95 recycle(Object info) argument
96 getViewIdResourceName(Object info) argument
97 setViewIdResourceName(Object info, String viewId) argument
117 obtain(Object info) argument
122 addAction(Object info, int action) argument
127 addChild(Object info, View child) argument
132 addChild(Object info, View child, int virtualDescendantId) argument
137 findAccessibilityNodeInfosByText(Object info, String text) argument
142 getActions(Object info) argument
147 getBoundsInParent(Object info, Rect outBounds) argument
152 getBoundsInScreen(Object info, Rect outBounds) argument
157 getChild(Object info, int index) argument
162 getChildCount(Object info) argument
167 getClassName(Object info) argument
172 getContentDescription(Object info) argument
177 getPackageName(Object info) argument
182 getParent(Object info) argument
187 getText(Object info) argument
192 getWindowId(Object info) argument
197 isCheckable(Object info) argument
202 isChecked(Object info) argument
207 isClickable(Object info) argument
212 isEnabled(Object info) argument
217 isFocusable(Object info) argument
222 isFocused(Object info) argument
227 isVisibleToUser(Object info) argument
232 isAccessibilityFocused(Object info) argument
237 isLongClickable(Object info) argument
242 isPassword(Object info) argument
247 isScrollable(Object info) argument
252 isSelected(Object info) argument
257 performAction(Object info, int action) argument
262 performAction(Object info, int action, Bundle arguments) argument
267 setMovementGranularities(Object info, int granularities) argument
272 getMovementGranularities(Object info) argument
277 setBoundsInParent(Object info, Rect bounds) argument
282 setBoundsInScreen(Object info, Rect bounds) argument
287 setCheckable(Object info, boolean checkable) argument
292 setChecked(Object info, boolean checked) argument
297 setClassName(Object info, CharSequence className) argument
302 setClickable(Object info, boolean clickable) argument
307 setContentDescription(Object info, CharSequence contentDescription) argument
312 setEnabled(Object info, boolean enabled) argument
317 setFocusable(Object info, boolean focusable) argument
322 setFocused(Object info, boolean focused) argument
327 setVisibleToUser(Object info, boolean visibleToUser) argument
332 setAccessibilityFocused(Object info, boolean focused) argument
337 setLongClickable(Object info, boolean longClickable) argument
342 setPackageName(Object info, CharSequence packageName) argument
347 setParent(Object info, View parent) argument
352 setPassword(Object info, boolean password) argument
357 setScrollable(Object info, boolean scrollable) argument
362 setSelected(Object info, boolean selected) argument
367 setSource(Object info, View source) argument
372 setSource(Object info, View root, int virtualDescendantId) argument
377 findFocus(Object info, int focus) argument
382 focusSearch(Object info, int direction) argument
387 setText(Object info, CharSequence text) argument
392 recycle(Object info) argument
397 setParent(Object info, View root, int virtualDescendantId) argument
402 getViewIdResourceName(Object info) argument
407 setViewIdResourceName(Object info, String viewId) argument
424 obtain(Object info) argument
429 addAction(Object info, int action) argument
434 addChild(Object info, View child) argument
439 findAccessibilityNodeInfosByText(Object info, String text) argument
444 getActions(Object info) argument
449 getBoundsInParent(Object info, Rect outBounds) argument
454 getBoundsInScreen(Object info, Rect outBounds) argument
459 getChild(Object info, int index) argument
464 getChildCount(Object info) argument
469 getClassName(Object info) argument
474 getContentDescription(Object info) argument
479 getPackageName(Object info) argument
484 getParent(Object info) argument
489 getText(Object info) argument
494 getWindowId(Object info) argument
499 isCheckable(Object info) argument
504 isChecked(Object info) argument
509 isClickable(Object info) argument
514 isEnabled(Object info) argument
519 isFocusable(Object info) argument
524 isFocused(Object info) argument
529 isLongClickable(Object info) argument
534 isPassword(Object info) argument
539 isScrollable(Object info) argument
544 isSelected(Object info) argument
549 performAction(Object info, int action) argument
554 setBoundsInParent(Object info, Rect bounds) argument
559 setBoundsInScreen(Object info, Rect bounds) argument
564 setCheckable(Object info, boolean checkable) argument
569 setChecked(Object info, boolean checked) argument
574 setClassName(Object info, CharSequence className) argument
579 setClickable(Object info, boolean clickable) argument
584 setContentDescription(Object info, CharSequence contentDescription) argument
589 setEnabled(Object info, boolean enabled) argument
594 setFocusable(Object info, boolean focusable) argument
599 setFocused(Object info, boolean focused) argument
604 setLongClickable(Object info, boolean longClickable) argument
609 setPackageName(Object info, CharSequence packageName) argument
614 setParent(Object info, View parent) argument
619 setPassword(Object info, boolean password) argument
624 setScrollable(Object info, boolean scrollable) argument
629 setSelected(Object info, boolean selected) argument
634 setSource(Object info, View source) argument
639 setText(Object info, CharSequence text) argument
644 recycle(Object info) argument
656 findFocus(Object info, int focus) argument
661 focusSearch(Object info, int direction) argument
666 addChild(Object info, View child, int virtualDescendantId) argument
671 setSource(Object info, View root, int virtualDescendantId) argument
676 isVisibleToUser(Object info) argument
681 setVisibleToUser(Object info, boolean visibleToUser) argument
686 isAccessibilityFocused(Object info) argument
691 setAccessibilityFocused(Object info, boolean focused) argument
696 performAction(Object info, int action, Bundle arguments) argument
701 setMovementGranularities(Object info, int granularities) argument
706 getMovementGranularities(Object info) argument
711 setParent(Object info, View root, int virtualDescendantId) argument
719 getViewIdResourceName(Object info) argument
724 setViewIdResourceName(Object info, String viewId) argument
1053 AccessibilityNodeInfoCompat(Object info) argument
1106 obtain(AccessibilityNodeInfoCompat info) argument
[all...]
/frameworks/support/v4/java/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompat.java32 public String getId(AccessibilityServiceInfo info); argument
33 public ResolveInfo getResolveInfo(AccessibilityServiceInfo info); argument
34 public boolean getCanRetrieveWindowContent(AccessibilityServiceInfo info); argument
35 public String getDescription(AccessibilityServiceInfo info); argument
36 public String getSettingsActivityName(AccessibilityServiceInfo info); argument
37 public int getCapabilities(AccessibilityServiceInfo info); argument
42 public boolean getCanRetrieveWindowContent(AccessibilityServiceInfo info) { argument
46 public String getDescription(AccessibilityServiceInfo info) { argument
50 public String getId(AccessibilityServiceInfo info) { argument
54 public ResolveInfo getResolveInfo(AccessibilityServiceInfo info) { argument
58 getSettingsActivityName(AccessibilityServiceInfo info) argument
62 getCapabilities(AccessibilityServiceInfo info) argument
70 getCanRetrieveWindowContent(AccessibilityServiceInfo info) argument
75 getDescription(AccessibilityServiceInfo info) argument
80 getId(AccessibilityServiceInfo info) argument
85 getResolveInfo(AccessibilityServiceInfo info) argument
90 getSettingsActivityName(AccessibilityServiceInfo info) argument
95 getCapabilities(AccessibilityServiceInfo info) argument
105 getCapabilities(AccessibilityServiceInfo info) argument
291 getId(AccessibilityServiceInfo info) argument
303 getResolveInfo(AccessibilityServiceInfo info) argument
316 getSettingsActivityName(AccessibilityServiceInfo info) argument
329 getCanRetrieveWindowContent(AccessibilityServiceInfo info) argument
342 getDescription(AccessibilityServiceInfo info) argument
424 getCapabilities(AccessibilityServiceInfo info) argument
[all...]
/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/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/core/jni/
H A Dandroid_graphics_PixelFormat.cpp45 PixelFormatInfo info; local
53 info.bytesPerPixel = 1;
54 info.bitsPerPixel = 16;
58 info.bytesPerPixel = 1;
59 info.bitsPerPixel = 12;
63 info.bytesPerPixel = 1;
64 info.bitsPerPixel = 16;
68 err = getPixelFormatInfo(format, &info);
75 env->SetIntField(pixelFormatObject, offsets.bytesPerPixel, info.bytesPerPixel);
76 env->SetIntField(pixelFormatObject, offsets.bitsPerPixel, info
[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/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/opt/datetimepicker/src/com/android/datetimepicker/
H A DAccessibleLinearLayout.java42 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { argument
43 super.onInitializeAccessibilityNodeInfo(info);
44 info.setClassName(Button.class.getName());
H A DAccessibleTextView.java42 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { argument
43 super.onInitializeAccessibilityNodeInfo(info);
44 info.setClassName(Button.class.getName());
/frameworks/av/media/libstagefright/
H A DNuMediaExtractor.cpp52 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
54 CHECK_EQ((status_t)OK, info->mSource->stop());
271 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
273 if (info->mTrackIndex == index) {
284 TrackInfo *info = &mSelectedTracks.editItemAt(mSelectedTracks.size() - 1); local
286 info->mSource = source;
287 info->mTrackIndex = index;
288 info->mFinalResult = OK;
289 info->mSample = NULL;
290 info
316 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
328 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
346 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
363 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
434 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex); local
452 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex); local
498 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex); local
513 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex); local
530 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex); local
[all...]

Completed in 7973 milliseconds

1234567891011>>