/external/llvm-project/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 25 #ifdef isblank 26 #error isblank defined 78 ASSERT_SAME_TYPE(int, decltype(std::isblank(0))); in main() 93 assert( std::isblank(' ')); in main()
|
/external/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 26 #ifdef isblank 27 #error isblank defined 79 ASSERT_SAME_TYPE(int, decltype(std::isblank(0))); in main() 94 assert( std::isblank(' ')); in main()
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 24 #ifdef isblank 25 #error isblank defined 76 static_assert((std::is_same<decltype(isblank(0)), int>::value), ""); in main() 91 assert(isblank(' ')); in main()
|
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 25 #ifdef isblank 26 #error isblank defined 77 static_assert((std::is_same<decltype(isblank(0)), int>::value), ""); in main() 92 assert(isblank(' ')); in main()
|
/external/llvm-project/clang/test/Analysis/ |
D | std-c-library-functions.c | 190 int isblank(int); 192 clang_analyzer_eval(isblank('\t')); // expected-warning{{TRUE}} in test_isblank() 193 clang_analyzer_eval(isblank(' ')); // expected-warning{{TRUE}} in test_isblank() 194 clang_analyzer_eval(isblank('\n')); // expected-warning{{FALSE}} in test_isblank() 225 clang_analyzer_eval(isblank(x)); // expected-warning{{FALSE}} in test_mixed_branches()
|
/external/llvm-project/libcxx/include/ |
D | cctype | 21 int isblank(int c); // C99 54 #ifdef isblank 55 #undef isblank 105 using ::isblank;
|
D | ctype.h | 44 #undef isblank
|
/external/libcxx/include/ |
D | cctype | 22 int isblank(int c); // C99 55 #ifdef isblank 56 #undef isblank 106 using ::isblank;
|
D | ctype.h | 45 #undef isblank
|
/external/llvm-project/libc/test/src/ctype/ |
D | isblank_test.cpp | 17 EXPECT_NE(__llvm_libc::isblank(ch), 0); in TEST() 19 EXPECT_EQ(__llvm_libc::isblank(ch), 0); in TEST()
|
D | CMakeLists.txt | 24 isblank 30 libc.src.ctype.isblank
|
/external/llvm-project/libc/src/ctype/ |
D | CMakeLists.txt | 28 isblank 30 isblank.cpp 32 isblank.h
|
D | isblank.h | 14 int isblank(int c);
|
D | isblank.cpp | 17 int LLVM_LIBC_ENTRYPOINT(isblank)(int c) { in LLVM_LIBC_ENTRYPOINT() argument
|
/external/llvm-project/clang/test/Sema/ |
D | libbuiltins-ctype-x86_64.c | 5 int isblank(int); 24 (void)isblank(x); in test()
|
D | libbuiltins-ctype-powerpc64.c | 5 int isblank(int); 24 (void)isblank(x); in test()
|
/external/clang/test/Sema/ |
D | libbuiltins-ctype-x86_64.c | 5 int isblank(int); 24 (void)isblank(x); in test()
|
D | libbuiltins-ctype-powerpc64.c | 5 int isblank(int); 24 (void)isblank(x); in test()
|
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/ |
D | ctype.c | 19 i += !!isblank(c); in check_ctype() 48 i += !!isblank(EOF); in check_ctype()
|
/external/openssh/openbsd-compat/ |
D | charclass.h | 18 { "blank", isblank },
|
D | bsd-misc.h | 121 int isblank(int);
|
/external/jemalloc_new/include/jemalloc/internal/ |
D | jemalloc_internal_decls.h | 82 isblank(int c) { in isblank() function
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_common.c | 215 while (isblank((unsigned char) *start)) in wpa_get_wowlan_triggers() 220 while (!isblank((unsigned char) *end) && *end != '\0') in wpa_get_wowlan_triggers()
|
/external/python/cpython3/Lib/curses/ |
D | ascii.py | 57 def isblank(c): return _ctoi(c) in (9, 32) function
|
/external/python/cpython2/Lib/curses/ |
D | ascii.py | 57 def isblank(c): return _ctoi(c) in (9, 32) function
|