HomeSort by relevance Sort by last modified time
    Searched refs:U1 (Results 26 - 50 of 194) sorted by null

12 3 4 5 6 7 8

  /external/clang/test/SemaCXX/
inherit.cpp 21 union U1 : public A { }; // expected-error{{unions cannot have base classes}}
err_typecheck_assign_const.cpp 49 struct U1 {
54 U1 u1; member in struct:U2
67 u4.u3.u2.u1.a = 5; // expected-error{{cannot assign to non-static data member 'u2' with const-qualified type 'const U2'}}
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
nullptr.pass.cpp 40 using U1 = std::unique_ptr<VT>;
42 static_assert(std::is_nothrow_constructible<U1, decltype(nullptr)>::value,
70 using U1 = std::unique_ptr<VT, NonDefaultDeleter>;
73 static_assert(!std::is_constructible<U1, decltype(nullptr)>::value, "");
pointer.pass.cpp 46 using U1 = std::unique_ptr<ValueT>;
50 static_assert(std::is_nothrow_constructible<U1, A*>::value, "");
54 static_assert(!std::is_convertible<A*, U1>::value, "");
119 using U1 = std::unique_ptr<T, NonDefaultDeleter>;
122 static_assert(!std::is_constructible<U1, T*>::value, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
nullptr.pass.cpp 40 using U1 = std::unique_ptr<VT>;
42 static_assert(std::is_nothrow_constructible<U1, decltype(nullptr)>::value,
70 using U1 = std::unique_ptr<VT, NonDefaultDeleter>;
73 static_assert(!std::is_constructible<U1, decltype(nullptr)>::value, "");
pointer.pass.cpp 46 using U1 = std::unique_ptr<ValueT>;
50 static_assert(std::is_nothrow_constructible<U1, A*>::value, "");
54 static_assert(!std::is_convertible<A*, U1>::value, "");
119 using U1 = std::unique_ptr<T, NonDefaultDeleter>;
122 static_assert(!std::is_constructible<U1, T*>::value, "");
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_final.pass.cpp 19 union U1 { };
58 test_is_not_final<U1>();
59 test_is_not_final<U1*>();
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
copy_cv_reference.h 17 using U1 =
22 typename std::add_volatile<U1>::type, U1>::type;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_final.pass.cpp 19 union U1 { };
58 test_is_not_final<U1>();
59 test_is_not_final<U1*>();
  /external/compiler-rt/lib/asan/tests/
asan_oob_test.cc 70 OOBTest<U1>();
115 oob_test<U1>(10, -1);
119 oob_test<U1>(kLargeMalloc, -1);
123 oob_test<U1>(10, 10);
127 oob_test<U1>(kLargeMalloc, kLargeMalloc);
asan_asm_test.cc 119 DECLARE_ASM_WRITE(U1, "1", "movb", "r");
124 DECLARE_ASM_READ(U1, "1", "movb", "=r");
129 DECLARE_ASM_REP_MOVS(U1, "movsb");
218 TestAsmWrite<U1>("WRITE of size 1");
226 TestAsmRead<U1>("READ of size 1");
261 TestAsmRepMovs<U1>("READ of size 1", "WRITE of size 1");
  /external/clang/test/CodeGen/
xcore-stringtype.c 141 // CHECK: !{{[0-9]+}} = !{void (%union.U1*)* @unionType1,
142 // CHECK: !"f{0}(u(U1){m(pu2){p(u(U2){m(pu3){p(u(U3){m(u1){u(U1){}}})}})}})"}
144 // CHECK: !"f{0}(u(U2){m(pu3){p(u(U3){m(u1){u(U1){m(pu2){p(u(U2){})}}}})}})"}
146 // CHECK: !"f{0}(u(U3){m(u1){u(U1){m(pu2){p(u(U2){m(pu3){p(u(U3){})}})}}}})"}
148 // CHECK: !"f{0}(u(U4){m(u1){u(U1){m(pu2){p(u(U2){m(pu3){p(u(U3){m(u1){u(U1){}}})}})}}}})"
158 union U3{union U1 u1;}; member in union:U3
159 union U4{union U1 u1;}; member in union:U4
    [all...]
  /external/clang/test/Sema/
static-assert.c 39 typedef UNION(unsigned, struct A) U1;
  /external/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/
gcd.pass.cpp 57 using U1 = std::make_unsigned_t<Input1>;
73 using Output = std::common_type_t<U1, U2>;
74 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect);
75 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect);
85 using Output = std::common_type_t<S2, U1>;
86 accumulate &= test0<S2, U1, Output>(TC.x, TC.y, TC.expect);
87 accumulate &= test0<U1, S2, Output>(TC.x, TC.y, TC.expect);
88 accumulate &= test0<S2, U1, Output>(-TC.x, TC.y, TC.expect);
89 accumulate &= test0<U1, S2, Output>(TC.x, -TC.y, TC.expect);
  /external/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/
lcm.pass.cpp 56 using U1 = std::make_unsigned_t<Input1>;
72 using Output = std::common_type_t<U1, U2>;
73 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect);
74 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect);
84 using Output = std::common_type_t<S2, U1>;
85 accumulate &= test0<S2, U1, Output>(TC.x, TC.y, TC.expect);
86 accumulate &= test0<U1, S2, Output>(TC.x, TC.y, TC.expect);
87 accumulate &= test0<S2, U1, Output>(-TC.x, TC.y, TC.expect);
88 accumulate &= test0<U1, S2, Output>(TC.x, -TC.y, TC.expect);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/numeric/numeric.ops/numeric.ops.gcd/
gcd.pass.cpp 51 using U1 = typename std::make_unsigned<Input1>::type;
67 using Output = std::common_type_t<U1, U2>;
68 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect);
69 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect);
79 using Output = std::common_type_t<S2, U1>;
80 accumulate &= test0<S2, U1, Output>(TC.x, TC.y, TC.expect);
81 accumulate &= test0<U1, S2, Output>(TC.x, TC.y, TC.expect);
82 accumulate &= test0<S2, U1, Output>(-TC.x, TC.y, TC.expect);
83 accumulate &= test0<U1, S2, Output>(TC.x, -TC.y, TC.expect);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/
lcm.pass.cpp 50 using U1 = typename std::make_unsigned<Input1>::type;
66 using Output = std::common_type_t<U1, U2>;
67 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect);
68 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect);
78 using Output = std::common_type_t<S2, U1>;
79 accumulate &= test0<S2, U1, Output>(TC.x, TC.y, TC.expect);
80 accumulate &= test0<U1, S2, Output>(TC.x, TC.y, TC.expect);
81 accumulate &= test0<S2, U1, Output>(-TC.x, TC.y, TC.expect);
82 accumulate &= test0<U1, S2, Output>(TC.x, -TC.y, TC.expect);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/numeric.ops.gcd/
gcd.pass.cpp 57 using U1 = std::make_unsigned_t<Input1>;
73 using Output = std::common_type_t<U1, U2>;
74 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect);
75 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect);
85 using Output = std::common_type_t<S2, U1>;
86 accumulate &= test0<S2, U1, Output>(TC.x, TC.y, TC.expect);
87 accumulate &= test0<U1, S2, Output>(TC.x, TC.y, TC.expect);
88 accumulate &= test0<S2, U1, Output>(-TC.x, TC.y, TC.expect);
89 accumulate &= test0<U1, S2, Output>(TC.x, -TC.y, TC.expect);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/numeric.ops.lcm/
lcm.pass.cpp 55 using U1 = std::make_unsigned_t<Input1>;
71 using Output = std::common_type_t<U1, U2>;
72 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect);
73 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect);
83 using Output = std::common_type_t<S2, U1>;
84 accumulate &= test0<S2, U1, Output>(TC.x, TC.y, TC.expect);
85 accumulate &= test0<U1, S2, Output>(TC.x, TC.y, TC.expect);
86 accumulate &= test0<S2, U1, Output>(-TC.x, TC.y, TC.expect);
87 accumulate &= test0<U1, S2, Output>(TC.x, -TC.y, TC.expect);
  /frameworks/base/core/tests/coretests/src/android/content/pm/
