Home
last modified time | relevance | path

Searched refs:Same (Results 1 – 25 of 884) sorted by relevance

12345678910>>...36

/external/llvm-project/clang/test/CXX/expr/expr.prim/expr.prim.id/
Dp3.cpp42 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/
Dhas_destructor.rs93 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()
Dhas_float.rs105 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()
Dhas_type_param_in_array.rs111 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()
Dhas_vtable.rs98 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()
Dsizedness.rs138 return ConstrainResult::Same; in insert()
147 ConstrainResult::Same in insert()
159 None => ConstrainResult::Same, in forward()
211 return ConstrainResult::Same; in constrain()
Dmod.rs130 Same, enumerator
135 ConstrainResult::Same in default()
146 ConstrainResult::Same in bitor()
352 ConstrainResult::Same in constrain()
/external/rust/crates/ring/tests/
Dpbkdf2_tests.txt98 # 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/
DinheritanceFromTypeAlias.kt5 typealias Same = Some typealias
7 class My : Same
/external/llvm/test/CodeGen/WebAssembly/
Doffset.ll68 ; 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/
DMatchersToStringTest.java19 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/
Dcompound-requirement.cpp83 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/
Dtemp_arg_nontype_cxx20.cpp152 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/
DSame.java13 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/
DSame.java23 public class Same implements IArgumentMatcher, Serializable { class
29 public Same(Object expected) { in Same() method in Same
/external/llvm-project/llvm/test/CodeGen/PowerPC/
Dvec_extload.ll33 ; 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/
Dvec_extload.ll33 ; 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/
Dperformance-unnecessary-value-param-arc.mm12 // Same for explicitly non-ARC-managed Objective-C objects.
15 // Same for Objective-c classes.
Dperformance-unnecessary-value-param-arc.m12 // Same for explicitly non-ARC-managed Objective-C objects.
15 // Same for Objective-c classes.
/external/rust/crates/ring/src/arithmetic/
Dbigint_elem_exp_consttime_tests.txt54 # 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/
DMemoryBufferRefTest.cpp36 MemoryBufferRef Same(MB->getBuffer(), MB->getBufferIdentifier()); in TEST() local
41 EXPECT_EQ(Same, Ref); in TEST()
/external/llvm-project/llvm/test/CodeGen/AArch64/GlobalISel/
Dselect-binop.mir31 # 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/
Dp10-2a.cpp80 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/
Dtesting_refleaks.py131 def Same(func): function
133 return Same
/external/walt/hardware/
DREADME.md35 * 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.

12345678910>>...36