Home
last modified time | relevance | path

Searched refs:isgraph (Results 201 – 225 of 4927) sorted by relevance

12345678910>>...198

/dports/devel/llvm13/llvm-project-13.0.1.src/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()
/dports/lang/clang-mesa/clang-13.0.1.src/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()
/dports/biology/sra-tools/sra-tools-2.11.0/ncbi-vdb/interfaces/os/win/
H A Dos-native.h106 int __cdecl isgraph ( int ch );
229 #define isgraph( ch ) isgraph ( ( unsigned char ) ( ch ) ) macro
/dports/biology/ncbi-vdb/ncbi-vdb-2.11.0/interfaces/os/win/
H A Dos-native.h106 int __cdecl isgraph ( int ch );
229 #define isgraph( ch ) isgraph ( ( unsigned char ) ( ch ) ) macro
/dports/net/rpki-client/rpki-client-portable-7.6/openbsd/src/include/
H A Dctype.h72 int isgraph(int);
135 __only_inline int isgraph(int _c) in isgraph() function
248 return isgraph(_c); in isgraph_l()
/dports/www/squid/squid-4.15/compat/
H A Dxis.h30 #define xisgraph(x) isgraph(static_cast<unsigned char>(x))
46 #define xisgraph(x) isgraph((unsigned char)x)
/dports/devel/boost-docs/boost_1_72_0/boost/spirit/home/support/char_encoding/
H A Dstandard.hpp92 isgraph(int ch) in isgraph() function
95 return std::isgraph(ch) != 0; in isgraph()
/dports/devel/hyperscan/boost_1_75_0/boost/spirit/home/support/char_encoding/
H A Dstandard.hpp92 isgraph(int ch) in isgraph() function
95 return std::isgraph(ch) != 0; in isgraph()
/dports/devel/boost-python-libs/boost_1_72_0/boost/spirit/home/support/char_encoding/
H A Dstandard.hpp92 isgraph(int ch) in isgraph() function
95 return std::isgraph(ch) != 0; in isgraph()
/dports/devel/R-cran-BH/BH/inst/include/boost/spirit/home/support/char_encoding/
H A Dstandard.hpp93 isgraph(int ch) in isgraph() function
96 return std::isgraph(ch) != 0; in isgraph()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/spirit/home/support/char_encoding/
H A Dstandard.hpp92 isgraph(int ch) in isgraph() function
95 return std::isgraph(ch) != 0; in isgraph()
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/spirit/home/support/char_encoding/
H A Dstandard.hpp92 isgraph(int ch) in isgraph() function
95 return std::isgraph(ch) != 0; in isgraph()
/dports/devel/boost-libs/boost_1_72_0/boost/spirit/home/support/char_encoding/
H A Dstandard.hpp92 isgraph(int ch) in isgraph() function
95 return std::isgraph(ch) != 0; in isgraph()
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/testsuite/22_locale/ctype/is/string/
H A D89728_neg.cc47 std::isgraph(make_str<char, 9>(), loc); // { dg-error "required from here" } in test01()
69 std::isgraph(make_str<wchar_t, 9>(), loc); // { dg-error "required from here" } in test02()
/dports/net-p2p/rtorrent/rtorrent-0.9.8/src/utils/
H A Dlockfile.cc57 return !std::isgraph(c); in operator ()()
63 return !std::isgraph(c) || c == ':'; in operator ()()
/dports/databases/py-gdbm/Python-3.8.12/Lib/curses/
H A Dascii.py60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/dports/lang/python310/Python-3.10.1/Lib/curses/
H A Dascii.py60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/dports/lang/python37/Python-3.7.12/Lib/curses/
H A Dascii.py60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/dports/lang/python38/Python-3.8.12/Lib/curses/
H A Dascii.py60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/dports/lang/python-legacy/Python-2.7.18/Lib/curses/
H A Dascii.py60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/dports/lang/python27/Python-2.7.18/Lib/curses/
H A Dascii.py60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/dports/lang/python-tools/Python-3.8.12/Lib/curses/
H A Dascii.py60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/dports/lang/python39/Python-3.9.9/Lib/curses/
H A Dascii.py60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/dports/databases/py-sqlite3/Python-3.8.12/Lib/curses/
H A Dascii.py60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/newlib/libc/include/
H A Dctype.h12 int _EXFUN(isgraph, (int __c));
51 #define isgraph(c) ((_ctype_+1)[(unsigned)(c)]&(_P|_U|_L|_N)) macro

12345678910>>...198