/external/sfntly/cpp/src/sfntly/table/bitmap/ |
bitmap_glyph.cc | 29 int32_t format) { 32 builder.Attach(Builder::CreateGlyphBuilder(data, format)); 39 BitmapGlyph::BitmapGlyph(ReadableFontData* data, int32_t format) 40 : SubTable(data), format_(format) { 51 int32_t format) { 53 switch (format) { 61 builder = new SimpleBitmapGlyph::Builder(data, format); 65 builder = new CompositeBitmapGlyph::Builder(data, format); 71 BitmapGlyph::Builder::Builder(WritableFontData* data, int32_t format) 72 : SubTable::Builder(data), format_(format) { [all...] |
/external/valgrind/main/include/ |
pub_tool_libcprint.h | 38 extern UInt VG_(sprintf) ( Char* buf, const HChar* format, ... ) 41 extern UInt VG_(vsprintf) ( Char* buf, const HChar* format, va_list vargs ) 45 const HChar *format, ... ) 49 const HChar *format, va_list vargs ) 84 extern UInt VG_(printf) ( const HChar *format, ... ) 86 extern UInt VG_(vprintf) ( const HChar *format, va_list vargs ) 89 extern UInt VG_(printf_xml) ( const HChar *format, ... ) 92 extern UInt VG_(vprintf_xml) ( const HChar *format, va_list vargs ) 99 const HChar* format, va_list vargs ); 101 extern UInt VG_(message)( VgMsgKind kind, const HChar* format, ... [all...] |
/bionic/libc/bionic/ |
__vsnprintf_chk.cpp | 50 const char *format, 57 return vsnprintf(dest, supplied_size, format, va); 76 const char *format, ...) 81 va_start(va, format); 83 dest_len_from_compiler, format, va);
|
__vsprintf_chk.cpp | 49 const char *format, 52 int ret = vsnprintf(dest, dest_len_from_compiler, format, va); 76 const char *format, ...) 81 va_start(va, format); 83 dest_len_from_compiler, format, va);
|
fdprintf.c | 34 int vfdprintf(int fd, const char * __restrict format, __va_list ap) 38 ret = vasprintf(&buf, format, ap); 48 int fdprintf(int fd, const char * __restrict format, ...) 53 va_start(ap, format); 54 ret = vfdprintf(fd, format, ap);
|
/external/linux-tools-perf/util/ |
debug.h | 11 int dump_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2))); 17 static inline int ui_helpline__show_help(const char *format __used, va_list ap __used) 34 int ui_helpline__show_help(const char *format, va_list ap); 38 void ui__warning(const char *format, ...) __attribute__((format(printf, 1, 2)));
|
/external/chromium_org/cc/resources/ |
resource.h | 18 Resource(unsigned id, gfx::Size size, GLenum format) 21 format_(format) {} 25 GLenum format() const { return format_; } function in class:cc::Resource 29 static size_t BytesPerPixel(GLenum format); 30 static size_t MemorySizeBytes(gfx::Size size, GLenum format); 34 void set_dimensions(gfx::Size size, GLenum format) { 36 format_ = format;
|
/frameworks/av/libvideoeditor/osal/src/ |
M4OSA_CharStar.c | 307 M4OSA_Char *format, ...) 326 "M4OSA_Char* %x)",pStrOut,strOutMaxLen,format); 329 M4OSA_DEBUG_IF2(M4OSA_NULL == format, M4ERR_PARAMETER, 332 va_start(marker,format); 335 pTemp = format; 387 err= vsnprintf((char *)pStrOut, (size_t)strOutMaxLen + 1, (const char *)format, marker); 401 newFormatLength = strlen((const char *)format) + 1; 412 /* copy format to newFormat, replacing %[flags][width][.precision]ll[conversion] 414 while(*format) 416 nbChar = strcspn((const char *)format, "%") [all...] |
/hardware/ti/omap3/omx/system/src/openmax_il/common/inc/ |
OMX_TI_Debug.h | 44 *! that is, newest first. The date format is dd-Mon-yyyy. 90 Output format is: 285 * format, list - debug message 290 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \ 294 format OMX_DBG_FN OMX_DBG_LINE, ##list); \ 297 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \ 302 format OMX_DBG_FN OMX_DBG_LINE, ##list); \ 306 format OMX_DBG_FN OMX_DBG_LINE, ##list); \ 312 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \ 317 format OMX_DBG_FN OMX_DBG_LINE, ##list); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format.h | 42 * Describe how to pack/unpack pixels into/from the prescribed format. 137 enum pipe_format format; member in struct:util_format_description 164 * Whether the pixel format can be described as a bitfield structure. 389 util_format_description(enum pipe_format format); 393 * Format query functions. 397 util_format_name(enum pipe_format format) 399 const struct util_format_description *desc = util_format_description(format); 410 util_format_short_name(enum pipe_format format) 412 const struct util_format_description *desc = util_format_description(format); 423 * Whether this format is plain, see UTIL_FORMAT_LAYOUT_PLAIN for more info [all...] |
u_format_pack.py | 33 * Pixel format packing and unpacking functions. 43 def generate_format_type(format): 44 '''Generate a structure that describes the format.''' 46 assert format.layout == PLAIN 48 print 'union util_format_%s {' % format.short_name() 50 if format.block_size() in (8, 16, 32, 64): 51 print ' uint%u_t value;' % (format.block_size(),) 54 for channel in format.channels: 59 for channel in format.channels: 102 def bswap_format(format) [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format.h | 42 * Describe how to pack/unpack pixels into/from the prescribed format. 137 enum pipe_format format; member in struct:util_format_description 164 * Whether the pixel format can be described as a bitfield structure. 389 util_format_description(enum pipe_format format); 393 * Format query functions. 397 util_format_name(enum pipe_format format) 399 const struct util_format_description *desc = util_format_description(format); 410 util_format_short_name(enum pipe_format format) 412 const struct util_format_description *desc = util_format_description(format); 423 * Whether this format is plain, see UTIL_FORMAT_LAYOUT_PLAIN for more info [all...] |
u_format_pack.py | 33 * Pixel format packing and unpacking functions. 43 def generate_format_type(format): 44 '''Generate a structure that describes the format.''' 46 assert format.layout == PLAIN 48 print 'union util_format_%s {' % format.short_name() 50 if format.block_size() in (8, 16, 32, 64): 51 print ' uint%u_t value;' % (format.block_size(),) 54 for channel in format.channels: 59 for channel in format.channels: 102 def bswap_format(format) [all...] |
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
DecimalFormatTest.java | 354 form.format(12.3); 406 form.format(12.3); 457 form.format(new Object(), new StringBuffer(), new FieldPosition(0)); 463 form.format(null, new StringBuffer(), new FieldPosition(0)); 472 form.format(new Double(1.9), null, new FieldPosition(0)); 479 form.format(new Double(1.3), new StringBuffer(), null); 486 form.format(new Double(1.4), null, null); 493 form.format(new Object(), null, null); 501 DecimalFormat format = (DecimalFormat) NumberFormat local 504 // format maxLon 688 DecimalFormat format = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local 700 DecimalFormat format = new DecimalFormat(); local 705 DecimalFormat format = new DecimalFormat(); local 710 DecimalFormat format = new DecimalFormat(); local 715 DecimalFormat format = new DecimalFormat(); local 720 DecimalFormat format = new DecimalFormat(); local 736 DecimalFormat format = new DecimalFormat("'$'0000.0000"); local 747 DecimalFormat format = new DecimalFormat("#.#"); local 771 DecimalFormat format = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local 1130 DecimalFormat format = (DecimalFormat) NumberFormat local 1274 DecimalFormat format = (DecimalFormat) NumberFormat local 1377 DecimalFormat format = new DecimalFormat(); local 1577 DecimalFormat format = (DecimalFormat) DecimalFormat.getInstance(); local 1590 DecimalFormat format = (DecimalFormat) DecimalFormat.getInstance(); local 1604 DecimalFormat format = (DecimalFormat)DecimalFormat.getInstance(); local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
videocommon.h | 103 // 1 Primary Compressed YUV format. 130 // 1 Auxiliary compressed YUV format set aside for capturer. 185 explicit VideoFormat(const VideoFormatPod& format) { 186 Construct(format.width, format.height, format.interval, format.fourcc); 206 bool operator==(const VideoFormat& format) const { 207 return width == format.width && height == format.height & [all...] |
/external/chromium_org/third_party/angle_dx11/src/common/ |
debug.cpp | 18 static void output(bool traceFileDebugOnly, PerfOutputFunction perfFunc, const char *format, va_list vararg) 24 int len = vsprintf_s(message, format, vararg); 53 vfprintf(file, format, vararg); 59 void trace(bool traceFileDebugOnly, const char *format, ...) 62 va_start(vararg, format); 64 output(traceFileDebugOnly, NULL, format, vararg); 66 output(traceFileDebugOnly, D3DPERF_SetMarker, format, vararg); 81 ScopedPerfEventHelper::ScopedPerfEventHelper(const char* format, ...) 91 va_start(vararg, format); 92 output(true, reinterpret_cast<PerfOutputFunction>(D3DPERF_BeginEvent), format, vararg) [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
DecimalFormatTest.java | 31 assertEquals("1E4", df.format(12345.)); 36 assertEquals("1-useless-api-4", df.format(12345.)); 43 assertEquals("-0", df.format(-0.2)); 45 assertEquals("-0.2", df.format(-0.2)); 56 assertEquals(309, numberFormat.format(123).length()); 57 assertEquals(309, numberFormat.format(BigInteger.valueOf(123)).length()); 64 assertEquals("17%", pf.format(BigDecimal.valueOf(0.17))); 124 assertEquals(df.format(BigDecimal.valueOf(0.16)), 125 df.format(BigDecimal.valueOf(0.16).doubleValue())); 126 assertEquals(df.format(BigDecimal.valueOf(0.0293)) [all...] |
OldNumberFormatTest.java | 33 DecimalFormat format = (DecimalFormat) NumberFormat.getIntegerInstance(Locale.US); local 34 assertEquals("#,##0", format.toPattern()); 35 assertEquals("-36", format.format(-35.76)); 36 assertEquals(new Long(-36), format.parse("-36")); 37 assertEquals(new Long(-36), format.parseObject("-36")); 38 assertEquals(0, format.getMaximumFractionDigits()); 39 assertTrue(format.isParseIntegerOnly()); 43 format = (DecimalFormat) NumberFormat.getIntegerInstance(chLocale); 44 assertEquals("#,##0", format.toPattern()) 62 NumberFormat format = NumberFormat.getInstance(); local 74 NumberFormat format = NumberFormat.getInstance(new Locale("hu", "HU")); local 280 NumberFormat format = NumberFormat.getCurrencyInstance(); local 302 NumberFormat format = NumberFormat.getCurrencyInstance(usLocale); local 328 NumberFormat format = NumberFormat.getInstance(); local 348 NumberFormat format = NumberFormat.getInstance(de_CH); local 366 NumberFormat format = NumberFormat.getNumberInstance(); local 386 NumberFormat format = NumberFormat.getNumberInstance(deLocale); local 403 NumberFormat format = NumberFormat.getPercentInstance(); local 424 NumberFormat format = NumberFormat.getPercentInstance(csLocale); local 809 public StringBuffer format(double number, StringBuffer toAppendTo, method in class:OldNumberFormatTest.MyNumberFormat 820 public StringBuffer format(long number, StringBuffer toAppendTo, method in class:OldNumberFormatTest.MyNumberFormat [all...] |
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/ |
renderer11_utils.h | 34 DXGI_FORMAT ConvertRenderbufferFormat(GLenum format); 35 DXGI_FORMAT ConvertTextureFormat(GLenum format); 41 GLenum ConvertBackBufferFormat(DXGI_FORMAT format); 42 GLenum ConvertDepthStencilFormat(DXGI_FORMAT format); 43 GLenum ConvertRenderbufferFormat(DXGI_FORMAT format); 44 GLenum ConvertTextureInternalFormat(DXGI_FORMAT format); 66 size_t ComputePixelSizeBits(DXGI_FORMAT format); 67 size_t ComputeBlockSizeBits(DXGI_FORMAT format); 69 bool IsCompressed(DXGI_FORMAT format); 70 unsigned int GetTextureFormatDimensionAlignment(DXGI_FORMAT format); [all...] |
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
SimpleFrameManager.java | 37 public Frame newFrame(FrameFormat format) { 38 return createNewFrame(format); 42 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) { 44 switch(format.getTarget()) { 46 GLFrame glFrame = new GLFrame(format, this, bindingType, bindingId); 54 + FrameFormat.targetToString(format.getTarget()) + "!"); 59 private Frame createNewFrame(FrameFormat format) { 61 switch(format.getTarget()) { 63 result = new SimpleFrame(format, this); 67 result = new NativeFrame(format, this) [all...] |
/external/clang/unittests/Format/ |
FormatTest.cpp | 1 //===- unittest/Format/FormatTest.cpp - Formatting unit tests -------------===// 10 #define DEBUG_TYPE "format-test" 12 #include "clang/Format/Format.h" 18 namespace format { namespace in namespace:clang 22 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length, function in class:clang::format::FormatTest 35 format(llvm::StringRef Code, const FormatStyle &Style = getLLVMStyle()) { function in class:clang::format::FormatTest 36 return format(Code, 0, Code.size(), Style); 86 EXPECT_EQ(Code.str(), format(messUp(Code), Style)); 114 EXPECT_EQ(";", format(";")); [all...] |
/external/chromium_org/third_party/libxml/src/ |
trio.h | 80 int trio_printf TRIO_PROTO((TRIO_CONST char *format, ...)); 81 int trio_vprintf TRIO_PROTO((TRIO_CONST char *format, va_list args)); 82 int trio_printfv TRIO_PROTO((TRIO_CONST char *format, void **args)); 84 int trio_fprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, ...)); 85 int trio_vfprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args)); 86 int trio_fprintfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args)); 88 int trio_dprintf TRIO_PROTO((int fd, TRIO_CONST char *format, ...)); 89 int trio_vdprintf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args)); 90 int trio_dprintfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args)); 93 TRIO_CONST char *format, ...)) [all...] |
/external/chromium_org/third_party/libxslt/libxslt/ |
trio.h | 80 int trio_printf TRIO_PROTO((TRIO_CONST char *format, ...)); 81 int trio_vprintf TRIO_PROTO((TRIO_CONST char *format, va_list args)); 82 int trio_printfv TRIO_PROTO((TRIO_CONST char *format, void **args)); 84 int trio_fprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, ...)); 85 int trio_vfprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args)); 86 int trio_fprintfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args)); 88 int trio_dprintf TRIO_PROTO((int fd, TRIO_CONST char *format, ...)); 89 int trio_vdprintf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args)); 90 int trio_dprintfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args)); 93 TRIO_CONST char *format, ...)) [all...] |
/external/libxml2/ |
trio.h | 80 int trio_printf TRIO_PROTO((TRIO_CONST char *format, ...)); 81 int trio_vprintf TRIO_PROTO((TRIO_CONST char *format, va_list args)); 82 int trio_printfv TRIO_PROTO((TRIO_CONST char *format, void **args)); 84 int trio_fprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, ...)); 85 int trio_vfprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args)); 86 int trio_fprintfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args)); 88 int trio_dprintf TRIO_PROTO((int fd, TRIO_CONST char *format, ...)); 89 int trio_vdprintf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args)); 90 int trio_dprintfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args)); 93 TRIO_CONST char *format, ...)) [all...] |
/external/libxslt/libxslt/ |
trio.h | 80 int trio_printf TRIO_PROTO((TRIO_CONST char *format, ...)); 81 int trio_vprintf TRIO_PROTO((TRIO_CONST char *format, va_list args)); 82 int trio_printfv TRIO_PROTO((TRIO_CONST char *format, void **args)); 84 int trio_fprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, ...)); 85 int trio_vfprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args)); 86 int trio_fprintfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args)); 88 int trio_dprintf TRIO_PROTO((int fd, TRIO_CONST char *format, ...)); 89 int trio_vdprintf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args)); 90 int trio_dprintfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args)); 93 TRIO_CONST char *format, ...)) [all...] |