HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 176 - 200 of 15567) sorted by null

1 2 3 4 5 6 78 91011>>

  /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/e2fsprogs/intl/
vasnprintf.h 33 /* 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/
NamedRunnable.java 25 public NamedRunnable(String format, Object... args) {
26 this.name = String.format(format, args);
  /external/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);
  /external/valgrind/coregrind/
pub_core_debuglog.h 77 const HChar* format, ... )
78 __attribute__((format(__printf__, 3, 4)));
87 const HChar *format,
  /frameworks/base/media/java/android/media/
AudioDevicePortConfig.java 30 int format, AudioGainConfig gain) {
31 super((AudioPort)devicePort, samplingRate, channelMask, format, gain);
35 this(config.port(), config.samplingRate(), config.channelMask(), config.format(),
  /hardware/bsp/intel/peripheral/libupm/examples/python/
m24lr64e.py 39 print "Read byte: ", format(byte, '02x')
44 print "Wrote inverted byte: ", format(byte, '02x')
48 print "Read byte: ", format(byte, '02x')
  /platform_testing/tests/perf/PerformanceLaunch/
gen_locales.py 28 os.mkdir("res/values-{0}".format(locale))
32 with open("res/values-{0}/strings.xml".format(locale), "w") as f:
33 f.write(template.format(locale))
  /external/ceres-solver/internal/ceres/
stringprintf.h 50 // 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/clang/test/CodeGen/
2002-06-25-FWriteInterfaceFailure.c 5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
  /external/clang/test/Frontend/
source-col-map.c 18 __attribute__((format(printf, 1, 2)))
35 // CHECK: format specifies type 'int' but the argument has
  /external/clang/test/Sema/
block-printf-attribute-1.c 6 void (^b) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 1, 3))) = // expected-error {{format argument not a string type}} local
7 ^ __attribute__ ((__format__ (__printf__, 1, 3))) (int arg, const char * format, ...) {}; // expected-error {{format argument not a string type}}
9 void (^z) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 2, 3))) = ^ __attribute__ ((__format__ (__printf__, 2, 3))) (int arg, const char * format, ...) {}; local
11 z(1, "%s", 1); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
16 // Handle block with multiple format attributes.
20 vprintf_scanf("%", ap, "%d"); // expected-warning {{incomplete format specifier}}, expected-warning {{more '%' conversions than data arguments}}
  /external/compiler-rt/test/dfsan/
vararg.c 10 int do_nothing(const char *format, ...) {
  /external/deqp/modules/egl/
teglAndroidUtil.hpp 35 de::MovePtr<ImageSource> createAndroidNativeImageSource (glw::GLenum format);
  /external/eigen/doc/snippets/
IOFormat.cpp 11 std::cout << m1.format(CommaInitFmt) << sep;
12 std::cout << m1.format(CleanFmt) << sep;
13 std::cout << m1.format(OctaveFmt) << sep;
14 std::cout << m1.format(HeavyFmt) << sep;
  /external/fio/
gerror.h 4 extern void gfio_report_error(struct gui_entry *ge, const char *format, ...);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
PeriodFormatter.java 13 * The Period defines the fields to format and their
14 * values, and the formatter defines how to format them.
27 * Format a Period.
29 * @param ts the Period to format
32 String format(Period period); method in interface:PeriodFormatter
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
PeriodFormatter.java 12 * The Period defines the fields to format and their
13 * values, and the formatter defines how to format them.
25 * Format a Period.
27 * @param ts the Period to format
30 String format(Period period); method in interface:PeriodFormatter
  /external/libchrome/base/strings/
stringprintf.h 19 BASE_EXPORT std::string StringPrintf(_Printf_format_string_ const char* format,
24 _Printf_format_string_ const wchar_t* format,
29 BASE_EXPORT std::string StringPrintV(const char* format, va_list ap)
35 _Printf_format_string_ const char* format,
40 _Printf_format_string_ const wchar_t* format,
46 _Printf_format_string_ const char* format,
50 _Printf_format_string_ const wchar_t* format,
56 BASE_EXPORT void StringAppendV(std::string* dst, const char* format, va_list ap)
60 const wchar_t* format, va_list ap)
  /external/llvm/lib/Target/CppBackend/
Makefile 16 CompileCommonOpts += -Wno-format
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.h 61 lp_build_name(LLVMValueRef val, const char *format, ...)
66 va_start(ap, format);
67 util_vsnprintf(name, sizeof name, format, ap);
72 (void)format;
  /external/mesa3d/src/gallium/auxiliary/util/
u_sampler.c 40 enum pipe_format format,
45 /* XXX: Check if format is compatible with texture->format.
48 view->format = format;
72 if (format != PIPE_FORMAT_A8_UNORM) {
73 const struct util_format_description *desc = util_format_description(format);
90 enum pipe_format format)
95 format,
102 enum pipe_format format)
    [all...]
  /external/mesa3d/src/gallium/targets/graw-null/
graw_null.c 11 enum pipe_format format,
  /external/mesa3d/src/gallium/winsys/sw/fbdev/
fbdev_sw_winsys.h 37 enum pipe_format format; member in struct:fbdev_sw_drawable

Completed in 1860 milliseconds

1 2 3 4 5 6 78 91011>>