/external/clang/test/Sema/ |
D | format-strings-scanf.c | 16 int vscanf(const char * restrict, va_list); 79 vscanf("%[abc", ap); // expected-warning{{no closing ']' for '%[' in scanf format string}} in test_variants()
|
D | format-strings.c | 21 int vscanf(const char *restrict format, va_list arg); 54 vscanf(s, ap); // expected-warning {{format string is not a string literal}} in check_string_literal() 96 vscanf(s, ap); // expected-warning {{format string is not a string literal}} in check_string_literal2()
|
/external/llvm-project/clang/test/Sema/ |
D | format-strings-scanf.c | 34 int vscanf(const char * restrict, va_list); 97 vscanf("%[abc", ap); // expected-warning{{no closing ']' for '%[' in scanf format string}} in test_variants()
|
D | format-strings.c | 21 int vscanf(const char *restrict format, va_list arg); 54 vscanf(s, ap); // expected-warning {{format string is not a string literal}} in check_string_literal() 96 vscanf(s, ap); // expected-warning {{format string is not a string literal}} in check_string_literal2()
|
/external/libxml2/ |
D | trio.h | 194 # undef vscanf 195 # define vscanf trio_vscanf macro
|
/external/libcxx/include/ |
D | cstdio | 66 int vscanf(const char* restrict format, va_list arg); // C99 160 using ::vscanf;
|
/external/llvm-project/libcxx/include/ |
D | cstdio | 65 int vscanf(const char* restrict format, va_list arg); // C99 163 using ::vscanf;
|
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
D | stdio_h.pass.cpp | 140 static_assert((std::is_same<decltype(vscanf("",va)), int>::value), ""); in main()
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | stdio_h.pass.cpp | 141 static_assert((std::is_same<decltype(vscanf("",va)), int>::value), ""); in main()
|
/external/libcxx/test/std/input.output/file.streams/c.files/ |
D | cstdio.pass.cpp | 149 static_assert((std::is_same<decltype(std::vscanf("",va)), int>::value), ""); in main()
|
/external/llvm-project/libcxx/test/std/input.output/file.streams/c.files/ |
D | cstdio.pass.cpp | 154 static_assert((std::is_same<decltype(std::vscanf(" ",va)), int>::value), ""); in main()
|
/external/llvm-project/clang/test/Analysis/ |
D | security-syntax-checks.m | 285 int vscanf(const char *format, va_list arg); function 336 vscanf(format, args); // expected-warning{{Call to function 'vscanf' is insecure}}
|
/external/python/pycparser/tests/c_files/ |
D | cppd_with_stdio_h.c | 4676 int vscanf();
|
/external/llvm/test/Transforms/InferFunctionAttrs/ |
D | no-proto.ll | 837 ; CHECK: declare void @vscanf(...) 838 declare void @vscanf(...)
|
D | annotate.ll | 853 ; CHECK: declare i32 @vscanf(i8* nocapture readonly, %opaque*) [[G0]] 854 declare i32 @vscanf(i8*, %opaque*)
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 1103 /// int vscanf(const char *format, va_list arg); 1104 TLI_DEFINE_ENUM_INTERNAL(vscanf) 1105 TLI_DEFINE_STRING_INTERNAL("vscanf")
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 1387 /// int vscanf(const char *format, va_list arg); 1388 TLI_DEFINE_ENUM_INTERNAL(vscanf) 1389 TLI_DEFINE_STRING_INTERNAL("vscanf")
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 1432 /// int vscanf(const char *format, va_list arg); 1433 TLI_DEFINE_ENUM_INTERNAL(vscanf) 1434 TLI_DEFINE_STRING_INTERNAL("vscanf")
|
/external/llvm-project/llvm/test/Transforms/InferFunctionAttrs/ |
D | annotate.ll | 993 ; CHECK: declare noundef i32 @vscanf(i8* nocapture noundef readonly, %opaque* noundef) [[G1]] 994 declare i32 @vscanf(i8*, %opaque*)
|
/external/llvm/lib/Transforms/Utils/ |
D | BuildLibCalls.cpp | 520 case LibFunc::vscanf: in inferLibFuncAttributes()
|
/external/llvm/lib/Analysis/ |
D | TargetLibraryInfo.cpp | 796 case LibFunc::vscanf: in isValidProtoForLibFunc()
|
/external/clang/include/clang/Basic/ |
D | Builtins.def | 86 // S:N: -> similar to the s:N: attribute, but the function is like vscanf 775 LIBBUILTIN(vscanf, "icC*Ra", "fS:0:", "stdio.h", ALL_LANGUAGES)
|
/external/llvm-project/clang/include/clang/Basic/ |
D | Builtins.def | 95 // S:N: -> similar to the s:N: attribute, but the function is like vscanf 1013 LIBBUILTIN(vscanf, "icC*Ra", "fS:0:", "stdio.h", ALL_LANGUAGES)
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | CSymbolMap.inc | 868 SYMBOL(vscanf, None, <stdio.h>)
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 1127 INTERCEPTOR(int, vscanf, const char *format, va_list ap) 1128 VSCANF_INTERCEPTOR_IMPL(vscanf, true, format, ap) 1149 FORMAT_INTERCEPTOR_IMPL(scanf, vscanf, format) 1175 COMMON_INTERCEPT_FUNCTION(vscanf); \
|