| /third_party/boost/libs/dynamic_bitset/test/ |
| D | dyn_bitset_unit_tests3.cpp | 33 bitset_type b; in run_test_cases() local 37 bitset_type b(1, 1ul); in run_test_cases() local 41 bitset_type b(bitset_type::bits_per_block in run_test_cases() local 48 boost::dynamic_bitset<Block> b; in run_test_cases() local 52 boost::dynamic_bitset<Block> b(std::string("1")); in run_test_cases() local 62 boost::dynamic_bitset<Block> b(str); in run_test_cases() local 67 boost::dynamic_bitset<Block> b(ul_str); in run_test_cases() local 71 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 77 boost::dynamic_bitset<Block> b; in run_test_cases() local 81 boost::dynamic_bitset<Block> b(std::string("0")); in run_test_cases() local [all …]
|
| D | dyn_bitset_unit_tests2.cpp | 104 boost::dynamic_bitset<Block> b; in run_test_cases() local 108 boost::dynamic_bitset<Block> b(std::string("1010")); in run_test_cases() local 112 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 123 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 131 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 136 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 144 boost::dynamic_bitset<Block> b; in run_test_cases() local 148 boost::dynamic_bitset<Block> b(std::string("1010")); in run_test_cases() local 152 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 163 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local [all …]
|
| D | dyn_bitset_unit_tests1.cpp | 245 bitset_type b; in run_test_cases() local 249 bitset_type b(1, 1ul); in run_test_cases() local 253 bitset_type b(long_string); in run_test_cases() local 260 boost::dynamic_bitset<Block> b; in run_test_cases() local 264 boost::dynamic_bitset<Block> b(std::string("0")); in run_test_cases() local 268 boost::dynamic_bitset<Block> b(long_string); in run_test_cases() local 274 bitset_type a, b; in run_test_cases() local 278 bitset_type a(std::string("1")), b(std::string("0")); in run_test_cases() local 282 bitset_type a(long_string), b(long_string); in run_test_cases() local 287 bitset_type b(long_string); // b greater than a, a empty in run_test_cases() local [all …]
|
| /third_party/typescript/tests/cases/compiler/ |
| D | castParentheses.ts | 2 static b: any; property in a 5 var b = (<any>a); variable 6 var b = (<any>a).b; variable 7 var b = (<any>a.b).c; variable 8 var b = (<any>a.b()).c; variable 9 var b = (<any>new a); variable 10 var b = (<any>new a.b); variable 11 var b = (<any>new a).b variable
|
| /third_party/boost/boost/histogram/detail/ |
| D | operators.hpp | 31 friend bool operator<(const U& a, const T& b) noexcept { return b > a; } in operator <() 32 friend bool operator>(const U& a, const T& b) noexcept { return b < a; } in operator >() 33 friend bool operator==(const U& a, const T& b) noexcept { return b == a; } in operator ==() 34 friend bool operator<=(const U& a, const T& b) noexcept { return b >= a; } in operator <=() 35 friend bool operator>=(const U& a, const T& b) noexcept { return b <= a; } in operator >=() 36 friend bool operator!=(const U& a, const T& b) noexcept { return b != a; } in operator !=() 42 friend if_not_same_and_has_eq<T, U> operator<(const U& a, const T& b) noexcept { in operator <() 46 friend if_not_same_and_has_eq<T, U> operator>(const U& a, const T& b) noexcept { in operator >() 50 friend if_not_same_and_has_eq<T, U> operator==(const U& a, const T& b) noexcept { in operator ==() 54 friend if_not_same_and_has_eq<T, U> operator<=(const U& a, const T& b) noexcept { in operator <=() [all …]
|
| /third_party/openssl/test/ |
| D | testutil.h | 158 #define PRINTF_FORMAT(a, b) argument 166 # define PRINTF_FORMAT(a, b) __attribute__ ((format(printf, a, b))) argument 291 # define TEST_int_eq(a, b) test_int_eq(__FILE__, __LINE__, #a, #b, a, b) argument 292 # define TEST_int_ne(a, b) test_int_ne(__FILE__, __LINE__, #a, #b, a, b) argument 293 # define TEST_int_lt(a, b) test_int_lt(__FILE__, __LINE__, #a, #b, a, b) argument 294 # define TEST_int_le(a, b) test_int_le(__FILE__, __LINE__, #a, #b, a, b) argument 295 # define TEST_int_gt(a, b) test_int_gt(__FILE__, __LINE__, #a, #b, a, b) argument 296 # define TEST_int_ge(a, b) test_int_ge(__FILE__, __LINE__, #a, #b, a, b) argument 298 # define TEST_uint_eq(a, b) test_uint_eq(__FILE__, __LINE__, #a, #b, a, b) argument 299 # define TEST_uint_ne(a, b) test_uint_ne(__FILE__, __LINE__, #a, #b, a, b) argument [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | objectSpreadNegative.js | 2 let o = { a: 1, b: 'no' } property 25 let b = { b: false }; variable 29 let duplicated = { b: 'bad', ...o, b: 'bad', ...o2, b: 'bad' } property 33 { b: 'ignored', ...o } property 35 let o3 = { a: 1, b: 'no' } property 36 let o4 = { b: 'yes', c: true } property 38 { b: 'ok', ...o3, ...o4 } property 40 { ...o3, b: 'ok', ...o4 } property 46 { ...o3, ['in the middle']: 13, b: 'maybe?', ...o4 } property 91 var o = { a: 1, b: 'no' }; property [all …]
|
| D | optionalParameterInDestructuringWithInitializer.js | 6 function func1( {a, b}: {a: number, b?: number} = {a: 1, b: 2} ) { field 11 function func2( {a, b = 3}: {a: number, b?:number} = {a: 1,b: 2} ) { property 16 function func3( {a, b}: {a: number, b?: number} = {a: 1} ) { field 21 function func4( {a: {b, c}, d}: {a: {b: number,c?: number},d: number} = {a: {b: 1,c: 2},d: 3} ) { property 26 function func5({a: {b, c = 4}, d}: {a: {b: number,c?: number},d: number} = {a: {b: 1,c: 2},d: 3} ) { property 31 function func6( {a: {b, c} = {b: 4, c: 5}, d}: {a: {b: number, c?: number}, d: number} = {a: {b: 1,… property 36 function func7( {a: {b, c = 6} = {b: 4, c: 5}, d}: {a: {b: number, c?: number}, d: number} = {a: {b… property
|
| /third_party/boost/libs/beast/test/beast/core/ |
| D | multi_buffer.cpp | 62 multi_buffer b; in testShrinkToFit() local 73 multi_buffer b; in testShrinkToFit() local 81 multi_buffer b; in testShrinkToFit() local 91 multi_buffer b; in testShrinkToFit() local 104 multi_buffer b; in testShrinkToFit() local 114 multi_buffer b; in testShrinkToFit() local 127 multi_buffer b; in testShrinkToFit() local 140 multi_buffer b; in testShrinkToFit() local 152 multi_buffer b; in testShrinkToFit() local 165 multi_buffer b(30); in testDynamicBuffer() local [all …]
|
| /third_party/mingw-w64/mingw-w64-headers/crt/ |
| D | dvec.h | 80 inline M128 andnot(const M128 &a,const M128 &b) { return _mm_andnot_si128(a,b); } in andnot() 139 inline I64vec2 unpack_low(const I64vec2 &a,const I64vec2 &b) {return _mm_unpacklo_epi64(a,b); } in unpack_low() 140 inline I64vec2 unpack_high(const I64vec2 &a,const I64vec2 &b) {return _mm_unpackhi_epi64(a,b); } in unpack_high() 164 inline I32vec4 cmpeq(const I32vec4 &a,const I32vec4 &b) { return _mm_cmpeq_epi32(a,b); } in cmpeq() 165 inline I32vec4 cmpneq(const I32vec4 &a,const I32vec4 &b) { return _mm_andnot_si128(_mm_cmpeq_epi32(… in cmpneq() 167 inline I32vec4 unpack_low(const I32vec4 &a,const I32vec4 &b) { return _mm_unpacklo_epi32(a,b); } in unpack_low() 168 inline I32vec4 unpack_high(const I32vec4 &a,const I32vec4 &b) { return _mm_unpackhi_epi32(a,b); } in unpack_high() 227 inline Is32vec4 cmpeq(const Is32vec4 &a,const Is32vec4 &b) { return _mm_cmpeq_epi32(a,b); } in cmpeq() 228 inline Is32vec4 cmpneq(const Is32vec4 &a,const Is32vec4 &b) { return _mm_andnot_si128(_mm_cmpeq_epi… in cmpneq() 229 inline Is32vec4 cmpgt(const Is32vec4 &a,const Is32vec4 &b) { return _mm_cmpgt_epi32(a,b); } in cmpgt() [all …]
|
| /third_party/node/test/parallel/ |
| D | test-blob.js | 10 const b = new Blob(); constant 28 const b = new Blob([]); constant 50 const b = new Blob(['616263'], { encoding: 'hex', type: 'foo' }); constant 59 const b = new Blob([Buffer.from('abc')]); constant 67 const b = new Blob([new ArrayBuffer(3)]); constant 75 const b = new Blob([new Uint8Array(3)]); constant 83 const b = new Blob([new Blob(['abc'])]); constant 91 const b = new Blob(['hello', Buffer.from('world')]); constant 99 const b = new Blob( constant 114 const b = new Blob(['hello', Buffer.from('world')]); constant [all …]
|
| /third_party/skia/third_party/externals/tint/src/writer/spirv/ |
| D | builder_constructor_expression_test.cc | 29 spirv::Builder& b = Build(); in TEST_F() local 43 spirv::Builder& b = Build(); in TEST_F() local 56 spirv::Builder& b = Build(); in TEST_F() local 73 spirv::Builder& b = Build(); in TEST_F() local 100 spirv::Builder& b = Build(); in TEST_F() local 120 spirv::Builder& b = Build(); in TEST_F() local 148 spirv::Builder& b = Build(); in TEST_F() local 172 spirv::Builder& b = Build(); in TEST_F() local 189 spirv::Builder& b = Build(); in TEST_F() local 204 spirv::Builder& b = Build(); in TEST_F() local [all …]
|
| /third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/ |
| D | audio-buffer.h | 76 #define GST_AUDIO_BUFFER_FORMAT(b) (GST_AUDIO_INFO_FORMAT(&(b)->info)) argument 77 #define GST_AUDIO_BUFFER_CHANNELS(b) (GST_AUDIO_INFO_CHANNELS(&(b)->info)) argument 78 #define GST_AUDIO_BUFFER_LAYOUT(b) (GST_AUDIO_INFO_LAYOUT(&(b)->info)) argument 79 #define GST_AUDIO_BUFFER_RATE(b) (GST_AUDIO_INFO_RATE(&(b)->info)) argument 81 #define GST_AUDIO_BUFFER_WIDTH(b) (GST_AUDIO_INFO_WIDTH(&(b)->info)) argument 82 #define GST_AUDIO_BUFFER_DEPTH(b) (GST_AUDIO_INFO_DEPTH(&(b)->info)) argument 83 #define GST_AUDIO_BUFFER_SAMPLE_STRIDE(b) (GST_AUDIO_INFO_WIDTH(&(b)->info) >> 3) argument 84 #define GST_AUDIO_BUFFER_BPS(b) (GST_AUDIO_INFO_DEPTH(&(b)->info) >> 3) argument 85 #define GST_AUDIO_BUFFER_BPF(b) (GST_AUDIO_INFO_BPF(&(b)->info)) argument 87 #define GST_AUDIO_BUFFER_N_SAMPLES(b) ((b)->n_samples) argument [all …]
|
| /third_party/openssl/include/openssl/ |
| D | bio.h | 182 # define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) argument 183 # define BIO_set_retry_special(b) \ argument 185 # define BIO_set_retry_read(b) \ argument 187 # define BIO_set_retry_write(b) \ argument 191 # define BIO_clear_retry_flags(b) \ argument 193 # define BIO_get_retry_flags(b) \ argument 358 # define BIO_set_nbio(b,n) BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL) argument 368 # define BIO_set_conn_hostname(b,name) BIO_ctrl(b,BIO_C_SET_CONNECT,0, \ argument 370 # define BIO_set_conn_port(b,port) BIO_ctrl(b,BIO_C_SET_CONNECT,1, \ argument 372 # define BIO_set_conn_address(b,addr) BIO_ctrl(b,BIO_C_SET_CONNECT,2, \ argument [all …]
|
| /third_party/json/benchmarks/thirdparty/benchmark/src/ |
| D | check.h | 57 #define CHECK(b) \ argument 62 #define CHECK(b) ::benchmark::internal::GetNullLogInstance() argument 65 #define CHECK_EQ(a, b) CHECK((a) == (b)) argument 66 #define CHECK_NE(a, b) CHECK((a) != (b)) argument 67 #define CHECK_GE(a, b) CHECK((a) >= (b)) argument 68 #define CHECK_LE(a, b) CHECK((a) <= (b)) argument 69 #define CHECK_GT(a, b) CHECK((a) > (b)) argument 70 #define CHECK_LT(a, b) CHECK((a) < (b)) argument 72 #define CHECK_FLOAT_EQ(a, b, eps) CHECK(std::fabs((a) - (b)) < (eps)) argument 73 #define CHECK_FLOAT_NE(a, b, eps) CHECK(std::fabs((a) - (b)) >= (eps)) argument [all …]
|
| /third_party/benchmark/src/ |
| D | check.h | 57 #define CHECK(b) \ argument 62 #define CHECK(b) ::benchmark::internal::GetNullLogInstance() argument 67 #define CHECK_EQ(a, b) CHECK((a) == (b)) argument 68 #define CHECK_NE(a, b) CHECK((a) != (b)) argument 69 #define CHECK_GE(a, b) CHECK((a) >= (b)) argument 70 #define CHECK_LE(a, b) CHECK((a) <= (b)) argument 71 #define CHECK_GT(a, b) CHECK((a) > (b)) argument 72 #define CHECK_LT(a, b) CHECK((a) < (b)) argument 74 #define CHECK_FLOAT_EQ(a, b, eps) CHECK(std::fabs((a) - (b)) < (eps)) argument 75 #define CHECK_FLOAT_NE(a, b, eps) CHECK(std::fabs((a) - (b)) >= (eps)) argument [all …]
|
| /third_party/boost/libs/hana/doc/js/ |
| D | highcharts-data.js | 9 …){var t=g.win.document,j=g.each,u=g.pick,r=g.inArray,v=g.splat,k,p=function(b,a){this.init(b,a)};g… argument 10 …able(),this.parseGoogleSpreadsheet())},getColumnDistribution:function(){var b=this.chartOptions,a=… argument 12 this.parseTypes();this.parsed()!==!1&&this.complete()},parseCSV:function(){var b=this,a=this.option… argument 13 f[a-h][s]=b)}),s+=1)}),this.dataFound())},parseTable:function(){var b=this.options,a=b.table,e=this… argument 15 …ell.row-1,j=e.gs$cell.col-1,j>=h&&j<=g&&i>=d&&i<=c)f[j-h][i-d]=e.content.$t;b.dataFound()}})},trim… argument 18 parser:function(b){return Date.UTC(+b[1],b[2]-1,+b[3])}},"dd/mm/YYYY":{regex:/^([0-9]{1,2})[\-\/\.]… argument 19 "mm/dd/YY":{regex:/^([0-9]{1,2})[\-\/\.]([0-9]{1,2})[\-\/\.]([0-9]{2})$/,parser:function(b){return … argument 20 typeof c==="object"&&c!==null&&c.getTime?e=c.getTime()-c.getTimezoneOffset()*6E4:typeof c==="number… argument 23 g[c];d=[];for(h=0;h<b[0].length;h++)d[h]=i.read(b,h);f[c]={data:d};if(i.name)f[c].name=i.name;if(a=… argument 24 …||{},a.series[c]=g.merge(h,d.series[c]);else delete a.series;a=g.merge(d,a);b.call(f,a,e)}}),a):b.… argument [all …]
|
| /third_party/boost/libs/numeric/interval/test/ |
| D | cmp_exp.cpp | 16 const I a(1,2), b(3,4); in test_12_34() local 57 const I a(1,3), b(2,4); in test_13_24() local 98 const I a(1,2), b(2,3); in test_12_23() local 140 const int b = 0; in test_12_0() local 182 const int b = 1; in test_12_1() local 224 const int b = 2; in test_12_2() local 266 const int b = 3; in test_12_3() local 305 const I a(1,2), b(1,2); in test_12_12() local 321 const I a(1,1), b(1,1); in test_11_11() local 338 const int b = 1; in test_11_1() local
|
| D | cmp_lex.cpp | 18 const I a(1,2), b(3,4); in test_12_34() local 42 const I a(1,3), b(2,4); in test_13_24() local 66 const I a(1,2), b(2,3); in test_12_23() local 91 const int b = 0; in test_12_0() local 111 const int b = 1; in test_12_1() local 131 const int b = 2; in test_12_2() local 151 const int b = 3; in test_12_3() local 168 const I a(1,2), b(1,2); in test_12_12() local 180 const I a(1,1), b(1,1); in test_11_11() local 193 const int b = 1; in test_11_1() local
|
| D | cmp.cpp | 16 const I a(1,2), b(3,4); in test_12_34() local 40 const I a(1,3), b(2,4); in test_13_24() local 64 const I a(1,2), b(2,3); in test_12_23() local 89 const int b = 0; in test_12_0() local 109 const int b = 1; in test_12_1() local 129 const int b = 2; in test_12_2() local 149 const int b = 3; in test_12_3() local 168 const I a(1,2), b(1,2); in test_12_12() local 180 const I a(1,1), b(1,1); in test_11_11() local 193 const int b = 1; in test_11_1() local
|
| D | cmp_tribool.cpp | 19 const I a(1,2), b(3,4); in test_12_34() local 43 const I a(1,3), b(2,4); in test_13_24() local 67 const I a(1,2), b(2,3); in test_12_23() local 92 const int b = 0; in test_12_0() local 112 const int b = 1; in test_12_1() local 132 const int b = 2; in test_12_2() local 152 const int b = 3; in test_12_3() local 171 const I a(1,2), b(1,2); in test_12_12() local 185 const I a(1,1), b(1,1); in test_11_11() local 200 const int b = 1; in test_11_1() local
|
| /third_party/typescript/tests/cases/conformance/controlFlow/ |
| D | controlFlowAssignmentPatternOrder.ts | 14 let b: 0 | 1 | 9; variable 20 let b: 0 | 1 | 8 | 9; variable 26 let b: 0 | 1 | 8 | 9; variable 33 let b: 0 | 1 | 9; variable 39 let b: 0 | 1 | 9; variable 45 let b: 0 | 1 | 8 | 9; variable 51 let b: 0 | 1 | 8 | 9; variable 58 let b: 0 | 1 | 9; variable 64 let b: 0 | 1 | 9; variable 70 let b: 0 | 1 | 8 | 9; variable [all …]
|
| /third_party/protobuf/js/ |
| D | test12.proto | 38 optional MessageField2 b = 2; field 43 optional MessageField1 b = 2; field 49 optional RepeatedMessageField2 b = 2; field 54 repeated RepeatedMessageField1 b = 2; field 59 optional MapField2 b = 2; field 64 map<int32, MapField1> b = 2; field 68 optional NestedMessage2 b = 2; field 76 optional NestedMessage1.NestedNestedMessage b = 2; field 80 optional NestedEnum2 b = 2; field 89 optional NestedEnum1.NestedNestedEnum b = 2; field [all …]
|
| /third_party/boost/boost/multiprecision/detail/ |
| D | no_et_ops.hpp | 43 …CXX14_CONSTEXPR number<B, et_off> operator+(const number<B, et_off>& a, const number<B, et_off>& b) in operator +() 53 operator+(const number<B, et_off>& a, const V& b) in operator +() 63 operator+(const V& a, const number<B, et_off>& b) in operator +() 75 …CXX14_CONSTEXPR number<B, et_off> operator-(const number<B, et_off>& a, const number<B, et_off>& b) in operator -() 85 operator-(const number<B, et_off>& a, const V& b) in operator -() 95 operator-(const V& a, const number<B, et_off>& b) in operator -() 107 …CXX14_CONSTEXPR number<B, et_off> operator*(const number<B, et_off>& a, const number<B, et_off>& b) in operator *() 117 operator*(const number<B, et_off>& a, const V& b) in operator *() 127 operator*(const V& a, const number<B, et_off>& b) in operator *() 139 …CXX14_CONSTEXPR number<B, et_off> operator/(const number<B, et_off>& a, const number<B, et_off>& b) in operator /() [all …]
|
| /third_party/python/Lib/ |
| D | operator.py | 27 def lt(a, b): argument 31 def le(a, b): argument 35 def eq(a, b): argument 39 def ne(a, b): argument 43 def ge(a, b): argument 47 def gt(a, b): argument 61 def is_(a, b): argument 65 def is_not(a, b): argument 75 def add(a, b): argument 79 def and_(a, b): argument [all …]
|