/external/clang/test/PCH/ |
builtins.h | 2 int printf(char const *, ...);
|
builtins.c | 9 printf("Hello, World!");
|
/external/webkit/Tools/android/flex-2.5.4a/MISC/MVS/ |
fixit.l | 14 "action_file_name" printf("actfilnm"); 15 "action_out" printf("actnout"); 16 "add_accept" printf("addacpt"); 17 "all_lower" printf("alllower"); 18 "all_upper" printf("allupper"); 19 "allocate_array" printf("allocarr"); 20 "assoc_rule" printf("asscrule"); 21 "backtrack_file" printf("bktrkfil"); 22 "backtrack_report" printf("bktrkrep"); 23 "bol_needed" printf("bol_nded") [all...] |
unfixit.l | 17 "actfilnm" printf("action_file_name"); 18 "actnout" printf("action_out"); 19 "addacpt" printf("add_accept"); 20 "alllower" printf("all_lower"); 21 "allupper" printf("all_upper"); 22 "allocarr" printf("allocate_array"); 23 "asscrule" printf("assoc_rule"); 24 "bktrkfil" printf("backtrack_file"); 25 "bktrkrep" printf("backtrack_report"); 26 "bol_nded" printf("bol_needed") [all...] |
/frameworks/compile/libbcc/tests/data/src/ |
constants.c | 4 printf("0 = %d\n", 0); 5 printf("010 = %d\n", 010); 6 printf("0x10 = %d\n", FOO); 7 printf("'\\a' = %d\n", '\a'); 8 printf("'\\b' = %d\n", '\b'); 9 printf("'\\f' = %d\n", '\f'); 10 printf("'\\n' = %d\n", '\n'); 11 printf("'\\r' = %d\n", '\r'); 12 printf("'\\t' = %d\n", '\t'); 13 printf("'\\v' = %d\n", '\v') [all...] |
hello.c | 2 printf("Hello, world\n");
|
testStringConcat.c | 2 return printf("Hello" "," " world\n");
|
inc.c | 5 printf("%d\n", a++); 6 printf("%d\n", a++); 7 printf("%d\n", a--); 8 printf("%d\n", a--); 9 printf("%d\n", ++a); 10 printf("%d\n", ++a); 11 printf("%d\n", --a); 12 printf("%d\n", --a);
|
/external/clang/test/Sema/ |
ucn-cstring.c | 3 int printf(const char *, ...); 8 printf("%s (%zd)\n", "hello \u2192 \u2603 \u2190 world", sizeof("hello \u2192 \u2603 \u2190 world")); 9 printf("%s (%zd)\n", "\U00010400\U0001D12B", sizeof("\U00010400\U0001D12B")); 11 printf("%s\n", "\U"); // expected-error{{\u used with no following hex digits}} 12 printf("%s\n", "\U00"); // expected-error{{incomplete universal character name}} 13 printf("%s\n", "\U0001"); // expected-error{{incomplete universal character name}} 14 printf("%s\n", "\u0001"); // expected-error{{invalid universal character}}
|
format-strings-fixit.c | 11 int printf(char const *, ...); 15 printf("%s", (int) 123); 16 printf("abc%0f", "testing testing 123"); 17 printf("%u", (long) -12); 18 printf("%p", 123); 19 printf("%c\n", "x"); 20 printf("%c\n", 1.23); 23 printf("%+.2d", (unsigned long long) 123456); 24 printf("%1d", (long double) 1.23); 27 printf("%0+s", (unsigned) 31337); // 0 flag should sta [all...] |
format-string-percentm.c | 3 // PR 4142 - support glibc extension to printf: '%m' (which prints strerror(errno)). 4 int printf(char const*,...); 6 printf("%m");
|
attr-format_arg.c | 3 int printf(const char *, ...); 8 printf("%d", 123); 9 printf("%d %d", 123); // expected-warning{{more '%' conversions than data arguments}} 11 printf(f("%d"), 123); 12 printf(f("%d %d"), 123); // expected-warning{{more '%' conversions than data arguments}}
|
format-strings.c | 7 int printf(const char *restrict, ...); // expected-note{{passing argument to parameter here}} 25 printf(s); // expected-warning {{format string is not a string literal}} 42 printf("abc" 44 printf("abc\ 51 printf("%*d", (unsigned) 1, 1); // no-warning 55 printf(i == 1 ? "yes" : "no"); // no-warning 56 printf(i == 0 ? (i == 1 ? "yes" : "no") : "dont know"); // no-warning 57 printf(i == 0 ? (i == 1 ? s : "no") : "dont know"); // expected-warning{{format string is not a string literal}} 58 printf("yes" ?: "no %d", 1); // expected-warning{{data argument not used by format string}} 66 printf("%n",&x); // expected-warning {{'%n' in format string discouraged} [all...] |
/external/clang/test/CodeGen/ |
builtin-rename.c | 1 // RUN: %clang_cc1 %s -emit-llvm -o - | grep 'declare.*printf' | count 1 4 int printf(const char *, ...); 7 return printf(printf);
|
PR3589-freestanding-libcalls.c | 1 // RUN: %clang_cc1 -emit-llvm %s -o - | grep 'declare i32 @printf' | count 1 5 int printf(const char *, ...); 8 printf("hello\n");
|
predefined-expr.c | 12 int printf(const char *, ...); 15 printf("__func__ %s\n", __func__); 16 printf("__FUNCTION__ %s\n", __FUNCTION__); 17 printf("__PRETTY_FUNCTION__ %s\n\n", __PRETTY_FUNCTION__); 21 printf("__func__ %s\n", __func__); 22 printf("__FUNCTION__ %s\n", __FUNCTION__); 23 printf("__PRETTY_FUNCTION__ %s\n\n", __PRETTY_FUNCTION__); 27 printf("__func__ %s\n", __func__); 28 printf("__FUNCTION__ %s\n", __FUNCTION__); 29 printf("__PRETTY_FUNCTION__ %s\n\n", __PRETTY_FUNCTION__) [all...] |
/external/e2fsprogs/misc/ |
profile-to-c.awk | 3 printf("const char *mke2fs_default_profile = \n"); 7 printf(" \"%s\\n\"\n", $0); 11 printf(";\n", str)
|
/external/llvm/test/FrontendC/ |
2007-04-14-FNoBuiltin.c | 1 // RUN: %llvmgcc -S %s -O2 -fno-builtin -o - | grep call.*printf 4 extern int printf(const char*, ...); 6 printf("%s\n",msg);
|
2002-04-07-SwitchStmt.c | 3 int printf(const char *, ...); 13 printf("3"); 14 case 4: printf("4");
|
/external/llvm/test/FrontendC++/ |
2007-04-14-FNoBuiltin.cpp | 1 // RUN: %llvmgcc -S %s -O2 -fno-builtin -o - | grep call.*printf 4 extern "C" int printf(const char*, ...); 6 printf("%s\n",msg);
|
/external/valgrind/main/auxprogs/ |
aix5_VKI_info.c | 29 printf ("aix5_VKI_info: sizeof(void*) = %d\n", (int)sizeof(void*)); 31 printf("/* ---------------- Errors ---------------- */\n"); 32 printf("\n"); 33 printf("#define VKI_EINVAL %d\n", EINVAL); 34 printf("#define VKI_EINTR %d\n", EINTR); 35 printf("#define VKI_ENOSYS %d\n", ENOSYS); 36 printf("#define VKI_EAGAIN %d\n", EAGAIN); 37 printf("#define VKI_ENOMEM %d\n", ENOMEM); 38 printf("#define VKI_EACCES %d\n", EACCES); 39 printf("#define VKI_EEXIST %d\n", EEXIST) [all...] |
/frameworks/base/tools/makekeycodes/ |
makekeycodes.cpp | 8 printf("// Copyright (C) 2008 The Android Open Source Project\n"); 9 printf("//\n"); 10 printf("// This file is generated by makekeycodes from the definitions.\n"); 11 printf("// in includes/ui/KeycodeLabels.h.\n"); 12 printf("//\n"); 13 printf("// If you modify this, your changes will be overwritten.\n"); 14 printf("\n"); 15 printf("pacakge android.os;\n"); 16 printf("\n"); 17 printf("public class KeyEvent\n") [all...] |
/external/srtp/crypto/test/ |
env.c | 55 printf("CPU set to big-endian\t\t\t(WORDS_BIGENDIAN == 1)\n"); 57 printf("CPU set to little-endian\t\t(WORDS_BIGENDIAN == 0)\n"); 61 printf("CPU set to RISC\t\t\t\t(CPU_RISC == 1)\n"); 63 printf("CPU set to CISC\t\t\t\t(CPU_CISC == 1)\n"); 65 printf("CPU set to an unknown type, probably due to a configuration error\n"); 70 printf("CPU set to ALTIVEC\t\t\t\t(CPU_ALTIVEC == 0)\n"); 74 printf("using native 64-bit type\t\t(NO_64_BIT_MATH == 0)\n"); 76 printf("using built-in 64-bit math\t\t(NO_64_BIT_MATH == 1)\n"); 80 printf("using stdout for error reporting\t(ERR_REPORTING_STDOUT == 1)\n"); 88 printf("using %s as a random source\t(DEV_URANDOM == %s)\n" [all...] |
/external/clang/test/CodeGenCXX/ |
predefined-expr.cpp | 81 int printf(const char * _Format, ...); 86 printf("__func__ %s\n", __func__); 87 printf("__FUNCTION__ %s\n", __FUNCTION__); 88 printf("__PRETTY_FUNCTION__ %s\n\n", __PRETTY_FUNCTION__); 97 printf("__func__ %s\n", __func__); 98 printf("__FUNCTION__ %s\n", __FUNCTION__); 99 printf("__PRETTY_FUNCTION__ %s\n\n", __PRETTY_FUNCTION__); 111 printf("__func__ %s\n", __func__); 112 printf("__FUNCTION__ %s\n", __FUNCTION__); 113 printf("__PRETTY_FUNCTION__ %s\n\n", __PRETTY_FUNCTION__) [all...] |
/external/fsck_msdos/ |
fsutil.h | 4 #define pwarn printf 5 #define pfatal printf
|