Home
last modified time | relevance | path

Searched refs:isgraph (Results 1 – 25 of 33) sorted by relevance

12

/llvm-project-15.0.7/libcxx/test/std/localization/locales/locale.convenience/classification/
H A Disgraph.pass.cpp21 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 Dcctype.pass.cpp37 #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 Dctype_h.pass.cpp37 #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 Dcctype24 int isgraph(int c);
67 #ifdef isgraph
68 #undef isgraph
109 using ::isgraph _LIBCPP_USING_IF_EXISTS;
H A Dctype.h47 #undef isgraph
/llvm-project-15.0.7/libc/src/ctype/
H A Disgraph.cpp18 LLVM_LIBC_FUNCTION(int, isgraph, (int c)) {
19 return static_cast<int>(internal::isgraph(static_cast<unsigned>(c)));
H A DCMakeLists.txt56 isgraph
58 isgraph.cpp
60 isgraph.h
H A Disgraph.h14 int isgraph(int c);
H A Dispunct.cpp20 return static_cast<int>(!internal::isalnum(ch) && internal::isgraph(ch));
/llvm-project-15.0.7/libc/test/src/ctype/
H A Disgraph_test.cpp17 EXPECT_NE(__llvm_libc::isgraph(ch), 0); in TEST()
19 EXPECT_EQ(__llvm_libc::isgraph(ch), 0); in TEST()
H A DCMakeLists.txt64 isgraph
70 libc.src.ctype.isgraph
/llvm-project-15.0.7/clang/test/Sema/
H A Dlibbuiltins-ctype-x86_64.c8 int isgraph(int);
30 (void)isgraph(x); in test()
H A Dlibbuiltins-ctype-powerpc64.c8 int isgraph(int);
30 (void)isgraph(x); in test()
/llvm-project-15.0.7/clang/test/Analysis/
H A Dstd-c-library-functions.c213 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 Dtaint-generic.c921 int isgraph(int c);
951 int graph = isgraph(c); in testIsFunctions()
/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/
H A Dctype.c25 i += !!isgraph(c); in check_ctype()
51 i += !!isgraph(EOF); in check_ctype()
/llvm-project-15.0.7/libc/src/__support/
H A Dctype_utils.h29 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.h43 return ::isgraph(__c); in isgraph_l()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dunused-return-value.rst23 bsearch, ferror, feof, isalnum, isalpha, isblank, iscntrl, isdigit, isgraph,
/llvm-project-15.0.7/libc/config/linux/arm/
H A Dentrypoints.txt9 libc.src.ctype.isgraph
/llvm-project-15.0.7/libc/config/darwin/arm/
H A Dentrypoints.txt9 libc.src.ctype.isgraph
/llvm-project-15.0.7/libc/config/windows/
H A Dentrypoints.txt9 libc.src.ctype.isgraph
/llvm-project-15.0.7/libc/config/linux/aarch64/
H A Dentrypoints.txt9 libc.src.ctype.isgraph
/llvm-project-15.0.7/libc/config/linux/x86_64/
H A Dentrypoints.txt9 libc.src.ctype.isgraph
/llvm-project-15.0.7/libc/spec/
H A Dstdc.td54 "isgraph",

12