/third_party/boost/boost/fiber/ |
D | condition_variable.hpp | 67 void wait( LockType & lt) { in wait() argument 76 lt.unlock(); in wait() 81 lt.lock(); in wait() 94 void wait( LockType & lt, Pred pred) { in wait() argument 96 wait( lt); in wait() 101 …cv_status wait_until( LockType & lt, std::chrono::time_point< Clock, Duration > const& timeout_tim… in wait_until() argument 112 lt.unlock(); in wait_until() 125 lt.lock(); in wait_until() 139 bool wait_until( LockType & lt, in wait_until() argument 142 if ( cv_status::timeout == wait_until( lt, timeout_time) ) { in wait_until() [all …]
|
/third_party/boost/libs/smart_ptr/test/ |
D | owner_less_test2.cpp | 11 boost::owner_less<> const lt = {}; in main() local 17 BOOST_TEST( !lt( p1, p2 ) ); in main() 18 BOOST_TEST( !lt( p2, p1 ) ); in main() 22 BOOST_TEST( lt( p1, p3 ) || lt( p3, p1 ) ); in main() 27 BOOST_TEST( !lt( p4, p5 ) ); in main() 28 BOOST_TEST( !lt( p5, p4 ) ); in main() 30 BOOST_TEST( lt( p4, p3 ) || lt( p3, p4 ) ); in main() 34 BOOST_TEST( lt( p4, p6 ) || lt( p6, p4 ) ); in main() 38 BOOST_TEST( !lt( p1, p7 ) ); in main() 39 BOOST_TEST( !lt( p7, p1 ) ); in main() [all …]
|
/third_party/boost/libs/histogram/test/ |
D | detail_safe_comparison_test.cpp | 25 auto lt = safe_less{}; in main() 26 BOOST_TEST(lt(1u, 2u)); in main() 27 BOOST_TEST(lt(-1, 1u)); in main() 28 BOOST_TEST(lt(1u, 2)); in main() 29 BOOST_TEST(lt(-2, -1)); in main() 30 BOOST_TEST(lt(-2.0, -1)); in main() 31 BOOST_TEST(lt(1, 2.0)); in main() 32 BOOST_TEST(lt(-1.0, 1u)); in main() 33 BOOST_TEST(lt(1u, 2.0)); in main() 34 BOOST_TEST(lt(1.0, 2.0)); in main() [all …]
|
/third_party/skia/third_party/externals/tint/docs/ |
D | translations.md | 116 | texture_1d<type> | OpTypeImage 1D Sampled=1 | texture1d<type, access::sample> | Textu… 117 | texture_2d<type> | OpTypeImage 2D Sampled=1 | texture2d<type, access::sample> | Textu… 118 | texture_2d_array<type> | OpTypeImage 2D Arrayed=1 Sampled=1 | texture2d_array<type, acce… 119 | texture_3d<type> | OpTypeImage 3D Sampled=1 | texture3d<type, access::sample> | Textu… 120 | texture_cube<type> | OpTypeImage Cube Sampled=1 | texturecube<type, access::sample> |… 121 | texture_cube_array<type> | OpTypeImage Cube Arrayed=1 Sampled=1 | texturecube_array<type… 123 | texture_multisampled_2d<type> | OpTypeImage 2D MS=1 Sampled=1 | texture2d_ms<type, acces… 125 | texture_depth_2d | OpTypeImage 2D Depth=1 Sampled=1 | depth2d<float, access::sample>| Textu… 126 | texture_depth_2d_array | OpTypeImage 2D Depth=1 Arrayed=1 Sampled=1 | depth2d_array<float, acc… 127 | texture_depth_cube | OpTypeImage Cube Depth=1 Sampled=1 | depthcube<float, access::sample> … [all …]
|
/third_party/node/test/common/ |
D | README.md | 33 * `name` [<string>][] Name of benchmark suite to be run. 34 * `args` [<Array>][] Array of environment variable key/value pairs (ex: 36 * `env` [<Object>][] Environment variables to be applied during the run. 45 * `allowlist` [<Array>][] Array of Globals 46 * return [<Array>][] 52 * return [<boolean>][] 74 * [<boolean>][] 81 * [<boolean>][] 87 * `validator` [<Object>][] | [<RegExp>][] | [<Function>][] | 88 [<Error>][] The validator behaves identical to [all …]
|
/third_party/libffi/src/ia64/ |
D | unix.S | 178 cmp.lt p6, p0 = 8, in3 179 cmp.lt p7, p0 = 16, in3 180 cmp.lt p8, p0 = 24, in3 208 cmp.lt p6, p0 = 4, in3 212 cmp.lt p7, p0 = 8, in3 213 cmp.lt p8, p0 = 12, in3 217 cmp.lt p9, p0 = 16, in3 218 cmp.lt p10, p0 = 20, in3 222 cmp.lt p6, p0 = 24, in3 223 cmp.lt p7, p0 = 28, in3 [all …]
|
/third_party/boost/tools/quickbook/test/ |
D | xml_escape-1_2.quickbook | 1 [library Test that &, < are being escaped. 3 [purpose & should be &amp;, < should &lt;] 4 [license & should be &amp;, < should &lt;] 10 * < -> <
|
D | xml_escape-1_5.quickbook | 1 [library Test that &, < are being escaped. 3 [purpose & should be &, < should <] 4 [license & should be &, < should <] 10 * < -> <
|
/third_party/python/Lib/turtledemo/ |
D | penrose.py | 27 lt(36) 39 lt(36) 43 lt(36) 56 lt(36) 61 lt(18) 65 lt(36) 69 lt(36) 79 lt(36) 83 lt(54) 109 lt(72) [all …]
|
/third_party/boost/libs/geometry/test/policies/ |
D | compare.cpp | 60 bg::less<P> lt; in test_2d_compare() local 69 BOOST_CHECK_EQUAL(lt(p1, p2), false); in test_2d_compare() 70 BOOST_CHECK_EQUAL(lt(p1, p3), false); in test_2d_compare() 71 BOOST_CHECK_EQUAL(lt(p1, p4), true); in test_2d_compare() 72 BOOST_CHECK_EQUAL(lt(p1, p5), true); in test_2d_compare() 73 BOOST_CHECK_EQUAL(lt(p3, p4), true); in test_2d_compare() 86 bg::less<P, 0> lt; in test_2d_compare() local 95 BOOST_CHECK_EQUAL(lt(p1, p2), false); in test_2d_compare() 96 BOOST_CHECK_EQUAL(lt(p1, p3), false); in test_2d_compare() 97 BOOST_CHECK_EQUAL(lt(p1, p4), true); in test_2d_compare() [all …]
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | gen-tag-table.py | 632 def get_name (self, lt): argument 641 name = self.names[lt.language].split ('\n')[0] 642 if lt.script: 643 name += '; ' + self.names[lt.script.title ()].split ('\n')[0] 644 if lt.region: 645 name += '; ' + self.names[lt.region.upper ()].split ('\n')[0] 646 if lt.variant: 647 name += '; ' + self.names[lt.variant].split ('\n')[0] 965 for lt, tags in items: 966 if lt.variant in bcp_47.prefixes: [all …]
|
/third_party/boost/boost/spirit/home/qi/string/detail/ |
D | tst.hpp | 26 : id(id_), data(0), lt(0), eq(0), gt(0) in tst_node() 38 destruct_node(p->lt, alloc); in destruct_node() 54 clone->lt = clone_node(p->lt, alloc); in clone_node() 92 p = p->lt; in find() 140 pp = &p->lt; in add() 174 remove(p->lt, first, last, alloc); in remove() 181 if (p->data == 0 && p->lt == 0 && p->eq == 0 && p->gt == 0) in remove() 194 for_each(p->lt, prefix, f); in for_each() 205 tst_node* lt; // left pointer member
|
/third_party/boost/boost/spirit/home/x3/string/detail/ |
D | tst.hpp | 22 : id(id), data(0), lt(0), eq(0), gt(0) in tst_node() 34 destruct_node(p->lt, alloc); in destruct_node() 50 clone->lt = clone_node(p->lt, alloc); in clone_node() 85 p = p->lt; in find() 131 pp = &p->lt; in add() 163 remove(p->lt, first, last, alloc); in remove() 170 if (p->data == 0 && p->lt == 0 && p->eq == 0 && p->gt == 0) in remove() 183 for_each(p->lt, prefix, f); in for_each() 194 tst_node* lt; // left pointer member
|
/third_party/boost/libs/outcome/doc/src/content/experimental/ |
D | map.md | 16 <tr><th>C++ 17 <tt><system_error></tt><th>Boost.System<th>Proposed <tt><system_error2><… 45 <li><tt>experimental::status_code<DomainType></tt><p> 46 <li><tt>const experimental::status_code<void> &</tt><p> 47 …<li><tt>experimental::status_code<erased<intptr_t>></tt> (aliased to <tt>experimental:… 48 <li><tt>experimental::errored_status_code<DomainType></tt><p> 49 <li><tt>const experimental::errored_status_code<void> &</tt><p> 50 …<li><tt>experimental::errored_status_code<erased<intptr_t>></tt> (aliased to <tt>exper… 56 <li><tt>const experimental::status_error<void> &</tt><p> 57 <li><tt>experimental::status_error<DomainType></tt>
|
/third_party/mbedtls/library/ |
D | platform_util.c | 142 struct tm *lt; in mbedtls_platform_gmtime_r() 149 lt = gmtime( tt ); in mbedtls_platform_gmtime_r() 151 if( lt != NULL ) in mbedtls_platform_gmtime_r() 153 memcpy( tm_buf, lt, sizeof( struct tm ) ); in mbedtls_platform_gmtime_r() 161 return( ( lt == NULL ) ? NULL : tm_buf ); in mbedtls_platform_gmtime_r()
|
/third_party/boost/libs/locale/test/ |
D | test_winapi_collate.cpp | 32 string_type lt=coll.transform(left.c_str(),left.c_str()+left.size()); in test_comp() local 35 TEST(lt<rt); in test_comp() 37 TEST(lt==rt); in test_comp() 40 TEST(lt > rt); in test_comp() 49 string_type lt=coll.transform(level,left.c_str(),left.c_str()+left.size()); in test_comp() local 50 TEST(lt==coll.transform(level,left)); in test_comp() 54 TEST(lt<rt); in test_comp() 56 TEST(lt==rt); in test_comp() 58 TEST(lt > rt); in test_comp()
|
D | test_collate.cpp | 31 string_type lt=coll.transform(left.c_str(),left.c_str()+left.size()); in test_comp() local 34 TEST(lt<rt); in test_comp() 36 TEST(lt==rt); in test_comp() 39 TEST(lt > rt); in test_comp() 48 string_type lt=coll.transform(level,left.c_str(),left.c_str()+left.size()); in test_comp() local 49 TEST(lt==coll.transform(level,left)); in test_comp() 53 TEST(lt<rt); in test_comp() 55 TEST(lt==rt); in test_comp() 57 TEST(lt > rt); in test_comp()
|
/third_party/skia/third_party/externals/icu/source/data/translit/ |
D | lt_Lower.txt | 12 # 0049; 0069 0307; 0049; 0049; lt More_Above; # LATIN CAPITAL LETTER I 13 # 004A; 006A 0307; 004A; 004A; lt More_Above; # LATIN CAPITAL LETTER J 14 # 012E; 012F 0307; 012E; 012E; lt More_Above; # LATIN CAPITAL LETTER I WITH OGONEK 15 # 00CC; 0069 0307 0300; 00CC; 00CC; lt; # LATIN CAPITAL LETTER I WITH GRAVE 16 # 00CD; 0069 0307 0301; 00CD; 00CD; lt; # LATIN CAPITAL LETTER I WITH ACUTE 17 # 0128; 0069 0307 0303; 0128; 0128; lt; # LATIN CAPITAL LETTER I WITH TILDE
|
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/ |
D | lt_Lower.txt | 11 # 0049; 0069 0307; 0049; 0049; lt More_Above; # LATIN CAPITAL LETTER I 12 # 004A; 006A 0307; 004A; 004A; lt More_Above; # LATIN CAPITAL LETTER J 13 # 012E; 012F 0307; 012E; 012E; lt More_Above; # LATIN CAPITAL LETTER I WITH OGONEK 14 # 00CC; 0069 0307 0300; 00CC; 00CC; lt; # LATIN CAPITAL LETTER I WITH GRAVE 15 # 00CD; 0069 0307 0301; 00CD; 00CD; lt; # LATIN CAPITAL LETTER I WITH ACUTE 16 # 0128; 0069 0307 0303; 0128; 0128; lt; # LATIN CAPITAL LETTER I WITH TILDE
|
/third_party/icu/icu4c/source/data/translit/ |
D | lt_Lower.txt | 11 # 0049; 0069 0307; 0049; 0049; lt More_Above; # LATIN CAPITAL LETTER I 12 # 004A; 006A 0307; 004A; 004A; lt More_Above; # LATIN CAPITAL LETTER J 13 # 012E; 012F 0307; 012E; 012E; lt More_Above; # LATIN CAPITAL LETTER I WITH OGONEK 14 # 00CC; 0069 0307 0300; 00CC; 00CC; lt; # LATIN CAPITAL LETTER I WITH GRAVE 15 # 00CD; 0069 0307 0301; 00CD; 00CD; lt; # LATIN CAPITAL LETTER I WITH ACUTE 16 # 0128; 0069 0307 0303; 0128; 0128; lt; # LATIN CAPITAL LETTER I WITH TILDE
|
/third_party/harfbuzz/src/ |
D | gen-tag-table.py | 635 def get_name (self, lt): argument 644 name = self._get_name_piece (lt.language) 645 if lt.script: 646 name += '; ' + self._get_name_piece (lt.script.title ()) 647 if lt.region: 648 name += '; ' + self._get_name_piece (lt.region.upper ()) 649 if lt.variant: 650 name += '; ' + self._get_name_piece (lt.variant) 982 for lt, tags in items: 983 if lt.variant in bcp_47.prefixes: [all …]
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | gen-tag-table.py | 635 def get_name (self, lt): argument 644 name = self._get_name_piece (lt.language) 645 if lt.script: 646 name += '; ' + self._get_name_piece (lt.script.title ()) 647 if lt.region: 648 name += '; ' + self._get_name_piece (lt.region.upper ()) 649 if lt.variant: 650 name += '; ' + self._get_name_piece (lt.variant) 982 for lt, tags in items: 983 if lt.variant in bcp_47.prefixes: [all …]
|
/third_party/curl/packages/vms/ |
D | build_libcurl_pc.com | 68 $ if (f$getsyi("HW_MODEL") .lt. 1024) 131 $ if f$locate("@prefix@", line_in) .lt line_in_len 141 $ if f$locate("@exec_prefix@", line_in) .lt line_in_len 151 $ if f$locate("@libdir@", line_in) .lt line_in_len 156 $ if f$locate("@includedir@", line_in) .lt line_in_len 161 $ if f$locate("@SUPPORT_PROTOCOLS@", line_in) .lt line_in_len 169 $ if f$locate("@SUPPORT_FEATURES@", line_in) .lt line_in_len 179 $ if f$locate("@CURLVERSION@", line_in) .lt line_in_len 184 $ if f$locate("@LIBCURL_LIBS@", line_in) .lt line_in_len 194 $ if f$locate("@CPPFLAG_CURL_STATICLIB@", line_in) .lt line_in_len
|
/third_party/boost/libs/local_function/test/ |
D | all_decl_seq.cpp | 41 } BOOST_LOCAL_FUNCTION_NAME(lt) in f() 42 lt(); in f() 61 } BOOST_LOCAL_FUNCTION_NAME(lt) in f() 62 lt(); in f() 82 } BOOST_LOCAL_FUNCTION_NAME(lt) in f() 83 lt(1); in f() 101 } BOOST_LOCAL_FUNCTION_NAME(lt) in f() 102 lt(1); in f()
|
/third_party/node/deps/npm/node_modules/buffer-from/ |
D | readme.md | 35 - `array` <Array> 41 - `arrayBuffer` <ArrayBuffer> The `.buffer` property of a TypedArray or ArrayBuffer 42 - `byteOffset` <Integer> Where to start copying from `arrayBuffer`. **Default:** `0` 43 - `length` <Integer> How many bytes to copy from `arrayBuffer`. **Default:** `arrayBuffer.len… 53 - `buffer` <Buffer> An existing `Buffer` to copy data from 59 - `string` <String> A string to encode. 60 - `encoding` <String> The encoding of `string`. **Default:** `'utf8'`
|