/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/v8/src/arm64/ |
disasm-arm64.h | 34 void Format(Instruction* instr, const char* mnemonic, const char* format); 36 int SubstituteField(Instruction* instr, const char* format); 37 int SubstituteRegisterField(Instruction* instr, const char* format); 38 int SubstituteImmediateField(Instruction* instr, const char* format); 39 int SubstituteLiteralField(Instruction* instr, const char* format); 40 int SubstituteBitfieldImmediateField(Instruction* instr, const char* format); 41 int SubstituteShiftField(Instruction* instr, const char* format); 42 int SubstituteExtendField(Instruction* instr, const char* format); 43 int SubstituteConditionField(Instruction* instr, const char* format); [all...] |
/external/vixl/src/a64/ |
disasm-a64.h | 53 void Format(Instruction* instr, const char* mnemonic, const char* format); 55 int SubstituteField(Instruction* instr, const char* format); 56 int SubstituteRegisterField(Instruction* instr, const char* format); 57 int SubstituteImmediateField(Instruction* instr, const char* format); 58 int SubstituteLiteralField(Instruction* instr, const char* format); 59 int SubstituteBitfieldImmediateField(Instruction* instr, const char* format); 60 int SubstituteShiftField(Instruction* instr, const char* format); 61 int SubstituteExtendField(Instruction* instr, const char* format); 62 int SubstituteConditionField(Instruction* instr, const char* format); [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/clang/unittests/Format/ |
FormatTest.cpp | 1 //===- unittest/Format/FormatTest.cpp - Formatting unit tests -------------===// 11 #include "clang/Format/Format.h" 15 #define DEBUG_TYPE "format-test" 18 namespace format { namespace in namespace:clang 26 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length, function in class:clang::format::FormatTest 40 format(llvm::StringRef Code, const FormatStyle &Style = getLLVMStyle()) { function in class:clang::format::FormatTest 41 return format(Code, 0, Code.size(), Style); 58 EXPECT_EQ(Code.str(), format(test::messUp(Code), Style)); 86 EXPECT_EQ(";", format(";")); [all...] |
/external/qemu/android/base/ |
StringFormat.cpp | 19 String StringFormat(const char* format, ...) { 21 va_start(args, format); 22 String result = StringFormatWithArgs(format, args); 27 String StringFormatWithArgs(const char* format, va_list args) { 29 StringAppendFormatWithArgs(&result, format, args); 33 void StringAppendFormat(String* string, const char* format, ...) { 35 va_start(args, format); 36 StringAppendFormatWithArgs(string, format, args); 41 const char* format, 48 int ret = vsnprintf(&(*string)[cur_size], extra, format, args2) [all...] |
/external/ceres-solver/internal/ceres/ |
stringprintf.cc | 53 void StringAppendV(string* dst, const char* format, va_list ap) { 62 int result = vsnprintf(space, sizeof(space), format, backup_ap); 76 result = vsnprintf(NULL, 0, format, backup_ap); 93 result = vsnprintf(buf, length, format, backup_ap); 104 string StringPrintf(const char* format, ...) { 106 va_start(ap, format); 108 StringAppendV(&result, format, ap); 113 const string& SStringPrintf(string* dst, const char* format, ...) { 115 va_start(ap, format); 117 StringAppendV(dst, format, ap) [all...] |
/external/deqp/framework/opengl/ |
gluTextureUtil.hpp | 23 * \brief Texture format utilities. 39 * \brief GL pixel transfer format. 43 deUint32 format; //!< Pixel format. member in struct:glu::TransferFormat 47 : format (0) 53 : format (format_) 59 tcu::TextureFormat mapGLTransferFormat (deUint32 format, deUint32 dataType); 67 TransferFormat getTransferFormat (tcu::TextureFormat format); 68 deUint32 getInternalFormat (tcu::TextureFormat format); 69 deUint32 getGLFormat (tcu::CompressedTexture::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/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...] |
/libcore/luni/src/test/java/libcore/java/text/ |
OldNumberFormatTest.java | 32 DecimalFormat format = (DecimalFormat) NumberFormat.getIntegerInstance(Locale.US); local 33 assertEquals("#,##0", format.toPattern()); 34 assertEquals("-36", format.format(-35.76)); 35 assertEquals(new Long(-36), format.parse("-36")); 36 assertEquals(new Long(-36), format.parseObject("-36")); 37 assertEquals(0, format.getMaximumFractionDigits()); 38 assertTrue(format.isParseIntegerOnly()); 42 format = (DecimalFormat) NumberFormat.getIntegerInstance(chLocale); 43 assertEquals("#,##0", format.toPattern()) 65 NumberFormat format = NumberFormat.getInstance(); local 77 NumberFormat format = NumberFormat.getInstance(new Locale("hu", "HU")); local 283 NumberFormat format = NumberFormat.getCurrencyInstance(); local 305 NumberFormat format = NumberFormat.getCurrencyInstance(usLocale); local 331 NumberFormat format = NumberFormat.getInstance(); local 351 NumberFormat format = NumberFormat.getInstance(de_CH); local 369 NumberFormat format = NumberFormat.getNumberInstance(); local 389 NumberFormat format = NumberFormat.getNumberInstance(deLocale); local 406 NumberFormat format = NumberFormat.getPercentInstance(); local 427 NumberFormat format = NumberFormat.getPercentInstance(csLocale); local 812 public StringBuffer format(double number, StringBuffer toAppendTo, method in class:OldNumberFormatTest.MyNumberFormat 823 public StringBuffer format(long number, StringBuffer toAppendTo, method in class:OldNumberFormatTest.MyNumberFormat [all...] |
/external/chromium_org/cc/test/ |
test_texture.cc | 12 size_t TextureSizeBytes(const gfx::Size& size, ResourceFormat format) { 19 TestTexture::TestTexture() : format(RGBA_8888) { 31 void TestTexture::Reallocate(const gfx::Size& size, ResourceFormat format) { 33 this->format = format; 34 this->data.reset(new uint8_t[TextureSizeBytes(size, format)]);
|
/external/chromium_org/extensions/common/ |
error_utils.h | 17 static std::string FormatErrorMessage(const std::string& format, 20 static std::string FormatErrorMessage(const std::string& format, 24 static std::string FormatErrorMessage(const std::string& format, 29 static base::string16 FormatErrorMessageUTF16(const std::string& format, 32 static base::string16 FormatErrorMessageUTF16(const std::string& format, 36 static base::string16 FormatErrorMessageUTF16(const std::string& format,
|
error_utils.cc | 12 std::string ErrorUtils::FormatErrorMessage(const std::string& format, 14 std::string ret_val = format; 19 std::string ErrorUtils::FormatErrorMessage(const std::string& format, 22 std::string ret_val = format; 28 std::string ErrorUtils::FormatErrorMessage(const std::string& format, 32 std::string ret_val = format; 39 base::string16 ErrorUtils::FormatErrorMessageUTF16(const std::string& format, 41 return base::UTF8ToUTF16(FormatErrorMessage(format, s1)); 44 base::string16 ErrorUtils::FormatErrorMessageUTF16(const std::string& format, 47 return base::UTF8ToUTF16(FormatErrorMessage(format, s1, s2)) [all...] |
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
scheck.c | 17 scheck(string, format) 19 const char * const format; 29 if (string == NULL || format == NULL) 31 fbuf = imalloc((int) (2 * strlen(format) + 4)); 34 fp = format; 60 result = (char *) format;
|
/external/icu/icu4c/source/tools/tzcode/ |
scheck.c | 17 scheck(string, format) 19 const char * const format; 29 if (string == NULL || format == NULL) 31 fbuf = imalloc((int) (2 * strlen(format) + 4)); 34 fp = format; 60 result = (char *) format;
|
/hardware/libhardware/include/hardware/ |
audio_alsaops.h | 33 * format the audio_format_t to convert 35 * Logs a fatal error if format is not a valid convertible audio_format_t. 37 static inline enum pcm_format pcm_format_from_audio_format(audio_format_t format) 39 switch (format) { 61 LOG_ALWAYS_FATAL("pcm_format_from_audio_format: invalid audio format %#x", format); 68 * format the pcm_format to convert 70 * Logs a fatal error if format is not a valid convertible pcm_format. 72 static inline audio_format_t audio_format_from_pcm_format(enum pcm_format format) 74 switch (format) { [all...] |
/system/core/include/android/ |
log.h | 103 __attribute__ ((format(gnu_printf, 3, 4))) 105 __attribute__ ((format(printf, 3, 4))) 108 __attribute__ ((format(printf, 3, 4))) 130 __attribute__ ((format(gnu_printf, 3, 4))) 132 __attribute__ ((format(printf, 3, 4))) 135 __attribute__ ((format(printf, 3, 4)))
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/ |
BaseAlgorithmParameters.java | 10 protected boolean isASN1FormatString(String format) 12 return format == null || format.equals("ASN.1");
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/ |
simple_bitmap_glyph.h | 30 Builder(WritableFontData* data, int32_t format); 31 Builder(ReadableFontData* data, int32_t format); 37 SimpleBitmapGlyph(ReadableFontData* data, int32_t format);
|