Home
last modified time | relevance | path

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

12345

/external/libcxx/test/std/localization/locales/locale.convenience/classification/
Disgraph.pass.cpp20 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/
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 …]
/external/libcxx/test/std/strings/c.strings/
Dcctype.pass.cpp38 #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/
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()
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/
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()
/external/libcxx/test/std/depr/depr.c.headers/
Dctype_h.pass.cpp36 #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/
Dcctype25 int isgraph(int c);
67 #ifdef isgraph
68 #undef isgraph
109 using ::isgraph;
/external/llvm-project/libcxx/include/
Dcctype24 int isgraph(int c);
66 #ifdef isgraph
67 #undef isgraph
108 using ::isgraph;
/external/llvm-project/libc/src/ctype/
Disgraph.cpp18 int LLVM_LIBC_ENTRYPOINT(isgraph)(int c) { return internal::isgraph(c); } in LLVM_LIBC_ENTRYPOINT() argument
DCMakeLists.txt54 isgraph
56 isgraph.cpp
58 isgraph.h
Disgraph.h14 int isgraph(int c);
Dispunct.cpp19 return !internal::isalnum(c) && internal::isgraph(c); in LLVM_LIBC_ENTRYPOINT()
/external/llvm-project/libc/test/src/ctype/
Disgraph_test.cpp17 EXPECT_NE(__llvm_libc::isgraph(ch), 0); in TEST()
19 EXPECT_EQ(__llvm_libc::isgraph(ch), 0); in TEST()
DCMakeLists.txt54 isgraph
60 libc.src.ctype.isgraph
/external/wpa_supplicant_8/src/wps/
Dhttpread.c111 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/
Dlibbuiltins-ctype-x86_64.c8 int isgraph(int);
30 (void)isgraph(x); in test()
Dlibbuiltins-ctype-powerpc64.c8 int isgraph(int);
30 (void)isgraph(x); in test()
/external/llvm-project/clang/test/Sema/
Dlibbuiltins-ctype-x86_64.c8 int isgraph(int);
30 (void)isgraph(x); in test()
Dlibbuiltins-ctype-powerpc64.c8 int isgraph(int);
30 (void)isgraph(x); in test()
/external/llvm-project/clang/test/Analysis/
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()
/external/python/cpython3/Lib/curses/
Dascii.py60 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/
Dascii.py60 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/
Dctype.c25 i += !!isgraph(c); in check_ctype()
51 i += !!isgraph(EOF); in check_ctype()
/external/openssh/openbsd-compat/
Dcharclass.h21 { "graph", isgraph },
Dvis.c50 (flag & VIS_GLOB) == 0) && isgraph((u_char)(c))) || \
56 isgraph((u_char)(c))))))

12345