/third_party/boost/libs/locale/test/ |
D | test_utf.cpp | 83 if(codepoint == incomplete || codepoint != illegal) in test_to() 86 if(codepoint == incomplete) { in test_to() 91 if(codepoint != incomplete && codepoint != illegal) { in test_to() 193 test_to("",incomplete); in main() 196 test_to("\xc2",incomplete); in main() 198 test_to("\xdf",incomplete); in main() 200 test_to("\xe0",incomplete); in main() 201 test_to("\xe0\xa0",incomplete); in main() 203 test_to("\xef\xbf",incomplete); in main() 204 test_to("\xef",incomplete); in main() [all …]
|
D | test_codepage_converter.cpp | 48 static const unsigned incomplete=0xFFFFFFFE; variable 74 return res == incomplete; in test_incomplete() 103 TEST_TO("\x82",incomplete); in test_shiftjis() 213 TEST_TO("\xC2",incomplete); in main() 215 TEST_TO("\xdf",incomplete); in main() 217 TEST_TO("\xe0",incomplete); in main() 218 TEST_TO("\xe0\xa0",incomplete); in main() 220 TEST_TO("\xef\xbf",incomplete); in main() 221 TEST_TO("\xef",incomplete); in main() 223 TEST_TO("\xf0\x90\x80",incomplete); in main() [all …]
|
/third_party/boost/libs/mpl/test/aux_/ |
D | msvc_is_class.cpp | 32 MPL_ASSERT_NOT(( aux::msvc_is_class< incomplete* > )); in MPL_TEST_CASE() 33 MPL_ASSERT_NOT(( aux::msvc_is_class< incomplete& > )); in MPL_TEST_CASE() 39 MPL_ASSERT(( aux::msvc_is_class< incomplete > )); in MPL_TEST_CASE() 43 MPL_ASSERT(( aux::msvc_is_class< A<incomplete> > )); in MPL_TEST_CASE()
|
/third_party/boost/boost/locale/ |
D | utf.hpp | 44 static const code_point incomplete = 0xFFFFFFFEu; variable 196 return incomplete; in decode() 220 return incomplete; in decode() 227 return incomplete; in decode() 234 return incomplete; in decode() 355 return incomplete; in decode() 363 return incomplete; in decode() 429 return boost::locale::utf::incomplete; in decode()
|
D | util.hpp | 91 static const uint32_t incomplete=utf::incomplete; member in boost::locale::util::base_converter 144 return incomplete; in to_unicode() 167 return incomplete; in from_unicode()
|
D | utf8_codecvt.hpp | 47 if(c!=utf::illegal && c!=utf::incomplete) in to_unicode() 58 return utf::incomplete; in from_unicode()
|
/third_party/boost/libs/fusion/test/support/ |
D | is_sequence.cpp | 13 struct incomplete; 14 BOOST_STATIC_ASSERT(!boost::fusion::traits::is_sequence<incomplete>::value); 15 BOOST_STATIC_ASSERT(!boost::fusion::traits::is_native_fusion_sequence<incomplete>::value);
|
D | is_view.cpp | 12 struct incomplete; 13 BOOST_STATIC_ASSERT(!boost::fusion::traits::is_view<incomplete>::value);
|
D | tag_of.cpp | 13 struct incomplete; 14 typedef boost::fusion::traits::tag_of<incomplete>::type Tag;
|
/third_party/boost/libs/smart_ptr/test/ |
D | smart_ptr_test.cpp | 48 Incomplete * get_ptr( boost::shared_ptr<Incomplete>& incomplete ) in get_ptr() argument 50 return incomplete.get(); in get_ptr() 82 Incomplete * check_incomplete( boost::scoped_ptr<Incomplete>& incomplete ) in check_incomplete() argument 84 return incomplete.get(); in check_incomplete() 87 Incomplete * check_incomplete( boost::shared_ptr<Incomplete>& incomplete, in check_incomplete() argument 90 incomplete.swap(i2); in check_incomplete() 91 std::cout << incomplete.use_count() << ' ' << incomplete.unique() << '\n'; in check_incomplete() 92 return incomplete.get(); in check_incomplete()
|
D | wp_convertible_test.cpp | 16 class incomplete; 40 int f( boost::weak_ptr<incomplete> ) in f() argument 55 int g( boost::weak_ptr<incomplete> ) in g() argument
|
D | shared_ptr_convertible_test.cpp | 16 class incomplete; 40 int f( boost::shared_ptr<incomplete> ) in f() argument 55 int g( boost::shared_ptr<incomplete> ) in g() argument
|
D | weak_ptr_test.cpp | 53 class incomplete; 55 boost::shared_ptr<incomplete> create_incomplete(); 87 boost::weak_ptr<incomplete> wp; in default_constructor() 178 boost::shared_ptr<incomplete> sp; in shared_ptr_constructor() 180 boost::weak_ptr<incomplete> wp(sp); in shared_ptr_constructor() 188 boost::shared_ptr<incomplete> sp = create_incomplete(); in shared_ptr_constructor() 191 boost::weak_ptr<incomplete> wp(sp); in shared_ptr_constructor() 194 boost::shared_ptr<incomplete> sp2(wp); in shared_ptr_constructor() 238 boost::weak_ptr<incomplete> wp; in copy_constructor() 239 boost::weak_ptr<incomplete> wp2(wp); in copy_constructor() [all …]
|
D | weak_ptr_alias_move_test.cpp | 20 class incomplete; 58 boost::shared_ptr<incomplete> p; in main() 59 boost::weak_ptr<incomplete> p2( p ); in main()
|
/third_party/boost/libs/locale/src/posix/ |
D | codecvt.cpp | 74 point = incomplete; in mb2_iconv_converter() 121 return incomplete; in to_unicode() 127 if(index != incomplete) { in to_unicode() 132 return incomplete; in to_unicode() 160 return incomplete; in from_unicode() 180 return incomplete; in from_unicode()
|
/third_party/boost/libs/mpl/test/ |
D | set.cpp | 258 MPL_ASSERT_NOT(( has_key<s,incomplete> )); in empty_set_types_variety_test() 263 MPL_ASSERT_NOT(( has_key<s,incomplete const> )); in empty_set_types_variety_test() 267 MPL_ASSERT_NOT(( has_key<s,incomplete*> )); in empty_set_types_variety_test() 271 MPL_ASSERT_NOT(( has_key<s,incomplete&> )); in empty_set_types_variety_test() 283 MPL_ASSERT(( has_key<s,incomplete> )); in set_types_variety_test() 285 MPL_ASSERT(( has_key<s,incomplete volatile&> )); in set_types_variety_test() 292 MPL_ASSERT_NOT(( has_key<s,incomplete const> )); in set_types_variety_test() 294 MPL_ASSERT_NOT(( has_key<s,incomplete&> )); in set_types_variety_test() 305 char,int const,long*,UDT* const,incomplete,abstract in MPL_TEST_CASE() 306 , incomplete volatile&,abstract const& in MPL_TEST_CASE()
|
/third_party/boost/libs/beast/test/beast/websocket/ |
D | _detail_decorator.cpp | 85 struct incomplete; 86 std::shared_ptr<incomplete> sp1; 87 std::shared_ptr<incomplete> sp2;
|
/third_party/json/doc/mkdocs/docs/features/binary_formats/ |
D | index.md | 18 | BSON | incomplete: top-level value must be an object | incomplete, but all JSON types are … 19 | CBOR | complete | incomplete, but all JSON types are …
|
/third_party/boost/libs/type_erasure/test/ |
D | test_is_placeholder.cpp | 19 struct incomplete; 29 BOOST_MPL_ASSERT_NOT((is_placeholder<incomplete>));
|
/third_party/boost/libs/math/doc/sf/ |
D | beta_derivative.qbk | 22 computes the partial derivative with respect to /x/ of the incomplete 34 Almost identical to the incomplete beta function __ibeta. 38 This function just expose some of the internals of the incomplete
|
D | gamma_derivatives.qbk | 22 implements the partial derivative with respect to /x/ of the incomplete 37 Almost identical to the incomplete gamma function __gamma_p: refer to 42 This function just expose some of the internals of the incomplete
|
D | ibeta_inv.qbk | 62 There are six [@http://functions.wolfram.com/GammaBetaErf/ incomplete beta function inverses] 64 any of the three parameters to the incomplete beta, starting from either 65 the result of the incomplete beta (p) or its complement (q). 69 [tip When people normally talk about the inverse of the incomplete 180 of the regular forward incomplete beta functions. However, 186 exercises some rather extreme cases in the incomplete beta function 207 generous tolerances: in general both the incomplete beta and its 225 incomplete beta functions. Up to 5 iterations may be 259 and again expresses the inverse incomplete beta in terms of the 269 4 of the paper is used. This expresses the inverse incomplete beta in terms [all …]
|
D | ibeta.qbk | 39 There are four [@http://en.wikipedia.org/wiki/Incomplete_beta_function incomplete beta functions] 65 Returns the normalised incomplete beta function of a, b and x: 77 Returns the normalised complement of the incomplete beta function of a, b and x: 87 Returns the full (non-normalised) incomplete beta function of a, b and x: 97 Returns the full (non-normalised) complement of the incomplete beta function of a, b and x: 140 …oid=131766.131776 "Algorithm 708; Significant digit computation of the incomplete beta function ra… 174 Where Q(a,x) is an [@http://functions.wolfram.com/GammaBetaErf/Gamma2/ incomplete gamma function]. 179 When /a/ and /b/ are both small integers, then we can relate the incomplete
|
/third_party/NuttX/ |
D | DISCLAIMER-WIP | 9 example, releases may have incomplete or un-reviewed licensing conditions. What follows is 11 is likely to be incomplete): 13 * Releases may have incomplete licensing conditions.
|
/third_party/boost/libs/hana/test/ext/std/integral_constant/ |
D | tag.cpp | 18 struct incomplete; 37 hana::tag_of_t<incomplete>,
|