/external/llvm-project/clang/test/CXX/expr/expr.prim/expr.prim.id/ |
D | p3.cpp | 42 concept Same = is_same_v<T, U>; 44 static_assert(Same<int, int>); 45 static_assert(Same<int, decltype(1)>); 46 static_assert(!Same<int, unsigned int>); 47 static_assert(!Same<A, B>); 48 static_assert(Same<A, A>); 50 static_assert(Same<bool, decltype(C1<int>)>); 51 static_assert(Same<bool, decltype(C2<int>)>); 52 static_assert(Same<bool, decltype(C3<int*>)>); 53 static_assert(Same<bool, decltype(C4<A>)>); [all …]
|
/external/rust/crates/bindgen/src/ir/analysis/ |
D | has_destructor.rs | 93 return ConstrainResult::Same; in constrain() 98 None => return ConstrainResult::Same, in constrain() 109 ConstrainResult::Same in constrain() 119 CompKind::Union => ConstrainResult::Same, in constrain() 135 ConstrainResult::Same in constrain() 151 ConstrainResult::Same in constrain() 155 _ => ConstrainResult::Same, in constrain()
|
D | has_float.rs | 105 return ConstrainResult::Same; in constrain() 113 return ConstrainResult::Same; in constrain() 132 ConstrainResult::Same in constrain() 148 ConstrainResult::Same in constrain() 158 ConstrainResult::Same in constrain() 174 ConstrainResult::Same in constrain() 202 ConstrainResult::Same in constrain() 230 ConstrainResult::Same in constrain()
|
D | has_type_param_in_array.rs | 111 return ConstrainResult::Same; in constrain() 119 return ConstrainResult::Same; in constrain() 143 ConstrainResult::Same in constrain() 158 ConstrainResult::Same in constrain() 178 ConstrainResult::Same in constrain() 202 ConstrainResult::Same in constrain() 230 ConstrainResult::Same in constrain()
|
D | has_vtable.rs | 98 return ConstrainResult::Same; in insert() 108 ConstrainResult::Same in insert() 127 None => ConstrainResult::Same, in forward() 158 None => return ConstrainResult::Same, in constrain() 198 _ => ConstrainResult::Same, in constrain()
|
D | sizedness.rs | 138 return ConstrainResult::Same; in insert() 147 ConstrainResult::Same in insert() 159 None => ConstrainResult::Same, in forward() 211 return ConstrainResult::Same; in constrain()
|
D | mod.rs | 130 Same, enumerator 135 ConstrainResult::Same in default() 146 ConstrainResult::Same in bitor() 352 ConstrainResult::Same in constrain()
|
/external/rust/crates/ring/tests/ |
D | pbkdf2_tests.txt | 98 # Same as the previous test case, but with a bit flipped. 117 # Same as the previous test case, bit with a bit flipped in the first byte. 136 # Same as the previous test case, but with a bit flipped in the middle. 155 # Same as the previous test case, but with the first bit flipped. 163 # Same as previous test case, but last bit is flipped. 205 # Same as the previous test case, but the last bit in the middle block was 237 # Same as the previous test case, but the last bit is flipped.
|
/external/dokka/core/testdata/typealias/ |
D | inheritanceFromTypeAlias.kt | 5 typealias Same = Some typealias 7 class My : Same
|
/external/llvm/test/CodeGen/WebAssembly/ |
D | offset.ll | 68 ; Same as above but with i64. 80 ; Same as above but with i64. 90 ; Same as above but with i64. 102 ; Same as above but with i64. 116 ; Same as above but with i64. 139 ; Same as above but with store. 151 ; Same as above but with store. 161 ; Same as above but with store. 173 ; Same as above but with store. 187 ; Same as above but with store. [all …]
|
/external/mockito/src/test/java/org/mockito/internal/matchers/ |
D | MatchersToStringTest.java | 19 assertEquals("same(\"X\")", new Same("X").toString()); in sameToStringWithString() 39 assertEquals("same('x')", new Same('x').toString()); in sameToStringWithChar() 50 assertEquals("same(X)", new Same(o).toString()); in sameToStringWithObject()
|
/external/llvm-project/clang/test/CXX/expr/expr.prim/expr.prim.req/ |
D | compound-requirement.cpp | 83 concept Same = is_same_v<T, U>; 94 template<typename T> requires requires (T t) { { t } -> Same<T>; } 102 template<typename T> requires requires (T t) { { t } -> Same<typename T::type>; } // expected-note{… 112 template<typename T> requires requires (T t) { { t.foo() } -> Same<typename T::type>; } // expected…
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | temp_arg_nontype_cxx20.cpp | 152 template<auto V, auto W> constexpr bool Same = false; variable 153 template<auto V> constexpr bool Same<V, V> = true; variable 154 static_assert(Same<A{}, A{0, 0}>); 155 static_assert(Same<A{1}, A{1, 0}>); 156 static_assert(!Same<A{1}, A{1, 1}>); 164 template <A V> requires Same<V, A{V.arr[0], V.arr[0]}>
|
/external/mockito/src/main/java/org/mockito/internal/matchers/ |
D | Same.java | 13 public class Same implements ArgumentMatcher<Object>, Serializable { class 17 public Same(Object wanted) { in Same() method in Same
|
/external/easymock/src/org/easymock/internal/matchers/ |
D | Same.java | 23 public class Same implements IArgumentMatcher, Serializable { class 29 public Same(Object expected) { in Same() method in Same
|
/external/llvm-project/llvm/test/CodeGen/PowerPC/ |
D | vec_extload.ll | 33 ; Same as v16si8_sext_in_reg, expands to load/store halfwords (lhz/sth). 44 ; Same as v8si16_sext_in_reg, but instead of creating the mask 56 ; Same as v16si8_sext_in_reg, expands to load halfword (lha) and 68 ; Same as v8si16_sext_in_reg.
|
/external/llvm/test/CodeGen/PowerPC/ |
D | vec_extload.ll | 33 ; Same as v16si8_sext_in_reg, expands to load/store halfwords (lhz/sth). 44 ; Same as v8si16_sext_in_reg, but instead of creating the mask 56 ; Same as v16si8_sext_in_reg, expands to load halfword (lha) and 68 ; Same as v8si16_sext_in_reg.
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | performance-unnecessary-value-param-arc.mm | 12 // Same for explicitly non-ARC-managed Objective-C objects. 15 // Same for Objective-c classes.
|
D | performance-unnecessary-value-param-arc.m | 12 // Same for explicitly non-ARC-managed Objective-C objects. 15 // Same for Objective-c classes.
|
/external/rust/crates/ring/src/arithmetic/ |
D | bigint_elem_exp_consttime_tests.txt | 54 # Same as above except A was negative. 68 # Same inputs as above except A was negative. Note that A mod M with a "correct 96 # Same as above except A was negative. 110 # Same inputs as above except A was negative. Note that A mod M with a "correct
|
/external/llvm-project/llvm/unittests/Support/ |
D | MemoryBufferRefTest.cpp | 36 MemoryBufferRef Same(MB->getBuffer(), MB->getBufferIdentifier()); in TEST() local 41 EXPECT_EQ(Same, Ref); in TEST()
|
/external/llvm-project/llvm/test/CodeGen/AArch64/GlobalISel/ |
D | select-binop.mir | 31 # Same as add_s32_gpr, for 64-bit operations. 285 # Same as add_s32_gpr, for G_SUB operations. 311 # Same as add_s64_gpr, for G_SUB operations. 337 # Same as add_s32_gpr, for G_OR operations. 363 # Same as add_s64_gpr, for G_OR operations. 417 # Same as add_s32_gpr, for G_AND operations. 443 # Same as add_s64_gpr, for G_AND operations. 469 # Same as add_s32_gpr, for G_SHL operations. 495 # Same as add_s64_gpr, for G_SHL operations. 521 # Same as add_s32_gpr, for G_LSHR operations. [all …]
|
/external/llvm-project/clang/test/CXX/temp/temp.param/ |
D | p10-2a.cpp | 80 concept Same = is_same_v<T, U>; // expected-note {{because 'is_same_v<long, int>' evaluated to fals… 82 template<Same<int> T> // expected-note {{because 'Same<long, int>' evaluated to false}}
|
/external/protobuf/python/google/protobuf/internal/ |
D | testing_refleaks.py | 131 def Same(func): function 133 return Same
|
/external/walt/hardware/ |
D | README.md | 35 * G_PIN 15 // Same as A1 - Accelerometer for detecting when touch probe hits the screen 36 * PD_SCREEN_PIN 20 // Same as A6 - Photodiode that looks at the screen 37 * AUDIO_PIN 22 // Same as A8 - Detects audio signal from headphones output 38 * MIC_PIN 23 // Same as A9 - uses PWM to generate a tone for measuring microphone latency.
|