Searched defs:format (Results 1 - 17 of 17) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
H A Dresults_reporter.hpp40 class BOOST_TEST_DECL format { class in namespace:boost::unit_test::results_reporter
43 virtual ~format() {}
61 BOOST_TEST_DECL void set_format( results_reporter::format* );
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
H A Dabort_message.cpp25 void abort_message(const char* format, ...) argument
32 va_start(list, format);
33 vfprintf(stderr, format, list);
41 va_start(list2, format);
42 vasprintf(&buffer, format, list2);
/ndk/sources/host-tools/sed-4.2.1/lib/
H A Dstdio-write.c67 printf (const char *format, ...) argument
72 va_start (args, format);
73 retval = vfprintf (stdout, format, args);
82 fprintf (FILE *stream, const char *format, ...) argument
87 va_start (args, format);
88 retval = vfprintf (stream, format, args);
97 vprintf (const char *format, va_list args) argument
99 return vfprintf (stdout, format, args);
105 vfprintf (FILE *stream, const char *format, va_list args) argument
108 CALL_WITH_SIGPIPE_EMULATION (int, vfprintf (stream, format, arg
[all...]
/ndk/sources/android/support/src/stdio/
H A Dstdio_impl.c86 int fake_fprintf(FakeFILE* file, const char* format, ...) { argument
88 va_start(args, format);
90 return vfprintf(file->file, format, args);
94 int mb_len = vsnprintf(NULL, 0, format, args);
96 vsnprintf(mb_buffer, mb_len + 1, format, args);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/win32/
H A Dsupport.cpp20 int asprintf(char **sptr, const char *__restrict format, ...) argument
23 va_start(ap, format);
25 result = vasprintf(sptr, format, ap);
33 int vasprintf( char **sptr, const char *__restrict format, va_list ap ) argument
37 int count = _vsnprintf( NULL, 0, format, ap );
46 if (_vsnprintf(p, buffer_size, format, ap) != count) {
H A Dlocale_win32.cpp83 int snprintf_l(char *ret, size_t n, locale_t loc, const char *format, ...) argument
87 va_start( ap, format );
88 int result = vsnprintf( ret, n, format, ap );
93 int asprintf_l( char **ret, locale_t loc, const char *format, ... ) argument
96 va_start( ap, format );
97 int result = vasprintf_l( ret, loc, format, ap );
101 int vasprintf_l( char **ret, locale_t loc, const char *format, va_list ap ) argument
104 return vasprintf( ret, format, ap );
/ndk/tests/device/test-gnustl-full/unit/
H A Dtime_facets_test.cpp35 string format = "%B %d %Y"; local
37 time_put_facet::iter_type ret = tmp.put(ostr, ostr, ' ', &xmas, format.data(), format.data() + format.size());
44 * user variations on standard format.
72 format = "%x %X";
74 ret = tmp.put(ostrX, ostrX, ' ', &xmas, format.data(), format.data() + format.size());
117 wstring format local
[all...]
/ndk/tests/device/test-stlport/unit/
H A Dtime_facets_test.cpp35 string format = "%B %d %Y"; local
37 time_put_facet::iter_type ret = tmp.put(ostr, ostr, ' ', &xmas, format.data(), format.data() + format.size());
44 * user variations on standard format.
72 format = "%x %X";
74 ret = tmp.put(ostrX, ostrX, ' ', &xmas, format.data(), format.data() + format.size());
117 wstring format local
[all...]
/ndk/sources/android/crazy_linker/minitest/
H A Dminitest.cc126 internal::String Format(const char* format, ...) { argument
129 va_start(args, format);
135 len = vsnprintf(&result[0], result.size(), format, args2);
/ndk/sources/android/support/tests/minitest/
H A Dminitest.cc126 internal::String Format(const char* format, ...) { argument
129 va_start(args, format);
135 len = vsnprintf(&result[0], result.size(), format, args2);
/ndk/sources/third_party/googletest/googletest/src/
H A Dgtest-printers.cc216 const CharFormat format = PrintAsCharLiteralTo<UnsignedChar>(c, os); local
229 if (format == kHexEscape || (1 <= c && c <= 9)) {
/ndk/sources/cxx-stl/stlport/src/
H A Dtime_facets.cpp149 const string& format, const _TimeInfo& table, const tm* t) { variable
150 const char * cp = format.data();
151 const char * cp_end = cp + format.size();
215 char format, char modifier, variable
220 switch (format) {
409 switch (format) {
455 char format, char modifier,
457 { __write_formatted_timeT(buf, ct, format, modifier, table, t); }
460 char format, char modifier,
462 { __write_formatted_timeT(buf, ct, format, modifie
454 __write_formatted_time(__iostring &buf, const ctype<char>& ct, char format, char modifier, const _Time_Info& table, const tm* t) argument
459 __write_formatted_time(__iowstring &buf, const ctype<wchar_t>& ct, char format, char modifier, const _WTime_Info& table, const tm* t) argument
[all...]
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
H A DUnwind-EHABI.cpp74 Descriptor::Format format,
88 switch (format) {
167 Descriptor::Format format = local
171 switch (format) {
189 state, ucbp, context, format,
909 // format 1", which is equivalent to FSTMD + a padding word.
70 ProcessDescriptors( _Unwind_State state, _Unwind_Control_Block* ucbp, struct _Unwind_Context* context, Descriptor::Format format, const char* descriptorStart, int flags) argument
/ndk/sources/android/cpufeatures/
H A Dcpu-features.c278 * The function returns NULL in case of error (bad format), or the new
354 * Input format is the following:
806 char format; member in struct:CpuIdEntry
835 } else if (entry->format == 'x')
/ndk/sources/host-tools/nawk-20071023/
H A Drun.c807 int format(char **pbuf, int *pbufsize, const char *s, Node *a) /* printf-like conversions */ function
814 int fmtwd; /* format width */
822 FATAL("out of memory in format()");
841 FATAL("format item %.30s... ran format() out of memory", os);
850 adjbuf(&buf, &bufsize, fmtwd+1+p-buf, recsize, &p, "format");
912 FATAL("huge string/format (%d chars) in printf %.30s... ran format() out of memory", n, t);
927 FATAL("can't happen: bad conversion %c in format()", flag);
953 if (format(
[all...]
/ndk/sources/host-tools/ndk-depends/
H A Dndk-depends.cc1116 // Print the dependency graph in a human-readable format to stdout.
1443 const TCHAR* format; local
1446 format = _T("%s -> %s\n");
1449 format = _T("%s -> $ /system/lib/%s\n");
1452 format = _T("%s -> !! %s\n");
1454 _tprintf(format, lib.c_str(), deps[lib].value.c_str());
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/
H A Dlibunwind.h87 uint32_t format; /* compact unwind encoding, or zero if none */ member in struct:unw_proc_info_t
108 /* Save VFP registers in FSTMX format (instead of FSTMD). */

Completed in 3049 milliseconds