RegisteredServicesCacheTest.java 50 private static final int U1 = 1;
129 int u1uid = UserHandle.getUid(U1, 0);
130 cache.addServiceForQuerying(U1, r2, newServiceInfo(t2, u1uid));
133 assertEquals(1, cache.getAllServicesSize(U1));
134 assertEquals(1, cache.getPersistentServicesSize(U1));
139 assertEquals(1, cache.getPersistentServicesSize(U1));
141 assertNotEmptyFileCreated(cache, U1);
147 int u1uid = UserHandle.getUid(U1, 0);
148 cache.addServiceForQuerying(U1, r2, newServiceInfo(t2, u1uid));
150 assertEquals(1, cache.getAllServicesSize(U1));
171 int u1 = 1; local
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
e.go 84 type U1 struct {
85 *U1
88 // U1.M should appear as method of U1.
89 func (*U1) M() {}
  /prebuilts/go/linux-x86/src/go/doc/testdata/
e.go 84 type U1 struct {
85 *U1
88 // U1.M should appear as method of U1.
89 func (*U1) M() {}
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192K1Point.java 118 int[] U1, S1;
121 U1 = X1.x;
129 U1 = tt1;
130 SecP192K1Field.multiply(S1, X1.x, U1);
137 SecP192K1Field.subtract(U1, U2, H);
162 SecP192K1Field.multiply(HSquared, U1, V);
SecP192R1Point.java 117 int[] U1, S1;
120 U1 = X1.x;
128 U1 = tt1;
129 SecP192R1Field.multiply(S1, X1.x, U1);
136 SecP192R1Field.subtract(U1, U2, H);
161 SecP192R1Field.multiply(HSquared, U1, V);
SecP224K1Point.java 118 int[] U1, S1;
121 U1 = X1.x;
129 U1 = tt1;
130 SecP224K1Field.multiply(S1, X1.x, U1);
137 SecP224K1Field.subtract(U1, U2, H);
162 SecP224K1Field.multiply(HSquared, U1, V);

Completed in 682 milliseconds

12 3 4 5 6 7 8