Searched refs:format (Results 101 - 125 of 6114) sorted by relevance

1234567891011>>

/external/qemu/android/base/
H A DStringFormat.cpp19 String StringFormat(const char* format, ...) { argument
21 va_start(args, format);
22 String result = StringFormatWithArgs(format, args);
27 String StringFormatWithArgs(const char* format, va_list args) { argument
29 StringAppendFormatWithArgs(&result, format, args);
33 void StringAppendFormat(String* string, const char* format, ...) { argument
35 va_start(args, format);
36 StringAppendFormatWithArgs(string, format, args);
41 const char* format,
48 int ret = vsnprintf(&(*string)[cur_size], extra, format, args
40 StringAppendFormatWithArgs(String* string, const char* format, va_list args) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Dstringprintf.cc53 void StringAppendV(string* dst, const char* format, va_list ap) { argument
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, ...) { argument
106 va_start(ap, format);
108 StringAppendV(&result, format, ap);
113 const string& SStringPrintf(string* dst, const char* format, ...) { argument
115 va_start(ap, format);
117 StringAppendV(dst, format, a
122 StringAppendF(string* dst, const char* format, ...) argument
[all...]
H A Dstringprintf.h50 // Tell the compiler to do printf format string checking if the compiler
51 // supports it; see the 'format' attribute in
66 extern string StringPrintf(const char* format, ...)
67 // Tell the compiler to do printf format string checking.
71 extern const string& SStringPrintf(string* dst, const char* format, ...)
72 // Tell the compiler to do printf format string checking.
76 extern void StringAppendF(string* dst, const char* format, ...)
77 // Tell the compiler to do printf format string checking.
82 extern void StringAppendV(string* dst, const char* format, va_list ap);
/external/deqp/framework/opengl/
H A DgluTextureUtil.hpp23 * \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...]
/external/chromium_org/third_party/libxml/src/
H A Dtrio.h80 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/
H A Dtrio.h80 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/
H A Dtrio.h80 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/mesa/src/src/gallium/auxiliary/util/
H A Du_format_pack.py33 * 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/
H A Du_format_pack.py33 * 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/chromium_org/cc/test/
H A Dtest_texture.cc12 size_t TextureSizeBytes(const gfx::Size& size, ResourceFormat format) { argument
19 TestTexture::TestTexture() : format(RGBA_8888) {
31 void TestTexture::Reallocate(const gfx::Size& size, ResourceFormat format) { argument
33 this->format = format;
34 this->data.reset(new uint8_t[TextureSizeBytes(size, format)]);
/external/chromium_org/extensions/common/
H A Derror_utils.h17 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,
H A Derror_utils.cc12 std::string ErrorUtils::FormatErrorMessage(const std::string& format, argument
14 std::string ret_val = format;
19 std::string ErrorUtils::FormatErrorMessage(const std::string& format, argument
22 std::string ret_val = format;
28 std::string ErrorUtils::FormatErrorMessage(const std::string& format, argument
32 std::string ret_val = format;
39 base::string16 ErrorUtils::FormatErrorMessageUTF16(const std::string& format, argument
41 return base::UTF8ToUTF16(FormatErrorMessage(format, s1));
44 base::string16 ErrorUtils::FormatErrorMessageUTF16(const std::string& format, argument
47 return base::UTF8ToUTF16(FormatErrorMessage(format, s
50 FormatErrorMessageUTF16(const std::string& format, const std::string& s1, const std::string& s2, const std::string& s3) argument
[all...]
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dscheck.c17 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/chromium_org/v8/test/intl/overrides/
H A Dnumber.js36 assertEquals(nf.format(integer), integer.toLocaleString());
37 assertEquals(nf.format(float), float.toLocaleString());
43 assertEquals(nf.format(integer), integer.toLocaleString(locale));
44 assertEquals(nf.format(float), float.toLocaleString(locale));
52 assertEquals(nf.format(integer), integer.toLocaleString(locale, options));
53 assertEquals(nf.format(float), float.toLocaleString(locale, options));
/external/icu/icu4c/source/tools/tzcode/
H A Dscheck.c17 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseAlgorithmParameters.java10 protected boolean isASN1FormatString(String format) argument
12 return format == null || format.equals("ASN.1");
/external/chromium_org/third_party/skia/src/ports/
H A DSkDebug_nacl.cpp27 void SkDebugf(const char format[], ...) { argument
31 va_start(args, format);
33 vsnprintf(buffer + strlen(kLogPrefix), kBufferSize, format, args);
/external/chromium_org/tools/gyp/test/make_global_settings/ld/
H A Dgyptest-make_global_settings_ld.py18 elif test.format == 'make':
20 elif test.format == 'ninja':
33 if test.format == 'make':
39 elif test.format == 'ninja':
44 if test.format == 'make':
46 elif test.format == 'ninja':
59 if test.format == 'make':
65 elif test.format == 'ninja':
70 if test.format == 'make':
72 elif test.format
[all...]
/external/chromium_org/tools/gyp/test/sibling/
H A Dgyptest-all.py24 if test.format in ('make', 'ninja', 'cmake'):
27 if test.format == 'xcode':
33 if test.format == 'xcode':
H A Dgyptest-relocate.py26 if test.format in ('make', 'ninja', 'cmake'):
29 if test.format == 'xcode':
35 if test.format == 'xcode':
/external/e2fsprogs/intl/
H A Dvasnprintf.h33 /* The __-protected variants of `format' and `printf' attributes
36 # define __format__ format
52 extern char * asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...)
54 extern char * vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args)
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DNamedRunnable.java25 public NamedRunnable(String format, Object... args) { argument
26 this.name = String.format(format, args);
/external/skia/src/ports/
H A DSkDebug_nacl.cpp27 void SkDebugf(const char format[], ...) { argument
31 va_start(args, format);
33 vsnprintf(buffer + strlen(kLogPrefix), kBufferSize, format, args);
/external/valgrind/main/coregrind/
H A Dpub_core_debuglog.h77 const HChar* format, ... )
78 __attribute__((format(__printf__, 3, 4)));
87 const HChar *format,
/external/chromium_org/base/strings/
H A Dstringprintf.h18 BASE_EXPORT std::string StringPrintf(const char* format, ...)
22 BASE_EXPORT std::wstring StringPrintf(const wchar_t* format, ...)
27 BASE_EXPORT std::string StringPrintV(const char* format, va_list ap)
32 const char* format, ...)
36 const wchar_t* format, ...)
41 BASE_EXPORT void StringAppendF(std::string* dst, const char* format, ...)
46 BASE_EXPORT void StringAppendF(std::wstring* dst, const wchar_t* format, ...)
52 BASE_EXPORT void StringAppendV(std::string* dst, const char* format, va_list ap)
56 const wchar_t* format, va_list ap)

Completed in 4929 milliseconds

1234567891011>>