/external/llvm/tools/llvm-prof/ |
llvm-prof.cpp | 31 #include "llvm/Support/Format.h" 202 outs() << format("%3d", i+1) << ". " 203 << format("%5.2g", FunctionCounts[i].second) << "/" 204 << format("%g", TotalExecutions) << " " 228 outs() << format("%3d", i+1) << ". " 229 << format("%5g", Counts[i].second/(double)TotalExecutions*100) << "% " 230 << format("%5.0f", Counts[i].second) << "/" 231 << format("%g", TotalExecutions) << "\t"
|
/external/srec/portable/src/ |
PFileWrap.c | 209 ESR_ReturnCode PFileVfprintf ( PFile *self, int *result, const LCHAR *format, va_list args ) 213 bytes_printed = vfprintf ( (FILE *)self, format, args ); 436 int pfprintf ( PFile *stream, const LCHAR *format, ... ) 442 va_start ( args, format ); 443 rc = PFileVfprintf ( stream, &result, format, args ); 453 int pvfprintf ( PFile *stream, const LCHAR *format, va_list argptr ) 458 rc = PFileVfprintf ( stream, &result, format, argptr );
|
/frameworks/base/media/libmedia/ |
IAudioFlinger.cpp | 36 FORMAT, 87 uint32_t format, 102 data.writeInt32(format); 134 uint32_t format, 147 data.writeInt32(format); 191 virtual uint32_t format(int output) const function in class:android::BpAudioFlinger 196 remote()->transact(FORMAT, data, &reply); 346 virtual size_t getInputBufferSize(uint32_t sampleRate, int format, int channelCount) 351 data.writeInt32(format); 367 uint32_t format = pFormat ? *pFormat : 0 local 440 uint32_t format = pFormat ? *pFormat : 0; local 681 int format = data.readInt32(); local 702 int format = data.readInt32(); local 828 int format = data.readInt32(); local 837 uint32_t format = data.readInt32(); local 882 uint32_t format = data.readInt32(); local [all...] |
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/ |
DisplayGraph.java | 144 seriesFullName = String.format("%1$s / %2$s", seriesLabel, 148 seriesFullName = String.format("%1$s", seriesLabel); 151 seriesFullName = String.format("%1$s / %2$s: %3$s", seriesLabel, 217 String seriesFullName = String.format("[%1$s:%2$s]", 343 return String.format("%1$s (%2$d)", 408 chartDesc = String.format("%1$s / %2$s", 416 return String.format("%1$s - %2$s", mName, chartDesc);
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
Archive.java | 321 return String.format("%1$s%2$s%3$s",
347 return String.format("Archive for %1$s", getOsDescription());
357 sizeStr = String.format("%d Bytes", size);
359 sizeStr = String.format("%d KiB", Math.round(size / 1024.0));
361 sizeStr = String.format("%.1f MiB",
364 sizeStr = String.format("%.1f GiB",
368 return String.format("%1$s\nSize: %2$s\nSHA1: %3$s",
|
/frameworks/base/media/jni/ |
android_mtp_MtpDatabase.cpp | 97 MtpObjectFormat format, 105 MtpObjectFormat format, 109 MtpObjectFormat format, 113 MtpObjectFormat format, 120 virtual MtpObjectPropertyList* getSupportedObjectProperties(MtpObjectFormat format); 140 uint32_t format, uint32_t property, 164 MtpObjectFormat format); 221 MtpObjectFormat format, 229 pathStr, (jint)format, (jint)parent, (jint)storage, 239 MtpObjectFormat format, bool succeeded) 788 MtpObjectFormat format; local 817 MtpObjectFormat format; local [all...] |
/frameworks/base/core/tests/hosttests/src/android/content/pm/ |
PackageManagerHostTestUtils.java | 257 String cmd = String.format(replace ? "pm install -r -l \"%1$s\"" : 277 String lsGrep = executeShellCommand(String.format("ls %s", destPath)); 296 String lsResult = executeShellCommand(String.format("ls %s", destPath)); 313 String pkgGrep = executeShellCommand(String.format("pm path %s", packageName)); 474 Log.i(LOG_TAG, String.format("adb shell %s", command)); 478 Log.i(LOG_TAG, String.format("Result: %s", output)); 524 Log.i(LOG_TAG, String.format("Result: %s", output)); 589 Log.w(LOG_TAG, String.format("%s#%s failed: %s", test.getClassName(), 599 Log.w(LOG_TAG, String.format("test run failed: %s", errorMessage)); [all...] |
/frameworks/media/libvideoeditor/vss/stagefrightshells/src/ |
VideoEditorAudioEncoder.cpp | 46 const sp<MetaData> &format); 74 VideoEditorAudioEncoderSource(const sp<MetaData> &format); 83 const sp<MetaData> &format) { 87 new VideoEditorAudioEncoderSource(format); 93 const sp<MetaData> &format): 98 mEncFormat(format) { 262 M4OSA_ERR VideoEditorAudioEncoder_init(M4ENCODER_AudioFormat format, 268 LOGV(" VideoEditorAudioEncoder_init begin: format %d", format); 273 pEncoderContext->mFormat = format; [all...] |
/bionic/libc/bionic/ |
malloc_debug_leak.c | 71 #define debug_log(format, ...) \ 72 __libc_android_log_print(ANDROID_LOG_DEBUG, "malloc_leak_check", (format), ##__VA_ARGS__ ) 73 #define error_log(format, ...) \ 74 __libc_android_log_print(ANDROID_LOG_ERROR, "malloc_leak_check", (format), ##__VA_ARGS__ ) 75 #define info_log(format, ...) \ 76 __libc_android_log_print(ANDROID_LOG_INFO, "malloc_leak_check", (format), ##__VA_ARGS__ ) 294 static void assert_log_message(const char* format, ...) 302 va_start(args, format); 304 format, args);
|
malloc_debug_qemu.c | 290 #define debug_log(format, ...) \ 293 (format), ##__VA_ARGS__ ); \ 295 qemu_log(ANDROID_LOG_DEBUG, (format), ##__VA_ARGS__ ); \ 299 #define error_log(format, ...) \ 302 (format), ##__VA_ARGS__ ); \ 304 qemu_log(ANDROID_LOG_ERROR, (format), ##__VA_ARGS__ ); \ 308 #define info_log(format, ...) \ 311 (format), ##__VA_ARGS__ ); \ 313 qemu_log(ANDROID_LOG_INFO, (format), ##__VA_ARGS__ ); \ 512 * fmt + rest - Message format and parameters [all...] |
/external/icu4c/i18n/ |
choicfmt.cpp | 20 * 08/06/97 nos removed overloaded constructor, fixed 'format(array)' 82 // format strings for each limit. 139 ChoiceFormat::operator==(const Format& that) const 145 // Checks the limits, the corresponding format string and LE or LT flags. 515 // Sets the limit and format arrays. 525 // Sets the limit and format arrays. 603 // Gets the format array. 614 // a double. The returned format string may differ 618 ChoiceFormat::format(int64_t number, function in class:ChoiceFormat 622 return format((double) number, appendTo, status) 631 ChoiceFormat::format(int32_t number, function in class:ChoiceFormat 642 ChoiceFormat::format(double number, function in class:ChoiceFormat 673 ChoiceFormat::format(const Formattable* objs, function in class:ChoiceFormat 701 ChoiceFormat::format(const Formattable& obj, function in class:ChoiceFormat [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/photon/ |
SDL_phyuv.c | 71 SDL_Overlay* ph_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface* display) 91 overlay->format = format; 147 if (overlay->hwdata->caps.format==format) 167 SDL_SetError("No available video ports for requested format\n"); 172 overlay->hwdata->format = format; 173 overlay->hwdata->props.format = format; [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/ |
SDL_gsyuv.c | 75 SDL_Overlay *GS_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) 101 /* Double-check the requested format. For simplicity, we'll only 104 switch (format) { 107 /* Supported planar YUV format */ 110 SDL_SetError("Unsupported YUV format"); 123 overlay->format = format; 151 switch (format) { 182 bpp = this->screen->format->BytesPerPixel; 334 switch (overlay->format) { [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
SDL_x11yuv.c | 93 SDL_Overlay *X11_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) 106 /* Look for the XVideo extension with a valid port for this format */ 144 if ( (Uint32)formats[j].id == format ) { 162 switch (format) { 193 SDL_SetError("No available video ports for requested format"); 231 overlay->format = format; 252 hwdata->image = SDL_NAME(XvShmCreateImage)(GFX_Display, xv_port, format, 259 hwdata->image = SDL_NAME(XvShmCreateImage)(GFX_Display, xv_port, format, 295 hwdata->image = SDL_NAME(XvCreateImage)(GFX_Display, xv_port, format, [all...] |
/frameworks/base/core/java/android/text/format/ |
Time.java | 17 package android.text.format; 309 * Print the current value given the format string provided. See man 312 * @param format a string containing the desired format. 315 public String format(String format) { method in class:Time 391 return format1(format); 395 native private String format1(String format); 398 * Return the current time in YYYYMMDDTHHMMSS<tz> format 404 * Parses a date-time string in either the RFC 2445 format or an abbreviate [all...] |
/frameworks/base/core/java/android/view/ |
Window.java | 647 * Set the format of window, as per the PixelFormat types. This overrides 648 * the default format that is selected by the Window based on its 651 * @param format The new window format (see PixelFormat). Use 653 * the format. 657 public void setFormat(int format) { 659 if (format != PixelFormat.UNKNOWN) { 660 attrs.format = format; 663 attrs.format = mDefaultWindowFormat [all...] |
Surface.java | 156 * pixel format is set to translucent. This can be useful if an 245 int pid, int display, int w, int h, int format, int flags) 251 init(s,pid,null,display,w,h,format,flags); 256 int pid, String name, int display, int w, int h, int format, int flags) 262 init(s,pid,name,display,w,h,format,flags); 511 int pid, String name, int display, int w, int h, int format, int flags)
|
/hardware/msm7k/libcopybit/ |
copybit.cpp | 119 /** convert COPYBIT_FORMAT to MDP format */ 120 static int get_format(int format) { 121 switch (format) { 139 img->format = get_format(rhs->format); 145 if (img->format == MDP_RGBA_8888) { 147 img->format = MDP_BGRA_8888; 222 l->req[i].src.format, 229 l->req[i].dst.format, 356 switch (src->format) { [all...] |
/external/dbus/dbus/ |
dbus-internals.h | 42 void _dbus_warn (const char *format, 45 void _dbus_warn_check_failed (const char *format, 97 const char *format,...) _DBUS_GNUC_PRINTF (4, 5); 100 void _dbus_verbose_real (const char *format, 113 # define _dbus_verbose(format...)
|
/external/ipsec-tools/ |
main.c | 207 void do_plog(int level, char *format, ...) 216 va_start(ap, format); 217 __android_log_vprint(levels[level], "racoon", format, ap); 223 va_start(ap, format); 224 vfprintf(stderr, format, ap);
|
/external/jhead/ |
gpsinfo.c | 77 int format = GpsTags[i].Format; local 78 if (format == 0) { 79 printf("tag %s format not defined", GpsTags[i].Desc); 95 int format = GpsTags[i].Format; local 96 if (format == 0) { 97 printf("tag %s format not defined", GpsTags[i].Desc); 100 return format; 143 unsigned Tag, Format, Components [all...] |
/external/libxml2/ |
HTMLtree.c | 381 int format); 388 * @format: should formatting spaces been added 396 int format) { 421 htmlNodeDumpFormatOutput(outbuf, doc, cur, NULL, format); 451 * @format: should formatting spaces been added 461 xmlNodePtr cur, const char *encoding, int format) { 493 htmlNodeDumpFormatOutput(buf, doc, cur, encoding, format); 518 * @format: should formatting spaces been added 524 htmlDocDumpMemoryFormat(xmlDocPtr cur, xmlChar**mem, int *size, int format) { 581 htmlDocContentDumpFormatOutput(buf, cur, NULL, format); [all...] |
/external/openssl/apps/ |
apps.h | 246 X509 *load_cert(BIO *err, const char *file, int format, 248 EVP_PKEY *load_key(BIO *err, const char *file, int format, int maybe_stdin, 250 EVP_PKEY *load_pubkey(BIO *err, const char *file, int format, int maybe_stdin, 252 STACK_OF(X509) *load_certs(BIO *err, const char *file, int format, 254 STACK_OF(X509_CRL) *load_crls(BIO *err, const char *file, int format, 338 #define FORMAT_PEMRSA 9 /* PEM RSAPubicKey format */ 339 #define FORMAT_ASN1RSA 10 /* DER RSAPubicKey format */ 340 #define FORMAT_MSBLOB 11 /* MS Key blob format */ 341 #define FORMAT_PVK 12 /* MS PVK file format */
|
/external/svox/pico/lib/ |
picodbg.c | 92 /* Current output format */ 101 /* Buffer to format tracing messages */ 318 void picodbg_setOutputFormat(unsigned int format) 320 logFormat = format; 324 const char *picodbg_varargs(const char *format, ...) 329 va_start(argptr, format); 331 len = vsprintf(msgbuf, format, argptr); 347 /* compose output format string */
|
/external/webkit/Source/JavaScriptCore/wtf/ |
Assertions.h | 126 /* WTF logging functions can process %@ in the format string to log a NSObject* but the printf format attribute 127 emits a warning when %@ is used in the format string. Until <rdar://problem/5195437> is resolved we can't include 150 WTF_EXPORT_PRIVATE void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...) WTF_ATTRIBUTE_PRINTF(5, 6); 153 WTF_EXPORT_PRIVATE void WTFReportFatalError(const char* file, int line, const char* function, const char* format, ...) WTF_ATTRIBUTE_PRINTF(4, 5); 154 WTF_EXPORT_PRIVATE void WTFReportError(const char* file, int line, const char* function, const char* format, ...) WTF_ATTRIBUTE_PRINTF(4, 5); 155 WTF_EXPORT_PRIVATE void WTFLog(WTFLogChannel*, const char* format, ...) WTF_ATTRIBUTE_PRINTF(2, 3); 156 WTF_EXPORT_PRIVATE void WTFLogVerbose(const char* file, int line, const char* function, WTFLogChannel*, const char* format, ...) WTF_ATTRIBUTE_PRINTF(5, 6);
|