| /llvm-project-15.0.7/libcxx/test/std/localization/locales/locale.convenience/classification/ |
| H A D | isgraph.pass.cpp | 21 assert(!std::isgraph(' ', l)); in main() 22 assert( std::isgraph('<', l)); in main() 23 assert(!std::isgraph('\x8', l)); in main() 24 assert( std::isgraph('A', l)); in main() 25 assert( std::isgraph('a', l)); in main() 26 assert( std::isgraph('z', l)); in main() 27 assert( std::isgraph('3', l)); in main() 28 assert( std::isgraph('.', l)); in main() 29 assert( std::isgraph('f', l)); in main() 30 assert( std::isgraph('9', l)); in main() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/strings/c.strings/ |
| H A D | cctype.pass.cpp | 37 #ifdef isgraph 38 #error isgraph defined 81 ASSERT_SAME_TYPE(int, decltype(std::isgraph(0))); in main() 96 assert( std::isgraph('a')); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/depr/depr.c.headers/ |
| H A D | ctype_h.pass.cpp | 37 #ifdef isgraph 38 #error isgraph defined 80 static_assert((std::is_same<decltype(isgraph(0)), int>::value), ""); in main() 95 assert(isgraph('a')); in main()
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | cctype | 24 int isgraph(int c); 67 #ifdef isgraph 68 #undef isgraph 109 using ::isgraph _LIBCPP_USING_IF_EXISTS;
|
| H A D | ctype.h | 47 #undef isgraph
|
| /llvm-project-15.0.7/libc/src/ctype/ |
| H A D | isgraph.cpp | 18 LLVM_LIBC_FUNCTION(int, isgraph, (int c)) { 19 return static_cast<int>(internal::isgraph(static_cast<unsigned>(c)));
|
| H A D | CMakeLists.txt | 56 isgraph 58 isgraph.cpp 60 isgraph.h
|
| H A D | isgraph.h | 14 int isgraph(int c);
|
| H A D | ispunct.cpp | 20 return static_cast<int>(!internal::isalnum(ch) && internal::isgraph(ch));
|
| /llvm-project-15.0.7/libc/test/src/ctype/ |
| H A D | isgraph_test.cpp | 17 EXPECT_NE(__llvm_libc::isgraph(ch), 0); in TEST() 19 EXPECT_EQ(__llvm_libc::isgraph(ch), 0); in TEST()
|
| H A D | CMakeLists.txt | 64 isgraph 70 libc.src.ctype.isgraph
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | libbuiltins-ctype-x86_64.c | 8 int isgraph(int); 30 (void)isgraph(x); in test()
|
| H A D | libbuiltins-ctype-powerpc64.c | 8 int isgraph(int); 30 (void)isgraph(x); in test()
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | std-c-library-functions.c | 213 int isgraph(int); 217 if (isgraph(y)) in test_isgraph_isprint() 224 clang_analyzer_eval(isgraph(x)); // expected-warning{{TRUE}} in test_mixed_branches()
|
| H A D | taint-generic.c | 921 int isgraph(int c); 951 int graph = isgraph(c); in testIsFunctions()
|
| /llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/ |
| H A D | ctype.c | 25 i += !!isgraph(c); in check_ctype() 51 i += !!isgraph(EOF); in check_ctype()
|
| /llvm-project-15.0.7/libc/src/__support/ |
| H A D | ctype_utils.h | 29 static constexpr bool isgraph(unsigned ch) { return 0x20 < ch && ch < 0x7f; } in isgraph() function
|
| /llvm-project-15.0.7/libcxx/include/__support/xlocale/ |
| H A D | __posix_l_fallback.h | 43 return ::isgraph(__c); in isgraph_l()
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/ |
| H A D | unused-return-value.rst | 23 bsearch, ferror, feof, isalnum, isalpha, isblank, iscntrl, isdigit, isgraph,
|
| /llvm-project-15.0.7/libc/config/linux/arm/ |
| H A D | entrypoints.txt | 9 libc.src.ctype.isgraph
|
| /llvm-project-15.0.7/libc/config/darwin/arm/ |
| H A D | entrypoints.txt | 9 libc.src.ctype.isgraph
|
| /llvm-project-15.0.7/libc/config/windows/ |
| H A D | entrypoints.txt | 9 libc.src.ctype.isgraph
|
| /llvm-project-15.0.7/libc/config/linux/aarch64/ |
| H A D | entrypoints.txt | 9 libc.src.ctype.isgraph
|
| /llvm-project-15.0.7/libc/config/linux/x86_64/ |
| H A D | entrypoints.txt | 9 libc.src.ctype.isgraph
|
| /llvm-project-15.0.7/libc/spec/ |
| H A D | stdc.td | 54 "isgraph",
|