Searched refs:info (Results 1 - 25 of 304) 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/base/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/base/libs/ui/
H A DPixelFormat.cpp39 PixelFormatInfo info; local
40 status_t err = getPixelFormatInfo(format, &info);
41 return (err < 0) ? err : info.bytesPerPixel;
46 PixelFormatInfo info; local
47 status_t err = getPixelFormatInfo(format, &info);
48 return (err < 0) ? err : info.bitsPerPixel;
51 status_t getPixelFormatInfo(PixelFormat format, PixelFormatInfo* info) argument
56 if (info->version != sizeof(PixelFormatInfo))
63 info->bitsPerPixel = 16;
67 info
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java36 public Object obtain(Object info); argument
37 public void setSource(Object info, View source); argument
38 public int getWindowId(Object info); argument
39 public int getChildCount(Object info); argument
40 public Object getChild(Object info, int index); argument
41 public void addChild(Object info, View child); argument
42 public int getActions(Object info); argument
43 public void addAction(Object info, int action); argument
44 public boolean performAction(Object info, int action); argument
45 public List<Object> findAccessibilityNodeInfosByText(Object info, Strin argument
46 getParent(Object info) argument
47 setParent(Object info, View parent) argument
48 getBoundsInParent(Object info, Rect outBounds) argument
49 setBoundsInParent(Object info, Rect bounds) argument
50 getBoundsInScreen(Object info, Rect outBounds) argument
51 setBoundsInScreen(Object info, Rect bounds) argument
52 isCheckable(Object info) argument
53 setCheckable(Object info, boolean checkable) argument
54 isChecked(Object info) argument
55 setChecked(Object info, boolean checked) argument
56 isFocusable(Object info) argument
57 setFocusable(Object info, boolean focusable) argument
58 isFocused(Object info) argument
59 setFocused(Object info, boolean focused) argument
60 isSelected(Object info) argument
61 setSelected(Object info, boolean selected) argument
62 isClickable(Object info) argument
63 setClickable(Object info, boolean clickable) argument
64 isLongClickable(Object info) argument
65 setLongClickable(Object info, boolean longClickable) argument
66 isEnabled(Object info) argument
67 setEnabled(Object info, boolean enabled) argument
68 isPassword(Object info) argument
69 setPassword(Object info, boolean password) argument
70 isScrollable(Object info) argument
71 setScrollable(Object info, boolean scrollable) argument
72 getPackageName(Object info) argument
73 setPackageName(Object info, CharSequence packageName) argument
74 getClassName(Object info) argument
75 setClassName(Object info, CharSequence className) argument
76 getText(Object info) argument
77 setText(Object info, CharSequence text) argument
78 getContentDescription(Object info) argument
79 setContentDescription(Object info, CharSequence contentDescription) argument
80 recycle(Object info) argument
92 obtain(Object info) argument
96 addAction(Object info, int action) argument
100 addChild(Object info, View child) argument
104 findAccessibilityNodeInfosByText(Object info, String text) argument
108 getActions(Object info) argument
112 getBoundsInParent(Object info, Rect outBounds) argument
116 getBoundsInScreen(Object info, Rect outBounds) argument
120 getChild(Object info, int index) argument
124 getChildCount(Object info) argument
128 getClassName(Object info) argument
132 getContentDescription(Object info) argument
136 getPackageName(Object info) argument
140 getParent(Object info) argument
144 getText(Object info) argument
148 getWindowId(Object info) argument
152 isCheckable(Object info) argument
156 isChecked(Object info) argument
160 isClickable(Object info) argument
164 isEnabled(Object info) argument
168 isFocusable(Object info) argument
172 isFocused(Object info) argument
176 isLongClickable(Object info) argument
180 isPassword(Object info) argument
184 isScrollable(Object info) argument
188 isSelected(Object info) argument
192 performAction(Object info, int action) argument
196 setBoundsInParent(Object info, Rect bounds) argument
200 setBoundsInScreen(Object info, Rect bounds) argument
204 setCheckable(Object info, boolean checkable) argument
208 setChecked(Object info, boolean checked) argument
212 setClassName(Object info, CharSequence className) argument
216 setClickable(Object info, boolean clickable) argument
220 setContentDescription(Object info, CharSequence contentDescription) argument
224 setEnabled(Object info, boolean enabled) argument
228 setFocusable(Object info, boolean focusable) argument
232 setFocused(Object info, boolean focused) argument
236 setLongClickable(Object info, boolean longClickable) argument
240 setPackageName(Object info, CharSequence packageName) argument
244 setParent(Object info, View parent) argument
248 setPassword(Object info, boolean password) argument
252 setScrollable(Object info, boolean scrollable) argument
256 setSelected(Object info, boolean selected) argument
260 setSource(Object info, View source) argument
264 setText(Object info, CharSequence text) argument
268 recycle(Object info) argument
285 obtain(Object info) argument
290 addAction(Object info, int action) argument
295 addChild(Object info, View child) argument
300 findAccessibilityNodeInfosByText(Object info, String text) argument
305 getActions(Object info) argument
310 getBoundsInParent(Object info, Rect outBounds) argument
315 getBoundsInScreen(Object info, Rect outBounds) argument
320 getChild(Object info, int index) argument
325 getChildCount(Object info) argument
330 getClassName(Object info) argument
335 getContentDescription(Object info) argument
340 getPackageName(Object info) argument
345 getParent(Object info) argument
350 getText(Object info) argument
355 getWindowId(Object info) argument
360 isCheckable(Object info) argument
365 isChecked(Object info) argument
370 isClickable(Object info) argument
375 isEnabled(Object info) argument
380 isFocusable(Object info) argument
385 isFocused(Object info) argument
390 isLongClickable(Object info) argument
395 isPassword(Object info) argument
400 isScrollable(Object info) argument
405 isSelected(Object info) argument
410 performAction(Object info, int action) argument
415 setBoundsInParent(Object info, Rect bounds) argument
420 setBoundsInScreen(Object info, Rect bounds) argument
425 setCheckable(Object info, boolean checkable) argument
430 setChecked(Object info, boolean checked) argument
435 setClassName(Object info, CharSequence className) argument
440 setClickable(Object info, boolean clickable) argument
445 setContentDescription(Object info, CharSequence contentDescription) argument
450 setEnabled(Object info, boolean enabled) argument
455 setFocusable(Object info, boolean focusable) argument
460 setFocused(Object info, boolean focused) argument
465 setLongClickable(Object info, boolean longClickable) argument
470 setPackageName(Object info, CharSequence packageName) argument
475 setParent(Object info, View parent) argument
480 setPassword(Object info, boolean password) argument
485 setScrollable(Object info, boolean scrollable) argument
490 setSelected(Object info, boolean selected) argument
495 setSource(Object info, View source) argument
500 setText(Object info, CharSequence text) argument
505 recycle(Object info) argument
547 AccessibilityNodeInfoCompat(Object info) argument
587 obtain(AccessibilityNodeInfoCompat info) 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/base/tools/layoutlib/bridge/src/android/view/
H A DAttachInfo_Accessor.java31 AttachInfo info = new AttachInfo(new BridgeWindowSession(), new BridgeWindow(),
33 info.mHasWindowFocus = true;
34 info.mWindowVisibility = View.VISIBLE;
35 info.mInTouchMode = false; // this is so that we can display selections.
36 info.mHardwareAccelerated = false;
37 view.dispatchAttachedToWindow(info, 0);
/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/media/libstagefright/codecs/aacdec/
H A Dms_map_mask.h77 FrameInfo *info,
/frameworks/base/services/surfaceflinger/tests/resize/
H A Dresize.cpp50 Surface::SurfaceInfo info; local
51 surface->lock(&info);
52 ssize_t bpr = info.s * bytesPerPixel(info.format);
53 android_memset16((uint16_t*)info.bits, 0xF800, bpr*info.h);
56 surface->lock(&info);
57 android_memset16((uint16_t*)info.bits, 0x07E0, bpr*info.h);
/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/base/core/java/com/android/internal/net/
H A DLegacyVpnInfo.java57 LegacyVpnInfo info = new LegacyVpnInfo();
58 info.key = in.readString();
59 info.state = in.readInt();
60 info.intent = in.readParcelable(null);
61 return info;
/frameworks/base/media/libstagefright/timedtext/
H A DTimedTextParser.cpp65 TextInfo info; local
66 status_t err = getNextInSrtFileFormat(&offset, &startTimeUs, &info);
75 mTextVector.add(startTimeUs, info);
143 off64_t *offset, int64_t *startTimeUs, TextInfo *info) {
164 info->endTimeUs = ((hour2 * 3600 + min2 * 60 + sec2) * 1000 + msec2) * 1000ll;
165 if (info->endTimeUs <= *startTimeUs) {
169 info->offset = *offset;
190 info->textLen = *offset - info->offset;
241 TextInfo info local
142 getNextInSrtFileFormat( off64_t *offset, int64_t *startTimeUs, TextInfo *info) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DContentProviderRecord.java48 super(cpr.info);
56 return (info.multiprocess || info.processName.equals(app.processName))
57 && (uid == Process.SYSTEM_UID || uid == app.info.uid);
62 pw.print(info.applicationInfo.packageName);
63 pw.print(" process="); pw.println(info.processName);
70 pw.print(prefix); pw.print("name="); pw.println(info.authority);
71 if (info.isSyncable || info.multiprocess || info
[all...]
/frameworks/base/tests/DumpRenderTree2/assets/
H A Drun_apache2.py37 logging.info("illegal argument: " + run_cmd)
38 logging.info("Usage: python run_apache2.py start|stop|restart")
106 logging.info("Will " + run_cmd + " apache2 server.")
111 logging.info("First will stop...")
114 logging.info("Failed to stop Apache2")
116 logging.info("Stopped. Will start now...")
124 logging.info("Failed to start Apache2")
127 logging.info("Successfully started")
135 logging.info(out)
139 logging.info("!! ERROR
[all...]
H A Drun_layout_tests.py44 logging.info("Running the tests...")
48 logging.info("Failed to start tests:\n%s", stderrdata)
51 logging.info("Failed to run the tests. Is DumpRenderTree2 installed on the device?")
54 logging.info("DumpRenderTree2 failed to run correctly:\n%s", stdoutdata)
57 logging.info("Downloading the summaries...")
72 logging.info("All done.\n")
75 logging.info("")

Completed in 1102 milliseconds

1234567891011>>