/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
JmeFormatter.java | 51 private MessageFormat format; field in class:JmeFormatter 57 format = new MessageFormat("{0,time}"); 61 public String format(LogRecord record) { method in class:JmeFormatter 67 format.format(args, store, null);
|
/external/llvm/tools/llvm-readobj/ |
llvm-readobj.cpp | 14 // Flags should be similar to readelf where supported, but the output format 18 // Output should be specialized for each format where appropriate. 30 #include "llvm/Support/Format.h" 42 outs() << format(" %-32s", (const char*)"Name") 43 << format(" %-4s", (const char*)"Type") 44 << format(" %-16s", (const char*)"Address") 45 << format(" %-16s", (const char*)"Size") 46 << format(" %-16s", (const char*)"FileOffset") 47 << format(" %-26s", (const char*)"Flags") 52 outs() << format(" %-24s", (const char*)"Name" [all...] |
/external/qemu/android/utils/ |
debug.h | 87 extern void dprint( const char* format, ... ); 88 extern void dprintn( const char* format, ... ); 89 extern void dprintnv( const char* format, va_list args ); 90 extern void dwarning( const char* format, ... ); 91 extern void derror( const char* format, ... );
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowColorMatrix.java | 64 String format = String.format("%.2f", f); local 65 format = format.replace(".00", ""); 66 floats.add(format);
|
/frameworks/base/libs/hwui/ |
PixelBuffer.h | 59 * Creates a new PixelBuffer object with the specified format and 66 static PixelBuffer* create(GLenum format, uint32_t width, uint32_t height, 73 * Returns the format of this render buffer. 143 * Returns the number of bytes per pixel in the specified format. 149 static uint32_t formatSize(GLenum format) { 150 switch (format) { 161 * Creates a new render buffer in the specified format and dimensions. 162 * The format must be GL_ALPHA or GL_RGBA. 164 PixelBuffer(GLenum format, uint32_t width, uint32_t height): 165 mFormat(format), mWidth(width), mHeight(height), mAccessMode(kAccessMode_None) [all...] |
/frameworks/base/native/graphics/jni/ |
bitmap.cpp | 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->format = ANDROID_BITMAP_FORMAT_A_8; 51 info->format = ANDROID_BITMAP_FORMAT_NONE;
|
/frameworks/wilhelm/tests/sandbox/ |
configbq.c | 95 PCM *format; local 98 for (format = formats; format->numChannels; ++format) { 100 printf("Channels: %d, sample rate: %u, bits: %u\n", format->numChannels, 101 format->milliHz / 1000, format->bitsPerSample); 109 format_pcm.numChannels = format->numChannels; 110 format_pcm.samplesPerSec = format->milliHz; 111 format_pcm.bitsPerSample = format->bitsPerSample [all...] |
/libcore/luni/src/test/java/libcore/javax/security/auth/x500/ |
X500PrincipalTest.java | 54 * Confirm DRLCertFactory uses a non-hex format for T61String encoding: http://b/2102191 78 for (String format : formats) { 79 assertEquals(certBC.getSubjectX500Principal().getName(format), 80 certDRL.getSubjectX500Principal().getName(format)); 81 assertEquals(certBC.getIssuerX500Principal().getName(format), 82 certDRL.getIssuerX500Principal().getName(format));
|
/external/qemu/distrib/sdl-1.2.15/test/ |
testoverlay2.c | 118 p+=s->format->BytesPerPixel; 151 p+=s->format->BytesPerPixel; 184 p+=s->format->BytesPerPixel; 220 p+=s->format->BytesPerPixel; 256 p+=s->format->BytesPerPixel; 271 fprintf(stderr, " -format <fmt> (one of the: YV12, IYUV, YUY2, UYVY, YVYU)\n"); 329 if (strcmp(argv[1], "-format") == 0) 345 fprintf(stderr, "The -format option %s is not recognized, see help for info.\n", argv[2]); 353 fprintf(stderr, "The -format option requires an argument, default is YUY2.\n"); 439 SDL_PixelFormat format; local [all...] |
/cts/tools/dasm/src/dasm/ |
DopInfo.java | 124 InsnFormat format = dop.getFormat(); local 126 if (format instanceof Form10x) return ""; 127 if (format instanceof Form12x) return ARG_REG_REG; 128 if (format instanceof Form11n) return ARG_REG_LITERAL; 129 if (format instanceof Form11x) return ARG_REGISTER; 130 if (format instanceof Form10t || format instanceof Form20t) 132 if (format instanceof Form22x) return ARG_REG_REG; 133 if (format instanceof Form21t) return ARG_REG_ADDRESS; 134 if (format instanceof Form21s) return ARG_REG_LITERAL [all...] |
/external/icu4c/test/intltest/ |
dtfmapts.cpp | 156 // ======= Test various format() methods 159 logln("Testing various format() methods"); 168 res1 = fr->format(d, res1, pos1, status); 170 errln("ERROR: format() failed (French)"); 174 res2 = it->format(d, res2, pos2); 177 res3 = de->format(d, res3); 273 * Test hiding of parse() and format() APIs in the Format hierarchy. 291 // DateFormat calling Format API 296 dateFmt->format(dateObj, str, status) [all...] |
/external/quake/quake/src/QW/client/ |
snd_win.c | 187 WAVEFORMATEX format, pformat;
local 199 memset (&format, 0, sizeof(format));
200 format.wFormatTag = WAVE_FORMAT_PCM;
201 format.nChannels = shm->channels;
202 format.wBitsPerSample = shm->samplebits;
203 format.nSamplesPerSec = shm->speed;
204 format.nBlockAlign = format.nChannels
205 *format.wBitsPerSample / 8; 422 WAVEFORMATEX format; local [all...] |
/external/quake/quake/src/WinQuake/ |
snd_win.cpp | 189 WAVEFORMATEX format, pformat;
local 201 memset (&format, 0, sizeof(format));
202 format.wFormatTag = WAVE_FORMAT_PCM;
203 format.nChannels = shm->channels;
204 format.wBitsPerSample = shm->samplebits;
205 format.nSamplesPerSec = shm->speed;
206 format.nBlockAlign = format.nChannels
207 *format.wBitsPerSample / 8; 424 WAVEFORMATEX format; local [all...] |
/external/v8/src/mips/ |
disasm-mips.cc | 124 void Format(Instruction* instr, const char* format); 317 int Decoder::FormatRegister(Instruction* instr, const char* format) { 318 ASSERT(format[0] == 'r'); 319 if (format[1] == 's') { // 'rs: Rs register. 323 } else if (format[1] == 't') { // 'rt: rt register. 327 } else if (format[1] == 'd') { // 'rd: rd register. 339 int Decoder::FormatFPURegister(Instruction* instr, const char* format) { 340 ASSERT(format[0] == 'f'); 341 if (format[1] == 's') { // 'fs: fs register [all...] |
/external/icu4c/samples/date/ |
date.c | 47 static void date(UDate when, const UChar *tz, UDateFormatStyle style, const char *format, UErrorCode *status); 48 static UDate getWhen(const char *millis, const char *seconds, const char *format, UDateFormatStyle style, const char *parse, const UChar *tz, UErrorCode *status); 72 const char *format = NULL; local 98 /* display date in long format */ 102 /* display date in medium format */ 106 /* display date in short format */ 110 else if(strcmp(arg, "-F") == 0 || strcmp(arg, "--format") == 0) { 113 format = argv[optInd]; 161 when = getWhen(millis, seconds, format, style, parse, tz, &status); 163 format = FORMAT_MILLIS; /* output in millis * [all...] |
/device/lge/mako/camera/hdr/include/ |
morpho_noise_reduction.h | 53 * @param[in] format ???t?H?[?}?b?g??????
60 const char *format);
117 * @param[out] format ???t?H?[?}?b?g??????i?[?????
124 char *format,
159 * @param[in] format ???t?H?[?}?b?g??????
165 const char *format);
|
/external/bison/lib/ |
fprintf.c | 36 fprintf (FILE *fp, const char *format, ...) 44 va_start (args, format); 45 output = vasnprintf (buf, &lenbuf, format, args);
|
snprintf.c | 37 snprintf (char *str, size_t size, const char *format, ...) 44 va_start (args, format); 45 output = vasnprintf (str, &lenbuf, format, args);
|
sprintf.c | 40 sprintf (char *str, const char *format, ...) 57 va_start (args, format); 58 output = vasnprintf (str, &lenbuf, format, args);
|
/external/clang/utils/CIndex/ |
completion_logger_server.py | 21 print "Listing on {0}:{1} and logging to '{2}'".format(host, port, sys.argv[3]) 33 f.write("\"time\": \"{0}\"".format(datetime.datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S'))) 34 f.write(", \"sender\": \"{0}\" ".format(addr[0]))
|
/external/valgrind/main/include/ |
pub_tool_libcassert.h | 42 #define tl_assert2(expr, format, args...) \ 47 format, ##args), \ 60 const HChar* format, ... );
|
/external/webkit/Source/WebCore/css/ |
CSSFontFaceSrcValue.h | 53 const String& format() const { return m_format; } function in class:WebCore::CSSFontFaceSrcValue 56 void setFormat(const String& format) { m_format = format; }
|
/external/webkit/Source/WebCore/platform/graphics/gstreamer/ |
ImageGStreamerQt.cpp | 33 GstVideoFormat format; local 34 if (!gst_video_format_parse_caps(caps, &format, &width, &height)) { 41 QImage::Format imageFormat; 42 if (format == GST_VIDEO_FORMAT_RGB) 50 ImageGStreamer::ImageGStreamer(GstBuffer*& buffer, IntSize size, QImage::Format imageFormat)
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
FontCustomPlatformDataQt.cpp | 64 bool FontCustomPlatformData::supportsFormat(const String& format) 66 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype");
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
FontCustomPlatformDataCairo.cpp | 64 bool FontCustomPlatformData::supportsFormat(const String& format) 66 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype");
|