Searched refs:info (Results 1 - 25 of 490) 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,
/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/compile/mclinker/lib/Target/ARM/
H A DARMELFSectLinker.cpp19 MCLDInfo &info = pOption.info(); local
21 info.attrFactory().constraint().enableWholeArchive();
22 info.attrFactory().constraint().disableAsNeeded();
23 info.attrFactory().constraint().setSharedSystem();
26 info.attrFactory().predefined().setWholeArchive();
27 info.attrFactory().predefined().setDynamic();
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsELFSectLinker.cpp19 MCLDInfo &info = pOption.info(); local
21 info.attrFactory().constraint().enableWholeArchive();
22 info.attrFactory().constraint().disableAsNeeded();
23 info.attrFactory().constraint().setSharedSystem();
26 info.attrFactory().predefined().setWholeArchive();
27 info.attrFactory().predefined().setDynamic();
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86ELFSectLinker.cpp19 MCLDInfo &info = pOption.info(); local
21 info.attrFactory().constraint().enableWholeArchive();
22 info.attrFactory().constraint().disableAsNeeded();
23 info.attrFactory().constraint().setSharedSystem();
26 info.attrFactory().predefined().setWholeArchive();
27 info.attrFactory().predefined().setDynamic();
/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/java/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompat.java31 public String getId(AccessibilityServiceInfo info); argument
32 public ResolveInfo getResolveInfo(AccessibilityServiceInfo info); argument
33 public boolean getCanRetrieveWindowContent(AccessibilityServiceInfo info); argument
34 public String getDescription(AccessibilityServiceInfo info); argument
35 public String getSettingsActivityName(AccessibilityServiceInfo info); argument
40 public boolean getCanRetrieveWindowContent(AccessibilityServiceInfo info) { argument
44 public String getDescription(AccessibilityServiceInfo info) { argument
48 public String getId(AccessibilityServiceInfo info) { argument
52 public ResolveInfo getResolveInfo(AccessibilityServiceInfo info) { argument
56 public String getSettingsActivityName(AccessibilityServiceInfo info) { argument
64 getCanRetrieveWindowContent(AccessibilityServiceInfo info) argument
69 getDescription(AccessibilityServiceInfo info) argument
74 getId(AccessibilityServiceInfo info) argument
79 getResolveInfo(AccessibilityServiceInfo info) argument
84 getSettingsActivityName(AccessibilityServiceInfo info) argument
125 getId(AccessibilityServiceInfo info) argument
137 getResolveInfo(AccessibilityServiceInfo info) argument
150 getSettingsActivityName(AccessibilityServiceInfo info) argument
163 getCanRetrieveWindowContent(AccessibilityServiceInfo info) argument
176 getDescription(AccessibilityServiceInfo info) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java37 public Object obtain(Object info); argument
39 public void setSource(Object info, View source); argument
40 public void setSource(Object info, View root, int virtualDescendantId); argument
41 public Object findFocus(Object info, int focus); argument
42 public Object focusSearch(Object info, int direction); argument
43 public int getWindowId(Object info); argument
44 public int getChildCount(Object info); argument
45 public Object getChild(Object info, int index); argument
46 public void addChild(Object info, View child); argument
47 public void addChild(Object info, Vie argument
48 getActions(Object info) argument
49 addAction(Object info, int action) argument
50 performAction(Object info, int action) argument
51 performAction(Object info, int action, Bundle arguments) argument
52 setMovementGranularities(Object info, int granularities) argument
53 getMovementGranularities(Object info) argument
54 findAccessibilityNodeInfosByText(Object info, String text) argument
55 getParent(Object info) argument
56 setParent(Object info, View root, int virtualDescendantId) argument
57 setParent(Object info, View parent) argument
58 getBoundsInParent(Object info, Rect outBounds) argument
59 setBoundsInParent(Object info, Rect bounds) argument
60 getBoundsInScreen(Object info, Rect outBounds) argument
61 setBoundsInScreen(Object info, Rect bounds) argument
62 isCheckable(Object info) argument
63 setCheckable(Object info, boolean checkable) argument
64 isChecked(Object info) argument
65 setChecked(Object info, boolean checked) argument
66 isFocusable(Object info) argument
67 setFocusable(Object info, boolean focusable) argument
68 isFocused(Object info) argument
69 setFocused(Object info, boolean focused) argument
70 isVisibleToUser(Object info) argument
71 setVisibleToUser(Object info, boolean visibleToUser) argument
72 isAccessibilityFocused(Object info) argument
73 setAccessibilityFocused(Object info, boolean focused) argument
74 isSelected(Object info) argument
75 setSelected(Object info, boolean selected) argument
76 isClickable(Object info) argument
77 setClickable(Object info, boolean clickable) argument
78 isLongClickable(Object info) argument
79 setLongClickable(Object info, boolean longClickable) argument
80 isEnabled(Object info) argument
81 setEnabled(Object info, boolean enabled) argument
82 isPassword(Object info) argument
83 setPassword(Object info, boolean password) argument
84 isScrollable(Object info) argument
85 setScrollable(Object info, boolean scrollable) argument
86 getPackageName(Object info) argument
87 setPackageName(Object info, CharSequence packageName) argument
88 getClassName(Object info) argument
89 setClassName(Object info, CharSequence className) argument
90 getText(Object info) argument
91 setText(Object info, CharSequence text) argument
92 getContentDescription(Object info) argument
93 setContentDescription(Object info, CharSequence contentDescription) argument
94 recycle(Object info) argument
114 obtain(Object info) argument
119 addAction(Object info, int action) argument
124 addChild(Object info, View child) argument
129 addChild(Object info, View child, int virtualDescendantId) argument
134 findAccessibilityNodeInfosByText(Object info, String text) argument
139 getActions(Object info) argument
144 getBoundsInParent(Object info, Rect outBounds) argument
149 getBoundsInScreen(Object info, Rect outBounds) argument
154 getChild(Object info, int index) argument
159 getChildCount(Object info) argument
164 getClassName(Object info) argument
169 getContentDescription(Object info) argument
174 getPackageName(Object info) argument
179 getParent(Object info) argument
184 getText(Object info) argument
189 getWindowId(Object info) argument
194 isCheckable(Object info) argument
199 isChecked(Object info) argument
204 isClickable(Object info) argument
209 isEnabled(Object info) argument
214 isFocusable(Object info) argument
219 isFocused(Object info) argument
224 isVisibleToUser(Object info) argument
229 isAccessibilityFocused(Object info) argument
234 isLongClickable(Object info) argument
239 isPassword(Object info) argument
244 isScrollable(Object info) argument
249 isSelected(Object info) argument
254 performAction(Object info, int action) argument
259 performAction(Object info, int action, Bundle arguments) argument
264 setMovementGranularities(Object info, int granularities) argument
269 getMovementGranularities(Object info) argument
274 setBoundsInParent(Object info, Rect bounds) argument
279 setBoundsInScreen(Object info, Rect bounds) argument
284 setCheckable(Object info, boolean checkable) argument
289 setChecked(Object info, boolean checked) argument
294 setClassName(Object info, CharSequence className) argument
299 setClickable(Object info, boolean clickable) argument
304 setContentDescription(Object info, CharSequence contentDescription) argument
309 setEnabled(Object info, boolean enabled) argument
314 setFocusable(Object info, boolean focusable) argument
319 setFocused(Object info, boolean focused) argument
324 setVisibleToUser(Object info, boolean visibleToUser) argument
329 setAccessibilityFocused(Object info, boolean focused) argument
334 setLongClickable(Object info, boolean longClickable) argument
339 setPackageName(Object info, CharSequence packageName) argument
344 setParent(Object info, View parent) argument
349 setPassword(Object info, boolean password) argument
354 setScrollable(Object info, boolean scrollable) argument
359 setSelected(Object info, boolean selected) argument
364 setSource(Object info, View source) argument
369 setSource(Object info, View root, int virtualDescendantId) argument
374 findFocus(Object info, int focus) argument
379 focusSearch(Object info, int direction) argument
384 setText(Object info, CharSequence text) argument
389 recycle(Object info) argument
394 setParent(Object info, View root, int virtualDescendantId) argument
411 obtain(Object info) argument
416 addAction(Object info, int action) argument
421 addChild(Object info, View child) argument
426 findAccessibilityNodeInfosByText(Object info, String text) argument
431 getActions(Object info) argument
436 getBoundsInParent(Object info, Rect outBounds) argument
441 getBoundsInScreen(Object info, Rect outBounds) argument
446 getChild(Object info, int index) argument
451 getChildCount(Object info) argument
456 getClassName(Object info) argument
461 getContentDescription(Object info) argument
466 getPackageName(Object info) argument
471 getParent(Object info) argument
476 getText(Object info) argument
481 getWindowId(Object info) argument
486 isCheckable(Object info) argument
491 isChecked(Object info) argument
496 isClickable(Object info) argument
501 isEnabled(Object info) argument
506 isFocusable(Object info) argument
511 isFocused(Object info) argument
516 isLongClickable(Object info) argument
521 isPassword(Object info) argument
526 isScrollable(Object info) argument
531 isSelected(Object info) argument
536 performAction(Object info, int action) argument
541 setBoundsInParent(Object info, Rect bounds) argument
546 setBoundsInScreen(Object info, Rect bounds) argument
551 setCheckable(Object info, boolean checkable) argument
556 setChecked(Object info, boolean checked) argument
561 setClassName(Object info, CharSequence className) argument
566 setClickable(Object info, boolean clickable) argument
571 setContentDescription(Object info, CharSequence contentDescription) argument
576 setEnabled(Object info, boolean enabled) argument
581 setFocusable(Object info, boolean focusable) argument
586 setFocused(Object info, boolean focused) argument
591 setLongClickable(Object info, boolean longClickable) argument
596 setPackageName(Object info, CharSequence packageName) argument
601 setParent(Object info, View parent) argument
606 setPassword(Object info, boolean password) argument
611 setScrollable(Object info, boolean scrollable) argument
616 setSelected(Object info, boolean selected) argument
621 setSource(Object info, View source) argument
626 setText(Object info, CharSequence text) argument
631 recycle(Object info) argument
643 findFocus(Object info, int focus) argument
648 focusSearch(Object info, int direction) argument
653 addChild(Object info, View child, int virtualDescendantId) argument
658 setSource(Object info, View root, int virtualDescendantId) argument
663 isVisibleToUser(Object info) argument
668 setVisibleToUser(Object info, boolean visibleToUser) argument
673 isAccessibilityFocused(Object info) argument
678 setAccessibilityFocused(Object info, boolean focused) argument
683 performAction(Object info, int action, Bundle arguments) argument
688 setMovementGranularities(Object info, int granularities) argument
693 getMovementGranularities(Object info) argument
698 setParent(Object info, View root, int virtualDescendantId) argument
930 AccessibilityNodeInfoCompat(Object info) argument
983 obtain(AccessibilityNodeInfoCompat info) argument
[all...]
/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/av/media/libstagefright/
H A DNuMediaExtractor.cpp52 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
54 CHECK_EQ((status_t)OK, info->mSource->stop());
243 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
245 if (info->mTrackIndex == index) {
256 TrackInfo *info = &mSelectedTracks.editItemAt(mSelectedTracks.size() - 1); local
258 info->mSource = source;
259 info->mTrackIndex = index;
260 info->mFinalResult = OK;
261 info->mSample = NULL;
262 info
288 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
300 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
318 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
335 TrackInfo *info = &mSelectedTracks.editItemAt(i); local
406 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex); local
424 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex); local
470 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex); local
485 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex); local
502 TrackInfo *info = &mSelectedTracks.editItemAt(minIndex); local
[all...]
/frameworks/compile/libbcc/runtime/test/timing/
H A Dtiming.h12 mach_timebase_info_data_t info; local
13 kern_return_t err = mach_timebase_info( &info );
23 conversion = (double) freq * (1e-9 * (double) info.numer / (double) info.denom);
/frameworks/native/services/surfaceflinger/tests/resize/
H A Dresize.cpp49 Surface::SurfaceInfo info; local
50 surface->lock(&info);
51 ssize_t bpr = info.s * bytesPerPixel(info.format);
52 android_memset16((uint16_t*)info.bits, 0xF800, bpr*info.h);
55 surface->lock(&info);
56 android_memset16((uint16_t*)info.bits, 0x07E0, bpr*info.h);
/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/base/core/java/android/view/
H A DWindowInfo.java92 WindowInfo info = obtain();
93 info.token = other.token;
94 info.frame.set(other.frame);
95 info.touchableRegion.set(other.touchableRegion);
96 info.type = other.type;
97 info.compatibilityScale = other.compatibilityScale;
98 info.visible = other.visible;
99 info.displayId = other.displayId;
100 info.layer = other.layer;
101 return info;
[all...]

Completed in 452 milliseconds

1234567891011>>