/external/v8/test/mjsunit/ |
H A D | bool-concat.js | 28 function format(a) { function 37 assertEquals("XtrueY", format(true)); 38 assertEquals("XfalseY", format(false));
|
/external/clang/test/Lexer/ |
H A D | char-escapes.c | 22 const char *format = "abc \m def"; // expected-warning{{unknown escape sequence '\m'}} variable
|
/external/clang/tools/clang-format/ |
H A D | clang-format.el | 1 ;;; clang-format.el --- Format code using clang-format 8 ;; This package allows to filter code through clang-format to fix its formatting. 9 ;; clang-format is a tool that formats C/C++/Obj-C code according to a set of 11 ;; Note that clang-format 3.4 or newer is required. 13 ;; clang-format.el is available via MELPA and can be installed via 15 ;; M-x package-install clang-format 21 ;; (require 'clang-format) 25 ;; You may also want to bind `clang-format-region' to a key: 27 ;; (global-set-key [C-M-tab] 'clang-format [all...] |
/external/bison/lib/ |
H A D | printf.c | 30 printf (const char *format, ...) argument 35 va_start (args, format); 36 retval = vfprintf (stdout, format, args);
|
H A D | asnprintf.c | 25 asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...) argument 30 va_start (args, format); 31 result = vasnprintf (resultbuf, lengthp, format, args);
|
/external/chromium-trace/catapult/third_party/typ/typ/ |
H A D | stats.py | 34 def format(self): member in class:Stats
|
/external/clang/test/Sema/ |
H A D | block-sentinel-attribute.c | 3 void (^e) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (1,1))); variable 6 void (^bbad) (int arg, const char * format) __attribute__ ((__sentinel__)) ; // expected-warning {{'sentinel' attribute only supported for variadic blocks}} local 7 bbad = ^void (int arg, const char * format) __attribute__ ((__sentinel__)) {} ; // expected-warning {{'sentinel' attribute only supported for variadic blocks}} 8 void (^b) (int arg, const char * format, ...) __attribute__ ((__sentinel__)) = // expected-note {{block has been explicitly marked sentinel here}} local 9 ^ __attribute__ ((__sentinel__)) (int arg, const char * format, ...) {}; 10 void (^z) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (2))) = ^ __attribute__ ((__sentinel__ (2))) (int arg, const char * format, ...) {}; // expected-note {{block has been explicitly marked sentinel here}} local 13 void (^y) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (5))) = ^ __attribute__ ((__sentinel__ (5))) (int arg, const char * format, ...) {}; // expected-note {{block has been explicitly marked sentinel here}} local
|
H A D | 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/mesa3d/src/gallium/auxiliary/translate/ |
H A D | translate.c | 52 boolean translate_is_output_format_supported(enum pipe_format format) argument 54 return translate_generic_is_output_format_supported(format);
|
/external/skia/src/ports/ |
H A D | SkDebug_stdio.cpp | 14 void SkDebugf(const char format[], ...) { argument 16 va_start(args, format); 17 vfprintf(stderr, format, args);
|
H A D | SkDebug_win.cpp | 20 void SkDebugf(const char format[], ...) { argument 24 va_start(args, format); 25 vfprintf(stderr, format, args); 29 va_start(args, format); 30 vsnprintf(buffer, kBufferSize, format, args);
|
/external/compiler-rt/lib/builtins/ |
H A D | eprintf.c | 29 __eprintf(const char* format, const char* assertion_expression, argument 32 fprintf(stderr, format, assertion_expression, line, file);
|
/external/compiler-rt/test/dfsan/ |
H A D | vararg.c | 10 int do_nothing(const char *format, ...) { argument
|
/external/deqp/modules/egl/ |
H A D | teglAndroidUtil.cpp | 54 MovePtr<ImageSource> createAndroidNativeImageSource (GLenum format) argument 56 return createUnsupportedImageSource("Not Android platform", format); 66 PixelFormat getPixelFormat (GLenum format) 68 switch (format) 75 default: TCU_THROW(NotSupportedError, "Texture format unsupported by Android"); 82 AndroidNativeClientBuffer (const LibUI& lib, GLenum format); 91 AndroidNativeClientBuffer::AndroidNativeClientBuffer (const LibUI& lib, GLenum format) 92 : m_graphicBuffer (lib, 64, 64, getPixelFormat(format), 104 AndroidNativeImageSource (GLenum format) : m_format(format), m_libu [all...] |
/external/elfutils/backends/ |
H A D | alpha_auxv.c | 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) argument 43 *format = "b"
|
H A D | arm_auxv.c | 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) argument 43 *format = "b"
|
H A D | i386_auxv.c | 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) argument 43 *format = "b"
|
H A D | ppc_auxv.c | 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) argument 43 *format = "b"
|
H A D | sparc_auxv.c | 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) argument 43 *format = "b"
|
/external/chromium-trace/catapult/devil/devil/utils/ |
H A D | run_tests_helper.py | 23 def format(self, record): member in class:CustomFormatter 26 msg = logging.Formatter.format(self, record)
|
/external/clang/test/PCH/ |
H A D | va_arg.cpp | 16 void f(char *buffer, unsigned count, const char* format, va_list argptr) { argument 17 vsnprintf(buffer, count, format, argptr); 20 void g(char *buffer, const char *format, __ms_va_list argptr) { argument 21 wvsprintfA(buffer, format, argptr);
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
H A D | ContributionBindingFormatter.java | 36 @Override public String format(ContributionBinding binding) { method in class:ContributionBindingFormatter 40 return methodSignatureFormatter.format(asExecutable(binding.bindingElement())); 46 return methodSignatureFormatter.format(
|
H A D | Formatter.java | 33 public abstract String format(T object); method in class:Formatter 38 * to {@link #format(Object)}. 40 * @deprecated Call {@link #format(T)} instead. This method exists to make 46 return format(object);
|
H A D | KeyFormatter.java | 26 @Override public String format(Key request) { method in class:KeyFormatter
|
/external/fio/t/ |
H A D | log.c | 5 int log_err(const char *format, ...) argument 11 va_start(args, format); 12 len = vsnprintf(buffer, sizeof(buffer), format, args); 19 int log_info(const char *format, ...) argument 25 va_start(args, format); 26 len = vsnprintf(buffer, sizeof(buffer), format, args);
|