/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
D | bind.cc | 48 bool Bind(const UnboundConversion* unbound, BoundConversion* bound); 55 BoundConversion* bound) { in Bind() argument 83 FormatConversionSpecImplFriend::SetWidth(width, bound); in Bind() 84 FormatConversionSpecImplFriend::SetPrecision(precision, bound); in Bind() 88 bound); in Bind() 90 FormatConversionSpecImplFriend::SetFlags(unbound->flags, bound); in Bind() 93 FormatConversionSpecImplFriend::SetFlags(unbound->flags, bound); in Bind() 94 FormatConversionSpecImplFriend::SetWidth(-1, bound); in Bind() 95 FormatConversionSpecImplFriend::SetPrecision(-1, bound); in Bind() 97 FormatConversionSpecImplFriend::SetConversionChar(unbound->conv, bound); in Bind() [all …]
|
D | bind_test.cc | 86 BoundConversion bound; in TEST_F() local 91 if (BindWithPack(&props, args, &bound)) { in TEST_F() 98 EXPECT_EQ(e.arg, bound.arg()); in TEST_F() 100 EXPECT_EQ(e.width, bound.width()); in TEST_F() 101 EXPECT_EQ(e.precision, bound.precision()); in TEST_F() 107 BoundConversion bound; in TEST_F() local 113 ASSERT_TRUE(BindWithPack(&props, args, &bound)); in TEST_F() 115 EXPECT_EQ(bound.width(), std::numeric_limits<int>::max()); in TEST_F() 116 EXPECT_EQ(bound.arg(), args + 1); in TEST_F()
|
/third_party/typescript/tests/baselines/reference/ |
D | nonPrimitiveInGeneric.js | 13 function bound<T extends object>(t: T) { 17 bound({}); 18 bound(a); 19 bound(123); // expect error 20 bound(b); // expect error 57 function bound(t) { function 60 bound({}); 61 bound(a); 62 bound(123); // expect error 63 bound(b); // expect error [all …]
|
D | nonPrimitiveInGeneric.types | 38 function bound<T extends object>(t: T) { 39 >bound : <T extends object>(t: T) => void 47 bound({}); 48 >bound({}) : void 49 >bound : <T extends object>(t: T) => void 52 bound(a); 53 >bound(a) : void 54 >bound : <T extends object>(t: T) => void 57 bound(123); // expect error 58 >bound(123) : void [all …]
|
D | nonPrimitiveInGeneric.symbols | 32 function bound<T extends object>(t: T) { 33 >bound : Symbol(bound, Decl(nonPrimitiveInGeneric.ts, 9, 19)) 43 bound({}); 44 >bound : Symbol(bound, Decl(nonPrimitiveInGeneric.ts, 9, 19)) 46 bound(a); 47 >bound : Symbol(bound, Decl(nonPrimitiveInGeneric.ts, 9, 19)) 50 bound(123); // expect error 51 >bound : Symbol(bound, Decl(nonPrimitiveInGeneric.ts, 9, 19)) 53 bound(b); // expect error 54 >bound : Symbol(bound, Decl(nonPrimitiveInGeneric.ts, 9, 19))
|
/third_party/jerryscript/tests/jerry/ |
D | function-prototype-bind.js | 106 var bound = number.bind(null, 24); variable 107 var foo = new bound(); 111 var bound = number.bind(null, 3); 112 var foo = new bound(); 122 var bound = math.bind(null, 0); 123 var foo = new bound(); 131 var bound = foo.bind(null); 132 assert(bound.length === 2); 134 bound = foo.bind(null, 9); 135 assert(bound.length === 1); [all …]
|
/third_party/rust/crates/nom/src/number/ |
D | streaming.rs | 34 let bound: usize = 1; in be_u8() localVariable 35 if input.input_len() < bound { in be_u8() 40 Ok((input.slice(bound..), res)) in be_u8() 64 let bound: usize = 2; in be_u16() localVariable 65 if input.input_len() < bound { in be_u16() 66 Err(Err::Incomplete(Needed::new(bound - input.input_len()))) in be_u16() 69 for byte in input.iter_elements().take(bound) { in be_u16() 73 Ok((input.slice(bound..), res)) in be_u16() 97 let bound: usize = 3; in be_u24() localVariable 98 if input.input_len() < bound { in be_u24() [all …]
|
D | complete.rs | 36 let bound: usize = 1; in be_u8() localVariable 37 if input.input_len() < bound { in be_u8() 42 Ok((input.slice(bound..), res)) in be_u8() 66 let bound: usize = 2; in be_u16() localVariable 67 if input.input_len() < bound { in be_u16() 71 for byte in input.iter_elements().take(bound) { in be_u16() 75 Ok((input.slice(bound..), res)) in be_u16() 99 let bound: usize = 3; in be_u24() localVariable 100 if input.input_len() < bound { in be_u24() 104 for byte in input.iter_elements().take(bound) { in be_u24() [all …]
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/commonvalidity/ |
D | draw_common.txt | 12 sname:VkPipeline bound to ename:VK_PIPELINE_BIND_POINT_GRAPHICS 16 specified when creating the sname:VkPipeline bound to 19 Every input attachment used by the current subpass must: be bound to the 35 If the bound graphics pipeline was created with 43 If the bound graphics pipeline state was created with the 53 If the bound graphics pipeline state was created with the 62 If the bound graphics pipeline state was created with both the 73 If the bound graphics pipeline state was created with the 76 enabled, then the bound graphics pipeline must: have been created with 81 If the bound graphics pipeline state was created with the [all …]
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
D | pseudo_random_generator.cpp | 26 uint32_t PseudoRandomGenerator::RandomUint32(uint32_t bound) { in RandomUint32() argument 27 assert(bound > 0 && "Bound must be positive"); in RandomUint32() 28 return std::uniform_int_distribution<uint32_t>(0, bound - 1)(mt_); in RandomUint32() 31 uint64_t PseudoRandomGenerator::RandomUint64(uint64_t bound) { in RandomUint64() argument 32 assert(bound > 0 && "Bound must be positive"); in RandomUint64() 33 return std::uniform_int_distribution<uint64_t>(0, bound - 1)(mt_); in RandomUint64()
|
D | fuzzer_pass_add_access_chains.cpp | 113 uint32_t bound; in Apply() local 116 bound = fuzzerutil::GetArraySize(*subobject_type, GetIRContext()); in Apply() 120 bound = subobject_type->GetSingleWordInOperand(1); in Apply() 123 bound = fuzzerutil::GetNumberOfStructMembers(*subobject_type); in Apply() 129 bound = 0; in Apply() 132 if (bound == 0) { in Apply() 140 GetFuzzerContext()->GetRandomIndexForAccessChain(bound); in Apply() 156 FindOrCreateIntegerConstant({bound - 1}, 32, is_signed, false); in Apply()
|
/third_party/spirv-tools/source/fuzz/ |
D | pseudo_random_generator.cpp | 26 uint32_t PseudoRandomGenerator::RandomUint32(uint32_t bound) { in RandomUint32() argument 27 assert(bound > 0 && "Bound must be positive"); in RandomUint32() 28 return std::uniform_int_distribution<uint32_t>(0, bound - 1)(mt_); in RandomUint32() 31 uint64_t PseudoRandomGenerator::RandomUint64(uint64_t bound) { in RandomUint64() argument 32 assert(bound > 0 && "Bound must be positive"); in RandomUint64() 33 return std::uniform_int_distribution<uint64_t>(0, bound - 1)(mt_); in RandomUint64()
|
D | fuzzer_pass_add_access_chains.cpp | 113 uint32_t bound; in Apply() local 116 bound = fuzzerutil::GetArraySize(*subobject_type, GetIRContext()); in Apply() 120 bound = subobject_type->GetSingleWordInOperand(1); in Apply() 123 bound = fuzzerutil::GetNumberOfStructMembers(*subobject_type); in Apply() 129 bound = 0; in Apply() 132 if (bound == 0) { in Apply() 140 GetFuzzerContext()->GetRandomIndexForAccessChain(bound); in Apply() 156 FindOrCreateIntegerConstant({bound - 1}, 32, is_signed, false); in Apply()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | pseudo_random_generator.cpp | 26 uint32_t PseudoRandomGenerator::RandomUint32(uint32_t bound) { in RandomUint32() argument 27 assert(bound > 0 && "Bound must be positive"); in RandomUint32() 28 return std::uniform_int_distribution<uint32_t>(0, bound - 1)(mt_); in RandomUint32() 31 uint64_t PseudoRandomGenerator::RandomUint64(uint64_t bound) { in RandomUint64() argument 32 assert(bound > 0 && "Bound must be positive"); in RandomUint64() 33 return std::uniform_int_distribution<uint64_t>(0, bound - 1)(mt_); in RandomUint64()
|
D | fuzzer_pass_add_access_chains.cpp | 113 uint32_t bound; in Apply() local 116 bound = fuzzerutil::GetArraySize(*subobject_type, GetIRContext()); in Apply() 120 bound = subobject_type->GetSingleWordInOperand(1); in Apply() 123 bound = fuzzerutil::GetNumberOfStructMembers(*subobject_type); in Apply() 129 bound = 0; in Apply() 132 if (bound == 0) { in Apply() 140 GetFuzzerContext()->GetRandomIndexForAccessChain(bound); in Apply() 156 FindOrCreateIntegerConstant({bound - 1}, 32, is_signed, false); in Apply()
|
/third_party/glslang/Test/ |
D | remap.similar_1a.everything.frag | 7 float Test1(int bound) 10 for (int x=0; x<bound; ++x) 15 float Test2(int bound) 17 if (bound > 2) 18 return Test1(bound); 20 return float(bound * 2 +
|
D | remap.similar_1a.none.frag | 7 float Test1(int bound) 10 for (int x=0; x<bound; ++x) 15 float Test2(int bound) 17 if (bound > 2) 18 return Test1(bound); 20 return float(bound * 2 +
|
D | remap.similar_1b.everything.frag | 7 float Test1(int bound) 10 for (int x=0; x<bound; ++x) 16 float Test2(int bound) 18 if (bound > 2) { 19 return Test1(bound * 2); 21 return float(bound * 4 +
|
D | remap.similar_1b.none.frag | 7 float Test1(int bound) 10 for (int x=0; x<bound; ++x) 16 float Test2(int bound) 18 if (bound > 2) { 19 return Test1(bound * 2); 21 return float(bound * 4 +
|
/third_party/node/test/parallel/ |
D | test-domain-intercept.js | 20 const bound = d.intercept(mustNotCall); constant 21 bound(new Error('foobar')); 27 const bound = d.intercept(common.mustCall((data) => { constant 31 bound(null, 'data'); 37 const bound = d.intercept(common.mustCall((data, data2) => { constant 42 bound(null, 'data', 'data2');
|
/third_party/pcre2/pcre2/testdata/ |
D | testoutput12-32 | 24 Subject length lower bound = 1 36 Subject length lower bound = 1 48 Subject length lower bound = 1 60 Subject length lower bound = 1 72 Subject length lower bound = 1 84 Subject length lower bound = 1 96 Subject length lower bound = 1 108 Subject length lower bound = 1 120 Subject length lower bound = 1 132 Subject length lower bound = 1 [all …]
|
D | testoutput2 | 52 Subject length lower bound = 0 58 Subject length lower bound = 3 76 Subject length lower bound = 3 91 Subject length lower bound = 3 97 Subject length lower bound = 2 103 Subject length lower bound = 5 108 Subject length lower bound = 2 115 Subject length lower bound = 3 165 Subject length lower bound = 1 171 Subject length lower bound = 1 [all …]
|
D | testoutput10 | 258 Subject length lower bound = 1 271 Subject length lower bound = 1 284 Subject length lower bound = 1 297 Subject length lower bound = 1 310 Subject length lower bound = 1 323 Subject length lower bound = 1 336 Subject length lower bound = 1 349 Subject length lower bound = 1 362 Subject length lower bound = 1 375 Subject length lower bound = 3 [all …]
|
/third_party/glslang/Test/baseResults/ |
D | remap.similar_1a.none.frag.out | 4 // Id's are bound by 86 14 Name 10 "bound" 16 Name 13 "bound" 73 10(bound): 7(ptr) FunctionParameter 85 27: 6(int) Load 10(bound) 103 13(bound): 7(ptr) FunctionParameter 106 39: 6(int) Load 13(bound) 111 45: 6(int) Load 13(bound) 116 49: 6(int) Load 13(bound)
|
/third_party/typescript/tests/cases/conformance/types/nonPrimitive/ |
D | nonPrimitiveInGeneric.ts | 13 function bound<T extends object>(t: T) { function 17 bound({}); 18 bound(a); 19 bound(123); // expect error 20 bound(b); // expect error
|