/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
AddonPackage.java | 195 String shortDesc = String.format("%1$s by %2$s, Android API %3$s, revision %4$s [*]",
201 String longDesc = String.format(
333 return String.format("%1$s by %2$s%3$s",
344 return String.format("%1$s by %2$s, Android API %3$s, revision %4$s%5$s",
366 s += String.format("\nRevision %1$d%2$s",
371 s += String.format("\nRequires SDK Platform Android API %1$s",
407 String name2 = i == 0 ? name : String.format("%s-%d", name, i); //$NON-NLS-1$
419 String name = String.format("addon-%s-%s-%s", //$NON-NLS-1$
|
ExtraPackage.java | 155 String longDesc = String.format(
334 path = String.format("extra%08x", h); //$NON-NLS-1$
359 vendor = String.format("vendor%08x", h); //$NON-NLS-1$
423 return String.format("extra-%1$s-%2$s", //$NON-NLS-1$
435 String s = String.format("%1$s package%2$s",
448 String s = String.format("%1$s package, revision %2$d%3$s",
466 s = String.format("Extra %1$s package by %2$s", getPath(), getVendor());
470 s += String.format("\nRevision %1$d%2$s",
476 s += String.format("\nRequires tools revision %1$d", getMinToolsRevision());
480 s += String.format("\nRequires SDK Platform Android API %1$s", getMinApiLevel()); [all...] |
/sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/repository/ |
ValidateAddonXmlTest.java | 76 String.format("Regexp Assertion Failed:\nExpected: %s\nActual: %s\n",
92 String.format(
|
/sdk/swtmenubar/src-darwin/com/android/menubar/internal/ |
MenuBarEnhancerCarbon.java | 130 private void log(IMenuBarCallback callbacks, String format, Object... args) { 131 callbacks.printError(format , args);
|
/system/core/libpixelflinger/ |
buffer.cpp | 64 dst->format = src->format; 67 const GGLFormat& pixelFormat(c->formats[dst->format]); 76 switch (s->format) { 116 const GGLFormat* f = &(c->formats[s->format]); 173 const GGLFormat* f = &(c->formats[s->format]); 257 uint32_t ggl_pack_color(context_t* c, int32_t format, 260 const GGLFormat* f = &(c->formats[format]);
|
/system/media/mca/filterpacks/imageproc/java/ |
DrawRectFilter.java | 31 import android.filterfw.format.ImageFormat; 32 import android.filterfw.format.ObjectFormat;
|
/system/netd/ |
NetlinkManager.cpp | 54 int groups, int format) { 88 NetlinkHandler *handler = new NetlinkHandler(this, *sock, format);
|
/libcore/luni/src/main/java/java/util/ |
Formatter.java | 38 * Formats arguments according to a format string (like {@code printf} in C). 42 * Of these, {@link String#format} is generally the most useful. 44 * {@code format} and {@code printf} methods. 46 * <i>Format strings</i> consist of plain text interspersed with format specifiers, such 50 * <i>Format specifiers</i> (such as {@code "%s"} or {@code "%03d"} in the example) start with a 51 * {@code %} and describe how to format their corresponding argument. It includes an optional 60 * <i>Argument index</i>. Normally, each format specifier consumes the next argument to 61 * {@code format}. 66 * {@code format("%o %<d %<x", 64)} results in {@code "100 64 40"} 1008 public Formatter format(String format, Object... args) { method in class:Formatter 1035 public Formatter format(Locale l, String format, Object... args) { method in class:Formatter [all...] |
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
NativeHeapPanel.java | 224 /** static formatter object to format all numbers as #,### */ 855 mTotalMemoryLabel.setText(String.format("Total Memory: %1$s Bytes", 856 sFormatter.format(mTotalSize))); 859 mTotalMemoryLabel.setText(String.format("Zygote Memory: %1$s Bytes", 860 sFormatter.format(mTotalSize))); 863 mTotalMemoryLabel.setText(String.format("Post-zygote Memory: %1$s Bytes", 864 sFormatter.format(mTotalSize))); [all...] |
/external/elfutils/src/ |
size.c | 51 { NULL, 0, NULL, 0, N_("Output format:") }, 52 { "format", OPT_FORMAT, "FORMAT", 0, N_("Use the output format FORMAT. FORMAT can be `bsd' or `sysv'. The default is `bsd'") }, 53 { NULL, 'A', NULL, 0, N_("Same as `--format=sysv'") }, 54 { NULL, 'B', NULL, 0, N_("Same as `--format=bsd'") }, 59 { NULL, 'f', NULL, 0, N_("Similar to `--format=sysv' output but in one line") }, 106 /* The selected output format. * 113 } format; variable in typeref:enum:__anon5491 [all...] |
/external/qemu/audio/ |
paaudio.c | 279 int format; local 284 format = PA_SAMPLE_U8; 288 format = endianness ? PA_SAMPLE_S16BE : PA_SAMPLE_S16LE; 292 format = endianness ? PA_SAMPLE_S32BE : PA_SAMPLE_S32LE; 295 dolog ("Internal logic error: Bad audio format %d\n", afmt); 296 format = PA_SAMPLE_U8; 299 return format; 332 ss.format = audfmt_to_pa (as->fmt, as->endianness); 336 obt_as.fmt = pa_to_audfmt (ss.format, &obt_as.endianness); 386 ss.format = audfmt_to_pa (as->fmt, as->endianness) [all...] |
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
SharedGraphicsContext3D.cpp | 213 bool SharedGraphicsContext3D::texImage2D(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type, const void* pixels) 216 return m_context->texImage2DResourceSafe(target, level, internalformat, width, height, border, format, type); 217 return m_context->texImage2D(target, level, internalformat, width, height, border, format, type, pixels); 220 void SharedGraphicsContext3D::texSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, const void* pixels) 222 m_context->texSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels); 225 void SharedGraphicsContext3D::readPixels(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, void* data) 227 m_context->readPixels(x, y, width, height, format, type, data); 235 Texture* SharedGraphicsContext3D::createTexture(NativeImagePtr ptr, Texture::Format format, int width, int height) 241 texture = Texture::create(m_context.get(), format, width, height) [all...] |
/frameworks/base/tools/aapt/ |
ResourceTable.h | 97 const int32_t format = ResTable_map::TYPE_ANY, 121 const int32_t format = ResTable_map::TYPE_ANY); 224 Item() : isId(false), format(ResTable_map::TYPE_ANY), bagKeyId(0), evaluating(false) 230 int32_t format = ResTable_map::TYPE_ANY); 233 format(o.format), bagKeyId(o.bagKeyId), evaluating(false) { 243 format = o.format; 253 int32_t format; member in class:ResourceTable::Item 286 int32_t format = ResTable_map::TYPE_ANY [all...] |
/hardware/ti/omap4xxx/domx/omx_proxy_component/omx_video_dec/src/ |
omx_proxy_videodec.c | 352 if(pPortDef->format.video.eColorFormat == OMX_COLOR_FormatYUV420PackedSemiPlanar) 356 pPortDef->format.video.eColorFormat = HAL_NV12_PADDED_PIXEL_FORMAT; 360 pPortDef->format.video.eColorFormat = OMX_TI_COLOR_FormatYUV420PackedSemiPlanar; 415 if(pPortDef->format.video.eColorFormat == OMX_TI_COLOR_FormatYUV420PackedSemiPlanar 416 || pPortDef->format.video.eColorFormat == HAL_NV12_PADDED_PIXEL_FORMAT) 418 pPortDef->format.video.eColorFormat = OMX_COLOR_FormatYUV420PackedSemiPlanar; 568 if (sPortDef.eDomain == OMX_PortDomainVideo && sPortDef.format.video.eCompressionFormat == OMX_VIDEO_CodingUnused) 572 sPortDef.format.video.nStride = LINUX_PAGE_SIZE; 588 sPortDef.format.video.nStride = tParamStruct.nWidth; 649 0,0,sPortDef.format.video.nFrameWidth, sPortDef.format.video.nFrameHeight,NULL) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
AdtPlugin.java | 893 * @param format The format string, like for {@link String#format(String, Object...)}. 894 * @param args The arguments for the format string, like for 895 * {@link String#format(String, Object...)}. 897 public static void log(int severity, String format, Object ... args) { 898 if (format == null) { 902 String message = String.format(format, args); [all...] |
/hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/ |
OMX_VideoEncoder.c | 45 *! that is, newest first. The date format is dd-Mon-yyyy. 439 sDynamicFormat = getenv("FORMAT"); 440 /*printf("\n ** FORMAT = %s\n\n", sDynamicFormat);*/ 626 pPortDef->format.video.cMIMEType = "yuv"; 627 pPortDef->format.video.pNativeRender = NULL; 628 pPortDef->format.video.nFrameWidth = 176; 629 pPortDef->format.video.nFrameHeight = 144; 630 pPortDef->format.video.nStride = -1; 631 pPortDef->format.video.nSliceHeight = -1; 632 pPortDef->format.video.xFramerate = fToQ16(15.0) [all...] |
/external/icu4c/test/intltest/ |
numfmtst.cpp | 128 dataerrln("unable to create format object - %s", u_errorName(status)); 140 test->format(bla, result, pos, status); 149 test->format(ll, result); 151 errln("format int64_t error"); 167 virtual UnicodeString& format(double ,UnicodeString& appendTo,FieldPosition& ) const { function in class:StubNumberForamt 170 virtual UnicodeString& format(int32_t ,UnicodeString& appendTo,FieldPosition& ) const { function in class:StubNumberForamt 173 virtual UnicodeString& format(int64_t number,UnicodeString& appendTo,FieldPosition& pos) const { function in class:StubNumberForamt 174 return NumberFormat::format(number, appendTo, pos); 176 virtual UnicodeString& format(const Formattable& , UnicodeString& appendTo, FieldPosition& , UErrorCode& ) const { function in class:StubNumberForamt 189 virtual Format* clone() const {return NULL; 833 DecimalFormat* format = new DecimalFormat("00", status); local [all...] |
/bionic/libc/kernel/common/linux/ |
msm_mdp.h | 65 uint32_t format; member in struct:mdp_img
|
/bootable/recovery/ |
common.h | 36 void ui_print(const char *fmt, ...) __attribute__((format(printf, 1, 2))); 106 // means to format all but the last
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/experiments/ |
BiasExperiment.java | 55 setReport(String.format(getString(R.string.aq_bias_report),
|
/cts/tests/tests/os/src/android/os/cts/ |
BuildVersionTest.java | 53 * Verifies {@link Build.FINGERPRINT} follows expected format: 62 Log.i(LOG_TAG, String.format("Testing fingerprint %s", fingerprint)); 67 assertEquals("Build fingerprint does not match expected format", 6, fingerprintSegs.length);
|
/cts/tools/dex-tools/src/dex/reader/ |
DexAnnotationImpl.java | 71 builder.append(formatter.format(encodedAnnotation.getTypeName()));
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/command/ |
CtsConsole.java | 54 printLine(String.format("Android CTS %s", CtsBuildProvider.CTS_BUILD_VERSION)); 119 commandHelp.put(ADD_PATTERN, String.format( 204 printLine(String.format("%d\t\t%d\t%d\t%d\t\t%s\t%s", result.getId(), 230 printLine(String.format("Invalid cts install: %s", e.getMessage()));
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
JarHostTest.java | 167 Log.i(LOG_TAG, String.format("Running %s test package from jar, contains %d tests.", 268 Log.e(LOG_TAG, String.format("Class '%s' from jar '%s' is not a Test", 300 Log.e(LOG_TAG, String.format("Failed to load test class '%s' from jar '%s'", 327 throw new IllegalArgumentException(String.format(
|
/cts/tools/utils/ |
VogarUtils.java | 44 String fullTestName = String.format("%s#%s", testClassName, testMethodName);
|