Searched defs:Derived1 (Results 1 - 14 of 14) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dmember-access-ambig.cpp20 class Derived1 : public Base { }; class in inherits:Base
24 class X : public B, public Derived2, public Derived1
H A Dclass-template-ctor-initializer.cpp61 struct Derived1 : Base { struct in namespace:NonDependentError
62 Derived1() : Base(1, 2) {} // expected-error {{no matching constructor}} function in struct:NonDependentError::Derived1
70 Derived1<void> d1;
H A Ddependent-names.cpp31 template <class T> class Derived1 : Base<T> { class in namespace:test0
78 Derived1<int> d1;
/external/clang/test/Analysis/
H A Dreinterpret-cast.cpp24 class Derived1 : public Base1 {}; class in namespace:PR14872
26 Derived1 *f1();
45 // In this case, 'p' actually refers to a Derived1.
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp12.cpp77 template <typename T> struct Derived1 : Base { struct in namespace:test2
85 Derived1<int> d1;
112 struct Derived1 : Base { struct in namespace:test3
135 expect<0>(Derived1().foo<int>()); // expected-error {{no matching member function for call to 'foo'}}
136 expect<2>(Derived1().foo<0>());
/external/clang/test/SemaCXX/
H A Dcomposite-pointer-type.cpp4 class Derived1 : public Base { }; class in inherits:Base
7 void f0(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
18 void f1(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
H A Dwarn-overloaded-virtual.cpp89 struct Derived1: virtual Base { struct in namespace:UnbalancedVirtual
96 struct MostDerived: Derived1, Derived2 {
107 struct Derived1: virtual Base { struct in namespace:UnbalancedVirtual2
114 struct Derived3: Derived1 {
H A Dconditional-expr.cpp64 struct Derived1: Abstract { struct in inherits:Abstract
220 const Abstract &a = true ? static_cast<const Abstract&>(Derived1()) : Derived2(); // expected-error {{allocating an object of abstract class type 'const Abstract'}}
221 true ? static_cast<const Abstract&>(Derived1()) : throw 3; // expected-error {{allocating an object of abstract class type 'const Abstract'}}
H A Dconversion-function.cpp294 struct Derived1 : Base { }; struct in namespace:rdar8018274
298 struct SuperDerived : Derived1, Derived2 {
299 using Derived1::operator int;
H A Doverloaded-builtin-operators.cpp156 struct Derived1 : Base { }; struct in inherits:Base
164 bool test_with_base_ptrs(ConvertibleToPtrOf<Derived1> d1,
H A Dwarn-thread-safety-parsing.cpp1408 class Derived1 : public Base { }; class in namespace:InheritanceTest
1410 class Derived2 : public Base2, public Derived1 { };
1415 Derived1 mu1_;
/external/eigen/test/eigen2/
H A Dproduct.h14 template<typename Derived1, typename Derived2>
15 bool areNotApprox(const MatrixBase<Derived1>& m1, const MatrixBase<Derived2>& m2, typename Derived1::RealScalar epsilon = precision<typename Derived1::RealScalar>()) argument
/external/eigen/test/
H A Dproduct.h13 template<typename Derived1, typename Derived2>
14 bool areNotApprox(const MatrixBase<Derived1>& m1, const MatrixBase<Derived2>& m2, typename Derived1::RealScalar epsilon = NumTraits<typename Derived1::RealScalar>::dummy_precision()) argument
/external/clang/test/CXX/class.access/
H A Dp4.cpp133 class Derived1 : Base<1> { }; class in namespace:test3
166 class Derived1 : private Base { // expected-note 2 {{declared private here}} \ class in namespace:test4
171 Private test1(Derived1 &d) { return d; } // expected-error {{'operator Private' is a private member}} \
172 // expected-error {{cannot cast 'test4::Derived1' to its private base class}}
173 Public test2(Derived1 &d) { return d; } // expected-error {{cannot cast 'test4::Derived1' to its private base class}} \

Completed in 300 milliseconds