/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.members/ |
op_and_eq.pass.cpp | 33 std::bitset<N> v3 = v1; local 36 assert(v1[i] == (v3[i] && v2[i]));
|
op_or_eq.pass.cpp | 33 std::bitset<N> v3 = v1; local 36 assert(v1[i] == (v3[i] || v2[i]));
|
op_xor_eq.pass.cpp | 33 std::bitset<N> v3 = v1; local 36 assert(v1[i] == (v3[i] != v2[i]));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.operators/ |
op_and.pass.cpp | 33 std::bitset<N> v3 = v1; local 34 assert((v1 & v2) == (v3 &= v2));;
|
op_not.pass.cpp | 33 std::bitset<N> v3 = v1; local 34 assert((v1 ^ v2) == (v3 ^= v2));;
|
op_or.pass.cpp | 33 std::bitset<N> v3 = v1; local 34 assert((v1 | v2) == (v3 |= v2));;
|
/cts/tests/tests/view/src/android/view/cts/ |
View_FocusHandlingTest.java | 40 View v3 = activity.findViewById(R.id.view3); local 45 assertNotNull(v3); 51 assertFalse(v3.isFocusable()); 56 v3.setFocusable(true); 61 assertTrue(v3.isFocusable()); 70 v3.setNextFocusRightId(R.id.view4); 71 v3.setNextFocusUpId(R.id.view1); 83 assertEquals(R.id.view1, v3.getNextFocusUpId()); 84 assertEquals(R.id.view4, v3.getNextFocusRightId()); 91 assertSame(v3, v1.focusSearch(View.FOCUS_DOWN)) [all...] |
/external/clang/test/CodeGen/ |
mmx-inline-asm.c | 9 __m64 v1, v2, v3, v4, v5, v6, v7; local 19 : "=&y" (v1), "=&y" (v2), "=&y" (v3),
|
vld_dup.c | 10 int32x2x4_t v3; local 28 v3 = vld4_dup_s32(v2);
|
altivec.c | 12 // CHECK: @v3 = global <16 x i8> <i8 0, i8 0, i8 0, i8 97, i8 0, i8 0, i8 0, i8 98, i8 0, i8 0, i8 0, i8 99, i8 0, i8 0, i8 0, i8 100> 13 vector char v3 = (vector char)((vector int)('a', 'b', 'c', 'd')); variable
|
mangle-windows.c | 69 void __vectorcall v3(short a) {} function 70 // CHECK: define x86_vectorcallcc void @"\01v3@@4"( 71 // X64: define x86_vectorcallcc void @"\01v3@@8"(
|
vector-alignment.c | 13 double __attribute__((vector_size(64))) v3; variable 14 // CHECK: @v3 {{.*}}, align 32
|
/external/clang/test/SemaCXX/ |
attr-cleanup-gcc.cpp | 15 int v3 __attribute__((cleanup(c3<int>))); // expected-warning {{GCC does not allow the 'cleanup' attribute argument to be anything other than a simple identifier}} local
|
attr-cleanup.cpp | 14 int v3 __attribute__((cleanup(C::c2))); // expected-error {{'c2' is a private member of 'C'}} local
|
type-convert-construct.cpp | 7 int v3 = arr(); // expected-error {{array types cannot be value-initialized}} local
|
/art/runtime/ |
dex_instruction_visitor_test.cc | 58 CountVisitor v3; local 60 v3.Visit(c3, sizeof(c3)); 61 EXPECT_EQ(3, v3.count_);
|
/external/clang/test/CXX/lex/lex.literal/lex.ext/ |
p7.cpp | 19 auto v3 = 12_w; // calls operator "" _w("12") local 24 same_type<decltype(v3), unsigned> test3;
|
/external/clang/test/Sema/ |
vector-assign.c | 11 v1s v3; local 16 v1 = v3; // expected-error {{assigning to 'v2s' (vector of 2 'int' values) from incompatible type 'v1s' (vector of 1 'int' value)}} 21 v2 = v3; // expected-error {{assigning to 'v2u' (vector of 2 'unsigned int' values) from incompatible type 'v1s' (vector of 1 'int' value)}} 25 v3 = v1; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type 'v2s' (vector of 2 'int' values)}} 26 v3 = v2; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type 'v2u' (vector of 2 'unsigned int' values)}} 27 v3 = v4; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type 'v2f' (vector of 2 'float' values)}} 28 v3 = v5; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type 'v4ss'}} 32 v4 = v3; // expected-error {{assigning to 'v2f' (vector of 2 'float' values) from incompatible type 'v1s' (vector of 1 'int' value)}} 37 v5 = v3; // expected-error {{assigning to 'v4ss' (vector of 4 'short' values) from incompatible type 'v1s' (vector of 1 'int' value)}}
|
/external/clang/test/SemaTemplate/ |
instantiate-deeply.cpp | 12 b v3 = 8; local 13 a v4 = v3 * v3;
|
/external/eigen/test/ |
inverse.cpp | 64 VectorType v3 = VectorType::Random(rows); local 65 MatrixType m3 = v3*v3.transpose(), m4(rows,cols);
|
/external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/ |
acos_valarray.pass.cpp | 46 std::valarray<T> v3 = acos(v1); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|
asin_valarray.pass.cpp | 46 std::valarray<T> v3 = asin(v1); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|
atan2_valarray_valarray.pass.cpp | 48 std::valarray<T> v3 = atan2(v1, v2); local 49 assert(v3.size() == v1.size()); 50 for (int i = 0; i < v3.size(); ++i) 51 assert(is_about(v3[i], a3[i], 10));
|
atan2_valarray_value.pass.cpp | 46 std::valarray<T> v3 = atan2(v1, .75); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|
atan2_value_valarray.pass.cpp | 46 std::valarray<T> v3 = atan2(.75, v1); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|