/external/libcxx/test/std/localization/locales/locale.convenience/classification/ |
D | isgraph.pass.cpp | 20 assert(!std::isgraph(' ', l)); in main() 21 assert( std::isgraph('<', l)); in main() 22 assert(!std::isgraph('\x8', l)); in main() 23 assert( std::isgraph('A', l)); in main() 24 assert( std::isgraph('a', l)); in main() 25 assert( std::isgraph('z', l)); in main() 26 assert( std::isgraph('3', l)); in main() 27 assert( std::isgraph('.', l)); in main() 28 assert( std::isgraph('f', l)); in main() 29 assert( std::isgraph('9', l)); in main() [all …]
|
/external/llvm-project/libcxx/test/std/localization/locales/locale.convenience/classification/ |
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 …]
|
/external/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 38 #ifdef isgraph 39 #error isgraph defined 82 ASSERT_SAME_TYPE(int, decltype(std::isgraph(0))); in main() 97 assert( std::isgraph('a')); in main()
|
/external/llvm-project/libcxx/test/std/strings/c.strings/ |
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()
|
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
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()
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 36 #ifdef isgraph 37 #error isgraph defined 79 static_assert((std::is_same<decltype(isgraph(0)), int>::value), ""); in main() 94 assert(isgraph('a')); in main()
|
/external/libcxx/include/ |
D | cctype | 25 int isgraph(int c); 67 #ifdef isgraph 68 #undef isgraph 109 using ::isgraph;
|
/external/llvm-project/libcxx/include/ |
D | cctype | 24 int isgraph(int c); 66 #ifdef isgraph 67 #undef isgraph 108 using ::isgraph;
|
/external/llvm-project/libc/src/ctype/ |
D | isgraph.cpp | 18 int LLVM_LIBC_ENTRYPOINT(isgraph)(int c) { return internal::isgraph(c); } in LLVM_LIBC_ENTRYPOINT() argument
|
D | CMakeLists.txt | 54 isgraph 56 isgraph.cpp 58 isgraph.h
|
D | isgraph.h | 14 int isgraph(int c);
|
D | ispunct.cpp | 19 return !internal::isalnum(c) && internal::isgraph(c); in LLVM_LIBC_ENTRYPOINT()
|
/external/llvm-project/libc/test/src/ctype/ |
D | isgraph_test.cpp | 17 EXPECT_NE(__llvm_libc::isgraph(ch), 0); in TEST() 19 EXPECT_EQ(__llvm_libc::isgraph(ch), 0); in TEST()
|
D | CMakeLists.txt | 54 isgraph 60 libc.src.ctype.isgraph
|
/external/wpa_supplicant_8/src/wps/ |
D | httpread.c | 111 end1 = !isgraph(c1); in word_eq() 112 end2 = !isgraph(c2); in word_eq() 162 while (isgraph(*hbp)) in httpread_hdr_option_analyze() 180 while (isgraph(*hbp)) in httpread_hdr_option_analyze() 206 if (!isgraph(*hbp)) in httpread_hdr_analyze() 215 while (isgraph(*hbp)) in httpread_hdr_analyze() 253 while (isgraph(*hbp)) in httpread_hdr_analyze() 263 while (isgraph(*hbp)) in httpread_hdr_analyze() 304 if (!isgraph(*hbp)) in httpread_hdr_analyze()
|
/external/clang/test/Sema/ |
D | libbuiltins-ctype-x86_64.c | 8 int isgraph(int); 30 (void)isgraph(x); in test()
|
D | libbuiltins-ctype-powerpc64.c | 8 int isgraph(int); 30 (void)isgraph(x); in test()
|
/external/llvm-project/clang/test/Sema/ |
D | libbuiltins-ctype-x86_64.c | 8 int isgraph(int); 30 (void)isgraph(x); in test()
|
D | libbuiltins-ctype-powerpc64.c | 8 int isgraph(int); 30 (void)isgraph(x); in test()
|
/external/llvm-project/clang/test/Analysis/ |
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()
|
/external/python/cpython3/Lib/curses/ |
D | ascii.py | 60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function 63 def ispunct(c): return isgraph(c) and not isalnum(c)
|
/external/python/cpython2/Lib/curses/ |
D | ascii.py | 60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function 63 def ispunct(c): return isgraph(c) and not isalnum(c)
|
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/ |
D | ctype.c | 25 i += !!isgraph(c); in check_ctype() 51 i += !!isgraph(EOF); in check_ctype()
|
/external/openssh/openbsd-compat/ |
D | charclass.h | 21 { "graph", isgraph },
|
D | vis.c | 50 (flag & VIS_GLOB) == 0) && isgraph((u_char)(c))) || \ 56 isgraph((u_char)(c))))))
|