Home
last modified time | relevance | path

Searched refs:indeterminate (Results 1 – 25 of 154) sorted by relevance

1234567

/third_party/boost/libs/logic/test/
Dtribool_test.cpp17 tribool z(indeterminate); // indeterminate in test_main()
37 BOOST_CHECK(indeterminate(x == indeterminate)); in test_main()
38 BOOST_CHECK(indeterminate(indeterminate == x)); in test_main()
39 BOOST_CHECK(indeterminate(x != indeterminate)); in test_main()
40 BOOST_CHECK(indeterminate(indeterminate != x)); in test_main()
53 BOOST_CHECK(indeterminate(y == indeterminate)); in test_main()
54 BOOST_CHECK(indeterminate(indeterminate == y)); in test_main()
55 BOOST_CHECK(indeterminate(y != indeterminate)); in test_main()
56 BOOST_CHECK(indeterminate(indeterminate != y)); in test_main()
60 BOOST_CHECK(indeterminate(z || !z)); in test_main()
[all …]
Dtribool_io_test.cpp31 wout << std::boolalpha << tribool(indeterminate); in test_main()
54 x = indeterminate; in test_main()
62 out << indeterminate; in test_main()
88 x = indeterminate; in test_main()
96 out << std::boolalpha << indeterminate; in test_main()
139 BOOST_CHECK(indeterminate(x)); in test_main()
171 BOOST_CHECK(indeterminate(x)); in test_main()
193 BOOST_CHECK(indeterminate(x)); in test_main()
205 BOOST_CHECK(indeterminate(x)); in test_main()
/third_party/boost/doc/html/boost_asio/example/cpp11/http/server/
Drequest_parser.cpp40 return indeterminate; in consume()
46 return indeterminate; in consume()
55 return indeterminate; in consume()
61 return indeterminate; in consume()
70 return indeterminate; in consume()
76 return indeterminate; in consume()
86 return indeterminate; in consume()
96 return indeterminate; in consume()
106 return indeterminate; in consume()
118 return indeterminate; in consume()
[all …]
Drequest_parser.hpp32 enum result_type { good, bad, indeterminate }; enumerator
48 return std::make_tuple(indeterminate, begin); in parse()
/third_party/boost/libs/asio/example/cpp11/http/server/
Drequest_parser.cpp40 return indeterminate; in consume()
46 return indeterminate; in consume()
55 return indeterminate; in consume()
61 return indeterminate; in consume()
70 return indeterminate; in consume()
76 return indeterminate; in consume()
86 return indeterminate; in consume()
96 return indeterminate; in consume()
106 return indeterminate; in consume()
118 return indeterminate; in consume()
[all …]
Drequest_parser.hpp32 enum result_type { good, bad, indeterminate }; enumerator
48 return std::make_tuple(indeterminate, begin); in parse()
/third_party/boost/libs/asio/example/cpp03/http/server3/
Drequest_parser.cpp40 return boost::indeterminate; in consume()
46 return boost::indeterminate; in consume()
55 return boost::indeterminate; in consume()
61 return boost::indeterminate; in consume()
70 return boost::indeterminate; in consume()
76 return boost::indeterminate; in consume()
86 return boost::indeterminate; in consume()
96 return boost::indeterminate; in consume()
106 return boost::indeterminate; in consume()
118 return boost::indeterminate; in consume()
[all …]
/third_party/boost/doc/html/boost_asio/example/cpp03/http/server3/
Drequest_parser.cpp40 return boost::indeterminate; in consume()
46 return boost::indeterminate; in consume()
55 return boost::indeterminate; in consume()
61 return boost::indeterminate; in consume()
70 return boost::indeterminate; in consume()
76 return boost::indeterminate; in consume()
86 return boost::indeterminate; in consume()
96 return boost::indeterminate; in consume()
106 return boost::indeterminate; in consume()
118 return boost::indeterminate; in consume()
[all …]
/third_party/boost/doc/html/boost_asio/example/cpp03/http/server2/
Drequest_parser.cpp40 return boost::indeterminate; in consume()
46 return boost::indeterminate; in consume()
55 return boost::indeterminate; in consume()
61 return boost::indeterminate; in consume()
70 return boost::indeterminate; in consume()
76 return boost::indeterminate; in consume()
86 return boost::indeterminate; in consume()
96 return boost::indeterminate; in consume()
106 return boost::indeterminate; in consume()
118 return boost::indeterminate; in consume()
[all …]
/third_party/boost/libs/asio/example/cpp03/http/server2/
Drequest_parser.cpp40 return boost::indeterminate; in consume()
46 return boost::indeterminate; in consume()
55 return boost::indeterminate; in consume()
61 return boost::indeterminate; in consume()
70 return boost::indeterminate; in consume()
76 return boost::indeterminate; in consume()
86 return boost::indeterminate; in consume()
96 return boost::indeterminate; in consume()
106 return boost::indeterminate; in consume()
118 return boost::indeterminate; in consume()
[all …]
/third_party/boost/doc/html/boost_asio/example/cpp03/http/server/
Drequest_parser.cpp40 return boost::indeterminate; in consume()
46 return boost::indeterminate; in consume()
55 return boost::indeterminate; in consume()
61 return boost::indeterminate; in consume()
70 return boost::indeterminate; in consume()
76 return boost::indeterminate; in consume()
86 return boost::indeterminate; in consume()
96 return boost::indeterminate; in consume()
106 return boost::indeterminate; in consume()
118 return boost::indeterminate; in consume()
[all …]
/third_party/boost/libs/asio/example/cpp03/http/server/
Drequest_parser.cpp40 return boost::indeterminate; in consume()
46 return boost::indeterminate; in consume()
55 return boost::indeterminate; in consume()
61 return boost::indeterminate; in consume()
70 return boost::indeterminate; in consume()
76 return boost::indeterminate; in consume()
86 return boost::indeterminate; in consume()
96 return boost::indeterminate; in consume()
106 return boost::indeterminate; in consume()
118 return boost::indeterminate; in consume()
[all …]
/third_party/boost/libs/numeric/interval/test/
Dcmp_tribool.cpp45 BOOST_CHECK(indeterminate(a < b)); in test_13_24()
46 BOOST_CHECK(indeterminate(a <= b)); in test_13_24()
47 BOOST_CHECK(indeterminate(a > b)); in test_13_24()
48 BOOST_CHECK(indeterminate(a >= b)); in test_13_24()
50 BOOST_CHECK(indeterminate(b < a)); in test_13_24()
51 BOOST_CHECK(indeterminate(b <= a)); in test_13_24()
52 BOOST_CHECK(indeterminate(b > a)); in test_13_24()
53 BOOST_CHECK(indeterminate(b >= a)); in test_13_24()
55 BOOST_CHECK(indeterminate(a == b)); in test_13_24()
56 BOOST_CHECK(indeterminate(a != b)); in test_13_24()
[all …]
/third_party/boost/libs/asio/example/cpp03/http/server4/
Drequest_parser.cpp41 yield return boost::indeterminate; in consume()
48 yield return boost::indeterminate; in consume()
54 yield return boost::indeterminate; in consume()
60 yield return boost::indeterminate; in consume()
64 yield return boost::indeterminate; in consume()
66 yield return boost::indeterminate; in consume()
68 yield return boost::indeterminate; in consume()
70 yield return boost::indeterminate; in consume()
74 yield return boost::indeterminate; in consume()
81 yield return boost::indeterminate; in consume()
[all …]
/third_party/boost/boost/safe_numerics/
Dchecked_result_operations.hpp73 indeterminate, enumerator
88 return indeterminate; in to_flag()
251 indeterminate, enumerator
275 return indeterminate; in to_flag()
309 value_type::indeterminate, // indeterminate, in operator *()
319 value_type::indeterminate, // indeterminate, in operator *()
329 value_type::indeterminate, // indeterminate, in operator *()
339 value_type::indeterminate, // indeterminate, in operator *()
348 value_type::indeterminate, // indeterminate, in operator *()
352 value_type::indeterminate, // less_than_min, in operator *()
[all …]
/third_party/boost/boost/logic/
Dtribool.hpp63 indeterminate(tribool x,
139 BOOST_CONSTEXPR inline bool indeterminate(tribool x, detail::indeterminate_t) BOOST_NOEXCEPT in indeterminate() function
176 :tribool(indeterminate); in operator !()
216 : ((static_cast<bool>(x) && static_cast<bool>(y)) ? tribool(true) : indeterminate) in operator &&()
236 { return !x? tribool(false) : tribool(indeterminate); } in operator &&()
242 { return !x? tribool(false) : tribool(indeterminate); } in operator &&()
281 : ((static_cast<bool>(x) || static_cast<bool>(y)) ? tribool(true) : tribool(indeterminate)) in operator ||()
301 { return x? tribool(true) : tribool(indeterminate); } in operator ||()
307 { return x? tribool(true) : tribool(indeterminate); } in operator ||()
345 return (indeterminate(x) || indeterminate(y)) in operator ==()
[all …]
Dtribool_io.hpp175 if (!indeterminate(x)) { in operator <<()
218 { return out << tribool(indeterminate); } in operator <<()
322 else if (othername_ok) x = indeterminate; in operator >>()
332 case 2: x = indeterminate; break; in operator >>()
/third_party/boost/boost/numeric/interval/compare/
Dtribool.hpp29 return logic::indeterminate; in operator <()
38 return logic::indeterminate; in operator <()
47 return logic::indeterminate; in operator <=()
56 return logic::indeterminate; in operator <=()
65 return logic::indeterminate; in operator >()
74 return logic::indeterminate; in operator >()
83 return logic::indeterminate; in operator >=()
92 return logic::indeterminate; in operator >=()
101 return logic::indeterminate; in operator ==()
110 return logic::indeterminate; in operator ==()
[all …]
/third_party/boost/libs/beast/include/boost/beast/core/
Ddetect_ssl.hpp129 return boost::indeterminate; in is_tls_client_hello()
137 return boost::indeterminate; in is_tls_client_hello()
149 return boost::indeterminate; in is_tls_client_hello()
157 return boost::indeterminate; in is_tls_client_hello()
238 if(! boost::indeterminate(result)) in detect_ssl()
574 if(! boost::indeterminate(result_)) in operator ()()
/third_party/boost/boost/beast/core/
Ddetect_ssl.hpp129 return boost::indeterminate; in is_tls_client_hello()
137 return boost::indeterminate; in is_tls_client_hello()
149 return boost::indeterminate; in is_tls_client_hello()
157 return boost::indeterminate; in is_tls_client_hello()
238 if(! boost::indeterminate(result)) in detect_ssl()
574 if(! boost::indeterminate(result_)) in operator ()()
/third_party/boost/libs/logic/test/compile-fail/
Dimplicit_int_3.cpp10 using boost::logic::indeterminate; in main()
13 tribool i(indeterminate); in main()
Dimplicit_int_1.cpp10 using boost::logic::indeterminate; in main()
13 tribool i(indeterminate); in main()
Dimplicit_int_2.cpp10 using boost::logic::indeterminate; in main()
13 tribool i(indeterminate); in main()
Dimplicit.cpp10 using boost::logic::indeterminate; in main()
13 tribool i(indeterminate); in main()
/third_party/boost/boost/beast/_experimental/http/impl/
Dicy_stream.hpp46 return boost::indeterminate; in is_icy()
113 if(boost::indeterminate(result)) in operator ()()
249 if(boost::indeterminate(result)) in read_some()

1234567