/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...] |
/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/qemu/distrib/sdl-1.2.12/src/cdrom/qnx/ |
SDL_syscdrom.c | 320 cdrom_subch_data_t info; local 347 SDL_memset(&info, 0x00, sizeof(info)); 348 info.subch_command.data_format = CDROM_SUBCH_CURRENT_POSITION; 351 devctlret=devctl(cdrom->id, DCMD_CAM_CDROMSUBCHNL, &info, sizeof(info), NULL); 400 switch (info.current_position.header.audio_status) 418 if (info.current_position.data_format == CDROM_LEADOUT) 437 *position = MSF_TO_FRAMES(info.current_position.addr.msf.minute, 438 info.current_position.addr.msf.second [all...] |
/external/webkit/WebCore/platform/graphics/cg/ |
PathCG.cpp | 91 static void copyClosingSubpathsApplierFunction(void* info, const CGPathElement* element) 93 CGMutablePathRef path = static_cast<CGMutablePathRef>(info); 253 static void CGPathToCFStringApplierFunction(void* info, const CGPathElement *element) 255 CFMutableStringRef string = static_cast<CFMutableStringRef>(info); 309 void* info; member in struct:WebCore::PathApplierInfo 313 static void CGPathApplierToPathApplier(void *info, const CGPathElement *element) 315 PathApplierInfo* pinfo = (PathApplierInfo*)info; 338 pinfo->function(pinfo->info, &pelement); 341 void Path::apply(void* info, PathApplierFunction function) const 344 pinfo.info = info [all...] |
/external/webkit/WebCore/platform/image-decoders/jpeg/ |
JPEGImageDecoder.cpp | 352 jpeg_decompress_struct* info() { return &m_info; } function in class:WebCore::JPEGImageReader 487 jpeg_decompress_struct* info = m_reader->info(); local 490 while (info->output_scanline < info->output_height) { 493 int sourceY = info->output_scanline; 495 if (jpeg_read_scanlines(info, samples, 1) != 1) 501 int width = m_scaled ? m_scaledColumns.size() : info->output_width; 503 JSAMPLE* jsample = *samples + (m_scaled ? m_scaledColumns[x] : x) * ((info->out_color_space == JCS_RGB) ? 3 : 4); 504 if (info->out_color_space == JCS_RGB [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/descriptors/ |
XmlDescriptors.java | 271 for (ViewClassInfo info : prefs) { 272 ElementDescriptor desc = convertPref(info); 281 for (ViewClassInfo info : prefGroups) { 282 ElementDescriptor desc = convertPref(info); 285 if (info.getFullClassName() == AndroidConstants.CLASS_PREFERENCES) { 325 private ElementDescriptor convertPref(ViewClassInfo info) { 326 String xml_name = info.getShortClassName(); 327 String tooltip = info.getJavaDoc(); 334 info.getAttributes(), 338 for (ViewClassInfo link = info.getSuperClass() [all...] |
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/ |
AudioSystem.java | 59 public static Mixer.Info[] getMixerInfo() { 60 List<Mixer.Info> result = new ArrayList<Mixer.Info>(); 64 Mixer.Info[] infos = ((MixerProvider) (providers.next())) 66 for (Mixer.Info info : infos) { 67 result.add(info); 71 Mixer.Info[] temp = new Mixer.Info[result.size()]; 75 public static Mixer getMixer(Mixer.Info info) [all...] |
/external/qemu/audio/ |
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...] |
/bootable/recovery/tools/ota/ |
convert-to-bmp.py | 54 info = struct.pack(BITMAPINFO_HEADER_FMT, variable 69 f.write(info)
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/ |
FloatingPointParser.java | 281 StringExponentPair info = initialParse(s, length); local 283 double result = parseDblImpl(info.s, info.e); 284 if (info.negative) 319 StringExponentPair info = initialParse(s, length); local 321 float result = parseFltImpl(info.s, info.e); 322 if (info.negative)
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ocsp/ |
CertStatus.java | 30 RevokedInfo info) 33 value = info;
|
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TestHelper_Driver1.java | 76 public Connection connect(String url, Properties info) throws SQLException { 105 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info)
|
/dalvik/libcore/sql/src/test/java/tests/support/ |
ThreadPool.java | 61 Logger.global.info("1 Task is removed"); 111 Logger.global.info("Task is run");
|
/development/host/windows/usb/api/ |
adb_endpoint_object.cpp | 41 bool AdbEndpointObject::GetEndpointInformation(AdbEndpointInformation* info) {
47 return parent_interface()->GetEndpointInformation(endpoint_index(), info);
|
/development/tools/axl/ |
log.py | 46 def info(self, *logstrs): member in class:Log 53 # default to info 54 log = info
|
/external/bison/doc/ |
Makefile | 78 INFO_DEPS = $(srcdir)/bison.info 206 infodir = ${prefix}/info 229 .SUFFIXES: .dvi .html .info .pdf .ps .texinfo 260 .texinfo.info: 265 for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \ 305 $(srcdir)/bison.info: bison.texinfo $(srcdir)/version.texi $(bison_TEXINFOS) 332 uninstall-info-am: 334 @if (install-info --version && \ 335 install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then [all...] |
/external/elfutils/libelf/ |
gelf.h | 126 #define GELF_R_SYM(info) ELF64_R_SYM (info) 127 #define GELF_R_TYPE(info) ELF64_R_TYPE (info) 132 #define GELF_M_SYM(info) ELF64_M_SYM (info) 133 #define GELF_M_SIZE(info) ELF64_M_SIZE (info) 183 /* Retrieve REL relocation info at the given index. */ 186 /* Retrieve RELA relocation info at the given index. * [all...] |
/external/icu4c/tools/ctestfw/unicode/ |
testdata.h | 25 * the TestDataModule info section. The default headers will be overriden 60 * @param info pass in a const DataMap pointer. If no info, it will be set to NULL 62 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const = 0; 104 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const;
|
tstdtmod.h | 65 * @param info pass in a const DataMap pointer. If no info, it will be set to NULL 67 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const = 0; 93 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const;
|
/external/icu4c/tools/toolutil/ |
toolutil.c | 69 static WIN32_FIND_DATAA info; local 70 HANDLE file=FindFirstFileA(pathname, &info); 72 if(info.cAlternateFileName[0]!=0) { 77 uprv_memmove(info.cFileName+(basename-pathname), info.cFileName, uprv_strlen(info.cFileName)+1); 78 uprv_memcpy(info.cFileName, pathname, basename-pathname); 80 pathname=info.cFileName;
|
/external/iptables/extensions/ |
libipt_quota.c | 66 struct xt_quota_info *info = (struct xt_quota_info *) (*match)->data; local 72 if (!parse_quota(optarg, &info->quota))
|
/external/opencore/baselibs/media_data_structures/src/ |
pv_gau.cpp | 38 info[ii] = gauElement.info[ii];
|
pv_gau.h | 73 MediaMetaInfo info[MAX_GAU_BUNDLE]; member in struct:GAU 90 Return info pointer 95 return info + i;
|
/external/opencore/codecs_v2/audio/mp3/dec/src/ |
pvmp3_mpeg2_get_scale_factors.cpp | 43 mp3Header *info, mp3 header information 122 mp3Header *info, 137 info,
|
/external/opencore/fileformats/mp4/composer/include/ |
audiosampleentry.h | 63 virtual void addDecoderSpecificInfo(PVA_FF_DecoderSpecificInfo *info) 65 _pes->addDecoderSpecificInfo(info);
|