Home
last modified time | relevance | path

Searched defs:Derived (Results 1 – 25 of 352) sorted by relevance

12345678910>>...15

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_index/include/boost/type_index/
Dtype_index_facade.hpp154 BOOST_CXX14_CONSTEXPR inline bool operator == (const type_index_facade<Derived, TypeInfo>& lhs, con… in operator ==()
159 BOOST_CXX14_CONSTEXPR inline bool operator < (const type_index_facade<Derived, TypeInfo>& lhs, cons… in operator <()
166 BOOST_CXX14_CONSTEXPR inline bool operator > (const type_index_facade<Derived, TypeInfo>& lhs, cons… in operator >()
171 BOOST_CXX14_CONSTEXPR inline bool operator <= (const type_index_facade<Derived, TypeInfo>& lhs, con… in operator <=()
176 BOOST_CXX14_CONSTEXPR inline bool operator >= (const type_index_facade<Derived, TypeInfo>& lhs, con… in operator >=()
181 BOOST_CXX14_CONSTEXPR inline bool operator != (const type_index_facade<Derived, TypeInfo>& lhs, con… in operator !=()
187 inline bool operator == (const TypeInfo& lhs, const type_index_facade<Derived, TypeInfo>& rhs) BOOS… in operator ==()
192 inline bool operator < (const TypeInfo& lhs, const type_index_facade<Derived, TypeInfo>& rhs) BOOST… in operator <()
197 inline bool operator > (const TypeInfo& lhs, const type_index_facade<Derived, TypeInfo>& rhs) BOOST… in operator >()
202 inline bool operator <= (const TypeInfo& lhs, const type_index_facade<Derived, TypeInfo>& rhs) BOOS… in operator <=()
[all …]
/aosp_15_r20/external/compiler-rt/test/msan/
H A Ddtor-trivial-class-members.cc21 struct Derived { struct
27 Derived() { in Derived() argument
34 ~Derived() { in ~Derived() argument
H A Ddtor-multiple-inheritance-nontrivial-class-members.cc92 struct Derived : public Base, public Intermediate { struct
99 Derived() in Derived() argument
107 ~Derived() { in ~Derived() argument
H A Ddtor-derived-class.cc14 struct Derived : public Base { struct
16 Derived() { y = 10; } in Derived() function
17 ~Derived() {} in ~Derived() argument
/aosp_15_r20/art/test/569-checker-pattern-replacement/src-multidex/
H A DDerived.java17 public final class Derived extends Base { class
18 public Derived() { in Derived() method in Derived
22 public Derived(int intValue) { in Derived() method in Derived
26 public Derived(String stringValue) { in Derived() method in Derived
31 public Derived(double doubleValue) { in Derived() method in Derived
35 public Derived(int intValue, double doubleValue, Object objectValue) { in Derived() method in Derived
41 Derived(int intValue, double doubleValue, Object objectValue, String stringValue) { in Derived() method in Derived
51 public Derived(float floatValue) { in Derived() method in Derived
56 public Derived(int intValue, double doubleValue, Object objectValue, float floatValue) { in Derived() method in Derived
/aosp_15_r20/external/jspecify/samples/annotatedBoundsOfWildcard/annotatedboundsofwildcard/
H A DAnnotatedBoundsOfWildcard.java52 class Derived extends Base {} class
60 Test<Derived, Derived, Derived> aNotNullNotNullNotNull, in main()
62 Test<Derived, Derived, @Nullable Derived> aNotNullNotNullNull, in main()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/iterator/include/boost/iterator/
Diterator_archetypes.hpp200 bool operator==(traversal_archetype_<Derived, Value, single_pass_traversal_tag> const&, in operator ==()
241 Derived& operator+(traversal_archetype_<Derived, Value, random_access_traversal_tag> const&, in operator +()
246 traversal_archetype_<Derived, Value, random_access_traversal_tag> const&) in operator +()
250 Derived& operator-(traversal_archetype_<Derived, Value, random_access_traversal_tag> const&, in operator -()
255 std::ptrdiff_t operator-(traversal_archetype_<Derived, Value, random_access_traversal_tag> const&, in operator -()
260 bool operator<(traversal_archetype_<Derived, Value, random_access_traversal_tag> const&, in operator <()
265 bool operator>(traversal_archetype_<Derived, Value, random_access_traversal_tag> const&, in operator >()
270 bool operator<=(traversal_archetype_<Derived, Value, random_access_traversal_tag> const&, in operator <=()
275 bool operator>=(traversal_archetype_<Derived, Value, random_access_traversal_tag> const&, in operator >=()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/multi_index/include/boost/multi_index/detail/
Diter_adaptor.hpp117 const forward_iter_adaptor_base<Derived,Base>& x, in operator ==()
175 const bidirectional_iter_adaptor_base<Derived,Base>& x, in operator ==()
256 const random_access_iter_adaptor_base<Derived,Base>& x, in operator ==()
265 const random_access_iter_adaptor_base<Derived,Base>& x, in operator <()
275 const random_access_iter_adaptor_base<Derived,Base>& x, in operator -()
/aosp_15_r20/external/clang/test/CodeGenCXX/
H A Dsanitize-dtor-nontrivial-virtual-base.cpp33 struct Derived : public Base, public virtual VirtualBase { struct
37 Derived() { in Derived() argument
40 ~Derived() {} in ~Derived() argument
H A Dsanitize-dtor-repress-aliasing.cpp21 struct Derived : public Base { struct
23 Derived() { z = 10; } in Derived() argument
24 ~Derived() {} in ~Derived() argument
/aosp_15_r20/external/clang/test/CXX/conv/conv.mem/
H A Dp4.cpp11 struct Derived : Base {}; struct
20 struct Derived : private Base {}; // expected-note 2 {{declared private here}} struct
31 struct Derived : A, B {}; struct
40 struct Derived : virtual Base {}; struct
50 …struct Derived : Base, virtual A {}; // expected-warning {{direct base 'Base' is inaccessible due… struct
60 struct Derived : Base, virtual A {}; struct
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/tuple/tuple.tuple/
H A DPR38601.pass.cpp18 struct Derived : Base { struct
20 Derived(int x, Ts... ts): Base(ts...), x_(x) { } in Derived() argument
26 Derived d(1, 2, 3); in main() argument
/aosp_15_r20/external/clang/test/CodeCompletion/
H A Dctor-initializer.cpp16 struct Derived : public Base1 { struct
23 Derived::Derived() : {} in Derived() function in Derived
28 Derived::Derived(int) try : { in Derived() function in Derived
35 Derived::Derived(float) try : Base1(), in Derived() function in Derived
/aosp_15_r20/external/clang/test/SemaTemplate/
H A Dinstantiate-using-decl.cpp114 template <typename Scalar> struct Derived : Base<Scalar> { struct
117 static void m_fn1() { in m_fn1()
133 enum { TheSize = sizeof(field) };
134 typedef decltype(field) U;
137 enum { TheSize = sizeof(field) };
145 template class Derived<int>; // expected-note {{requested here}} variable
H A Ddependent-base-classes.cpp76 struct Derived : Base1<T>, Base2 { struct
77 …ed::type type; // expected-error{{member 'type' found in multiple base classes of different types}}
78 type *foo(float *fp) { return fp; } in foo()
120 class Derived class
131 template <class T> struct Derived: public Base<T> { struct
132 typename Derived::Base* p; // meaning Derived::Base<T>
/aosp_15_r20/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineUtil.h27 #define EIGEN_SKYLINE_INHERIT_ASSIGNMENT_OPERATOR(Derived, Op) \ argument
38 #define EIGEN_SKYLINE_INHERIT_SCALAR_ASSIGNMENT_OPERATOR(Derived, Op) \ argument
45 #define EIGEN_SKYLINE_INHERIT_ASSIGNMENT_OPERATORS(Derived) \ argument
52 #define _EIGEN_SKYLINE_GENERIC_PUBLIC_INTERFACE(Derived, BaseClass) \ argument
60 #define EIGEN_SKYLINE_GENERIC_PUBLIC_INTERFACE(Derived) \ argument
/aosp_15_r20/external/clang/test/FixIt/
H A Dtypo.cpp52 struct Derived : public Base { // expected-note{{base class 'Base' specified here}} struct
55Derived() : base(), // expected-error{{initializer 'base' does not name a non-static data member o… in Derived() argument
65 int &Derived::getMember() { in getMember() argument
/aosp_15_r20/external/clang/test/CXX/temp/temp.res/temp.local/
H A Dp3.cpp9 template <class T> struct Derived: Base<int>, Base<char> { struct
10 …typename Derived::Base b; // expected-error{{member 'Base' found in multiple base classes of diffe… argument
11 typename Derived::Base<double> d; // OK argument
14 t->Derived::Base<T>::f(); in g() argument
/aosp_15_r20/external/clang/test/Profile/
H A Dcxx-implicit.cpp33 struct Derived : public Base { struct
41 Derived::Derived() {} in Derived() function in Derived
42 Derived::Derived(const Derived &d) : Base(d) {} in Derived() function in Derived
43 Derived::Derived(Derived &&d) : Base(static_cast<Base&&>(d)) {} in Derived() function in Derived
/aosp_15_r20/external/clang/test/SemaCXX/
H A DMicrosoftSuper.cpp24 struct Derived : Base1 { struct
25 __super::XXX x;
26 typedef __super::XXX Type;
28 enum E {
32 void foo() { in foo()
42 static void bar() { in bar()
H A Doffsetof.cpp17 struct Derived : Base { int y; }; struct
81 struct Derived : virtual Base { struct
82 …) { (void)__builtin_offsetof(Derived, Field); } // expected-warning {{offset of on non-POD type}} \ in Fun()
/aosp_15_r20/external/eigen/Eigen/src/SparseCore/
H A DSparseUtil.h21 #define EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATOR(Derived, Op) \ argument
32 #define EIGEN_SPARSE_INHERIT_SCALAR_ASSIGNMENT_OPERATOR(Derived, Op) \ argument
39 #define EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATORS(Derived) \ argument
43 #define EIGEN_SPARSE_PUBLIC_INTERFACE(Derived) \ argument
/aosp_15_r20/external/llvm/unittests/Support/
H A DCasting.cpp195 class Derived : public Base { class
197 Derived() {} in Derived() function in __anon6a849c790211::inferred_upcasting::Derived
244 struct Derived : Base { struct
245 Derived() : Base(true) {} in Derived() argument
246 static bool classof(const Base *B) { return B->IsDerived; } in classof()
/aosp_15_r20/external/clang/test/Analysis/
H A Darray-struct-region.cpp183 struct Derived : public Base { struct
184 Derived(int& x) : Base(x) {} in Derived() function
186 void operator=(int a) { x = a; } in operator =()
/aosp_15_r20/external/clang/test/Index/
H A Dnamespaced-base-ctor-init.cpp3 struct Derived : Base { struct
4 Derived() : ns1::Base() {} in Derived() function

12345678910>>...15