HomeSort by relevance Sort by last modified time
    Searched defs:D1 (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/libcxx/test/std/utilities/time/time.duration/time.duration.arithmetic/
op_+.pass.cpp 39 typedef std::chrono::duration<int, std::ratio< 1, 1> > D1;
43 static_assert( (std::is_same< decltype(zero+one), D1>::value), "");
44 static_assert( (std::is_same< decltype(+one), D1>::value), "");
op_-.pass.cpp 39 typedef std::chrono::duration<int, std::ratio< 1, 1> > D1;
43 static_assert( (std::is_same< decltype(zero-one), D1>::value), "");
44 static_assert( (std::is_same< decltype(-one), D1>::value), "");
45 static_assert( (std::is_same< decltype(+one), D1>::value), "");
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
067-nested-ifdef-ifndef.c 1 #define D1
14 #ifndef D1
24 #ifdef D1
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.arithmetic/
op_+.pass.cpp 39 typedef std::chrono::duration<int, std::ratio< 1, 1> > D1;
43 static_assert( (std::is_same< decltype(zero+one), D1>::value), "");
44 static_assert( (std::is_same< decltype(+one), D1>::value), "");
op_-.pass.cpp 39 typedef std::chrono::duration<int, std::ratio< 1, 1> > D1;
43 static_assert( (std::is_same< decltype(zero-one), D1>::value), "");
44 static_assert( (std::is_same< decltype(-one), D1>::value), "");
45 static_assert( (std::is_same< decltype(+one), D1>::value), "");
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-frv/
fdpic1.s 43 addi gr15, #gotoff12(.D1), gr0
54 .global D1
55 D1:
59 .D1:
  /external/clang/test/Misc/
diag-line-wrapping.cpp 5 struct D1 : B {};
7 struct DD : D1, D2 {
12 // CHECK: struct DD -> struct D1 -> struct B
  /external/clang/test/SemaTemplate/
class-template-id-2.cpp 16 struct D1 {
elaborated-type-specifier.cpp 10 struct D1 {
18 template class D<D1>;
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/vetcycle/
p.go 6 A1 interface{ a(D1) }
9 D1 interface{ C1 }
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/vetcycle/
p.go 6 A1 interface{ a(D1) }
9 D1 interface{ C1 }
  /external/clang/test/Parser/
cxx-concept-declaration.cpp 28 template<concept T> concept bool D1 = true; // expected-error {{unknown type name 'T'}}
  /external/compiler-rt/test/asan/TestCases/Linux/
sized_delete_test.cc 25 struct D1 {
27 ~D1() { fprintf(stderr, "D1::~D1\n"); }
80 D1 *d1 = reinterpret_cast<D1*>(new D2[10]); local
81 break_optimization(d1);
82 delete [] d1;
84 // ARRAY: D1::~D
    [all...]
  /external/clang/test/CXX/class.derived/class.member.lookup/
p8.cpp 12 struct D1 : public Base {};
15 struct Derived : public D1, public D2 {
21 d.D1::Foo();
22 d.D1::Member = 17;
26 D1::Foo();
27 D1::Member = 42;
28 this->D1::Foo();
29 this->D1::Member = 42;
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p15.cpp 11 struct D1 : B1, B2 { // expected-note 2{{candidate}}
15 D1 d1(0); // expected-error {{ambiguous}}
  /external/clang/test/CXX/special/class.inhctor/
p7.cpp 12 struct D1 : B1, B2 { // expected-note 2{{candidate}}
21 D1 d1(0); // expected-error {{ambiguous}}
elsewhere.cpp 29 struct D1 : I1 {
30 using B1::B1; // expected-error {{'B1' is not a direct base of 'D1', cannot inherit constructors}}
p3.cpp 10 struct D1 : B1 {
13 D1 d1a(1), d1b(1, 1);
15 D1 fd1() { return 1; }
  /external/clang/test/CXX/special/class.init/class.inhctor.init/
p2.cpp 10 struct D1 : C1, C2 {
23 D1 d1(0); // expected-error {{constructor of 'A' inherited from multiple base class subobjects}}
  /external/clang/test/CodeGen/
mips64-class-return.cpp 14 class D1 : public B1 {
24 extern D1 gd1;
33 D1 foo2(void) {
  /external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.types/
rebind.pass.cpp 46 template <class T, class U> struct D1 {};
52 template <class V> using rebind = D1<V, U>;
54 template <class V> struct rebind {typedef D1<V, U> other;};
91 static_assert((std::is_same<std::pointer_traits<D<char, int> >::rebind<double>, D1<double, int> >::value), "");
102 static_assert((std::is_same<std::pointer_traits<D<char, int> >::rebind<double>::other, D1<double, int> >::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/pointer.traits/pointer.traits.types/
rebind.pass.cpp 46 template <class T, class U> struct D1 {};
52 template <class V> using rebind = D1<V, U>;
54 template <class V> struct rebind {typedef D1<V, U> other;};
91 static_assert((std::is_same<std::pointer_traits<D<char, int> >::rebind<double>, D1<double, int> >::value), "");
102 static_assert((std::is_same<std::pointer_traits<D<char, int> >::rebind<double>::other, D1<double, int> >::value), "");
  /external/clang/test/CodeGenCXX/
apple-kext-indirect-call-2.cpp 60 struct D1 : virtual Base3 {
67 struct Sub : D1, D2 {
homogeneous-aggregates.cpp 23 struct D1 : Base1 { // non-homogeneous aggregate
41 // PPC: define void @_Z7func_D12D1(%struct.D1* noalias sret %agg.result, [3 x i64] %x.coerce)
42 // ARM32: define arm_aapcs_vfpcc void @_Z7func_D12D1(%struct.D1* noalias sret %agg.result, [3 x i64] %x.coerce)
43 // ARM64: define void @_Z7func_D12D1(%struct.D1* noalias sret %agg.result, %struct.D1* %x)
44 // X64: define x86_vectorcallcc void @"\01_Z7func_D12D1@@24"(%struct.D1* noalias sret %agg.result, %struct.D1* %x)
45 D1 CC func_D1(D1 x) { return x; }
  /art/test/805-TooDeepClassInstanceOf/src/
Main.java 22 class D1 extends C1 {}
24 class E1 extends D1 {}

Completed in 657 milliseconds

1 2 3 4