HomeSort by relevance Sort by last modified time
    Searched full:info (Results 426 - 450 of 4990) sorted by null

<<11121314151617181920>>

  /development/pdk/docs/porting/
display_drivers.jd 134 unsigned int blue, unsigned int transp, struct fb_info *info)
136 struct pguide_fb *fb = container_of(info, struct pguide_fb, fb);
153 static int pguide_fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
155 if((var->rotate & 1) != (info->var.rotate & 1)) {
156 if((var->xres != info->var.yres) ||
157 (var->yres != info->var.xres) ||
158 (var->xres_virtual != info->var.yres) ||
160 info->var.xres * ANDROID_NUMBER_OF_BUFFERS) ||
161 (var->yres_virtual < info->var.xres )) {
166 if((var->xres != info->var.xres) |
    [all...]
  /external/v8/src/
fast-codegen.cc 54 void FastCodeGenSyntaxChecker::Check(CompilationInfo* info) {
55 info_ = info;
59 if (!info->has_receiver()) BAILOUT("No receiver");
60 if (!info->receiver()->IsJSObject()) BAILOUT("Receiver is not an object");
61 Handle<JSObject> object = Handle<JSObject>::cast(info->receiver());
66 Scope* scope = info->scope();
78 if (info->function()->body()->is_empty()) {
81 VisitStatements(info->function()->body());
220 if (info()->has_global_object()) {
222 info()->global_object()->Lookup(*expr->name(), &lookup)
    [all...]
frame-element.h 31 #include "number-info.h"
57 // Copied elements do not have number info. Instead
67 inline void set_number_info(NumberInfo::Type info) {
68 // Copied elements do not have number info. Instead
72 value_ = value_ | NumberInfoField::encode(info);
91 static FrameElement MemoryElement(NumberInfo::Type info) {
92 FrameElement result(MEMORY, no_reg, SYNCED, info);
99 NumberInfo::Type info) {
100 return FrameElement(REGISTER, reg, is_synced, info);
213 NumberInfo::Type info) {
    [all...]
  /system/core/fastboot/
usb_osx.c 57 usb_ifc_info info; member in struct:usb_handle
171 if ((*interface)->GetInterfaceClass(interface, &handle->info.ifc_class) != 0 ||
172 (*interface)->GetInterfaceSubClass(interface, &handle->info.ifc_subclass) != 0 ||
173 (*interface)->GetInterfaceProtocol(interface, &handle->info.ifc_protocol) != 0)
179 handle->info.has_bulk_in = 0;
180 handle->info.has_bulk_out = 0;
201 handle->info.has_bulk_in = 1;
204 handle->info.has_bulk_out = 1;
208 if (handle->info.ifc_protocol == 0x01) {
215 if (handle->info.has_bulk_in && handle->info.has_bulk_out)
    [all...]
  /external/qemu/audio/
audio.c 682 static int audio_pcm_info_eq (struct audio_pcm_info *info, struct audsettings *as)
704 return info->freq == as->freq
705 && info->nchannels == as->nchannels
706 && info->sign == sign
707 && info->bits == bits
708 && info->swap_endianness == (as->endianness != AUDIO_HOST_ENDIANNESS);
711 void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as)
736 info->freq = as->freq;
737 info->bits = bits;
738 info->sign = sign
    [all...]
fmodaudio.c 107 hw->samples << hw->info.shift,
119 if ((len1 & hw->info.align) || (len2 & hw->info.align)) {
121 len1, len2, hw->info.align + 1);
125 if ((len1 + len2) - (hw->samples << hw->info.shift)) {
127 len1 + len2, hw->samples << hw->info.shift);
131 audio_pcm_info_clear_buf (&hw->info, p1, hw->samples);
160 dst = advance (dst, src_len1 << hw->info.shift);
180 struct audio_pcm_info *info,
193 pos << info->shift
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JDKKeyFactory.java 192 * create a public key from the given public key info object.
195 SubjectPublicKeyInfo info)
197 DERObjectIdentifier algOid = info.getAlgorithmId().getObjectId();
201 return new JCERSAPublicKey(info);
205 return new JCEDHPublicKey(info);
209 return new JCEDHPublicKey(info);
214 // return new JCEElGamalPublicKey(info);
219 return new JDKDSAPublicKey(info);
223 return new JDKDSAPublicKey(info);
228 // return new JCEECPublicKey(info);
    [all...]
  /external/opencore/codecs_v2/audio/mp3/dec/src/
pvmp3_decode_header.cpp 39 mp3Header *info,
43 mp3Header *info, structure holding the parsed mp3 header info
116 mp3Header *info,
151 info->version_x = MPEG_2_5;
154 info->version_x = MPEG_2;
157 info->version_x = MPEG_1;
160 info->version_x = INVALID_VERSION;
165 info->layer_description = 4 - ((temp << 13) >> 30); /* 2 */
166 info->error_protection = !((temp << 15) >> 31); /* 1 *
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8LocationCustom.cpp 62 void V8Location::hashAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
65 v8::Handle<v8::Object> holder = info.Holder();
85 void V8Location::hostAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
88 v8::Handle<v8::Object> holder = info.Holder();
105 void V8Location::hostnameAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
108 v8::Handle<v8::Object> holder = info.Holder();
122 void V8Location::hrefAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
125 v8::Handle<v8::Object> holder = info.Holder();
142 void V8Location::pathnameAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
145 v8::Handle<v8::Object> holder = info.Holder()
    [all...]
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_decode_header.cpp 39 mp3Header *info,
43 mp3Header *info, structure holding the parsed mp3 header info
116 mp3Header *info,
151 info->version_x = MPEG_2_5;
154 info->version_x = MPEG_2;
157 info->version_x = MPEG_1;
160 info->version_x = INVALID_VERSION;
165 info->layer_description = 4 - ((temp << 13) >> 30); /* 2 */
166 info->error_protection = !((temp << 15) >> 31); /* 1 *
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java 95 public void bindAppWidget(LauncherAppWidgetInfo info);
270 static void deleteUserFolderContentsFromDatabase(Context context, UserFolderInfo info) {
273 cr.delete(LauncherSettings.Favorites.getContentUri(info.id, false), null, null);
275 LauncherSettings.Favorites.CONTAINER + "=" + info.id, null);
350 for (ApplicationInfo info: removed) {
351 mIconCache.remove(info.intent.getComponent());
750 ShortcutInfo info; local
772 info = getShortcutInfo(manager, intent, context, c, iconIndex,
775 info = getShortcutInfo(c, context, iconTypeIndex
1295 final ShortcutInfo info = new ShortcutInfo(); local
1352 final ShortcutInfo info = new ShortcutInfo(); local
1422 final ShortcutInfo info = infoFromShortcutIntent(context, data); local
1459 final ShortcutInfo info = new ShortcutInfo(); local
    [all...]
  /external/webkit/WebCore/rendering/
RenderLineBoxList.cpp 171 RenderObject::PaintInfo info(paintInfo);
173 info.outlineObjects = &outlineObjects;
198 int top = min(curr->topVisibleOverflow(), curr->root()->selectionTop()) - renderer->maximalOutlineSize(info.phase);
199 int bottom = curr->bottomVisibleOverflow() + renderer->maximalOutlineSize(info.phase);
203 if (yPos < info.rect.bottom() && yPos + h > info.rect.y())
204 curr->paint(info, tx, ty);
207 if (info.phase == PaintPhaseOutline || info.phase == PaintPhaseSelfOutline || info.phase == PaintPhaseChildOutlines)
    [all...]
InlineBox.cpp 171 RenderObject::PaintInfo info(paintInfo);
172 info.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground;
173 renderer()->paint(info, tx, ty);
175 info.phase = PaintPhaseChildBlockBackgrounds;
176 renderer()->paint(info, tx, ty);
177 info.phase = PaintPhaseFloat;
178 renderer()->paint(info, tx, ty);
179 info.phase = PaintPhaseForeground;
180 renderer()->paint(info, tx, ty);
181 info.phase = PaintPhaseOutline
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
LayoutDescriptors.java 125 for (ViewClassInfo info : views) {
126 ElementDescriptor desc = convertView(info, infoDescMap);
137 for (ViewClassInfo info : layouts) {
138 ElementDescriptor desc = convertView(info, infoDescMap);
173 * @param info The {@link ViewClassInfo} to convert into a new {@link ViewElementDescriptor}.
178 ViewClassInfo info,
180 String xml_name = info.getShortClassName();
181 String tooltip = info.getJavaDoc();
203 info.getAttributes(),
207 for (ViewClassInfo link = info.getSuperClass()
373 ViewClassInfo info = entry.getKey(); local
    [all...]
  /system/core/toolbox/
schedtop.c 97 struct thread_info *info; local
99 info = get_item(&processes);
101 info = get_item(&threads);
102 info->pid = pid;
103 info->tid = tid;
111 if(sscanf(line, "%llu %llu %u", &info->exec_time, &info->delay_time, &info->run_count) != 3)
114 proc_info->exec_time += info->exec_time;
115 proc_info->delay_time += info->delay_time
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/mint/
SDL_syscdrom.c 76 struct cdrom_subchnl info; local
104 info.cdsc_format = CDROM_MSF;
105 if ( (Metaioctl(i, METADOS_IOCTL_MAGIC, CDROMSUBCHNL, &info) == 0) || ERRNO_TRAYEMPTY(errno) ) {
223 struct cdrom_subchnl info; local
225 info.cdsc_format = CDROM_MSF;
226 if ( SDL_SYS_CDioctl(cdrom->id, CDROMSUBCHNL, &info) < 0 ) {
233 switch (info.cdsc_audiostatus) {
251 if ( info.cdsc_trk == CDROM_LEADOUT ) {
265 info.cdsc_absaddr.msf.minute,
266 info.cdsc_absaddr.msf.second
    [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java 410 * @return the info for the active network, or {@code null} if none is
420 NetworkInfo info = t.getNetworkInfo(); local
421 if (info.isConnected()) {
425 return info;
1372 NetworkInfo info; local
    [all...]
  /external/kernel-headers/original/linux/
fb.h 342 struct fb_cmap cmap; /* color map info */
476 struct fb_cmap_user cmap; /* color map info */
521 struct fb_info *info; member in struct:fb_event
551 void (*writeio)(struct fb_info *info, void __iomem *dst, void *src, unsigned int size);
552 void (*readio) (struct fb_info *info, void *dst, void __iomem *src, unsigned int size);
567 int (*fb_open)(struct fb_info *info, int user);
568 int (*fb_release)(struct fb_info *info, int user);
578 int (*fb_check_var)(struct fb_var_screeninfo *var, struct fb_info *info);
580 /* set the video mode according to info->var */
581 int (*fb_set_par)(struct fb_info *info);
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/
rebaseline_chromium_webkit_tests.py 129 def log_dashed_string(text, platform, logging_level=logging.INFO):
144 logging.info(msg)
166 logging.info('Html directory: "%s"', html_directory)
170 logging.info('Deleted file at html directory: "%s"', html_directory)
233 logging.info('')
246 logging.info('')
267 output, return_code = run_shell_with_return_code(['svn', 'info'],
288 logging.info('Total number of tests needing rebaselining '
294 logging.info(' %d: %s', test_no, test)
322 logging.info('Latest revision: "%s"', revisions[len(revisions) - 1]
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_print.c 42 free(me->info); me->info = NULL;
68 /* data needed for info field */
87 me->info = (char *) malloc(3+9+1+8+2+6+4+2+7+12+8+16+2 + 100);
88 if (me->info)
91 sprintf(me->info,
92 "%s" /* info separator start */
104 "%s" /* info separator end */
129 /* info separator end */
133 /* we succeed if we could allocate the info string *
    [all...]
  /bionic/libdl/
libdl.c 24 int dladdr(void *addr, Dl_info *info) { return 0; }
32 int dl_iterate_phdr(int (*cb)(void *info, void *size, void *data),
  /dalvik/libcore/security/src/main/java/org/bouncycastle/x509/extension/
SubjectKeyIdentifierStructure.java 41 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo( local
44 return (ASN1OctetString)(new SubjectKeyIdentifier(info).toASN1Object());
  /dalvik/libcore-disabled/sound/src/test/java/android/core/
SoundTest.java 74 MidiDevice.Info info = sequencer.getDeviceInfo(); local
75 Assert.assertNotNull("Device info must exist", info);
113 Line.Info info = clip.getLineInfo(); local
114 Assert.assertNotNull("Line info must exist", info);
  /external/bluetooth/glib/gmodule/
gmodule-beos.c 87 image_info info; local
92 status = get_next_image_info (0, &cookie, &info);
94 return (gpointer) info.id;
111 image_info info; local
119 if (get_image_info ((image_id) handle, &info) != B_OK)
122 name = g_strdup (info.name);
137 image_info info; local
145 status = get_image_info (id, &info);
  /external/bluetooth/glib/tests/bookmarks/
fail-06.xbel 7 xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
15 <bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>

Completed in 399 milliseconds

<<11121314151617181920>>