OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Derived3
(Results
1 - 10
of
10
) sorted by null
/art/test/078-polymorphic-virtual/src/
Derived3.java
17
public class
Derived3
extends Base {
Main.java
21
Derived3
derived3
= new
Derived3
();
local
25
derived3
.start();
30
derived3
.join();
38
System.out.println(
derived3
.getValue());
/external/chromium_org/tools/clang/plugins/tests/
blacklisted_dirs.cpp
20
struct
Derived3
: public Base {
/external/clang/test/CXX/class.derived/
p1.cpp
30
struct
Derived3
: decltype(T().foo()) { };
32
Derived3
<Foo> d;
/external/clang/test/CXX/except/except.spec/
p14.cpp
95
struct
Derived3
: ThrowingBase {
96
Derived3
() noexcept(true) = default; // expected-error {{does not match the calculated}}
97
Derived3
(const
Derived3
&) noexcept(true) = default; // expected-error {{does not match the calculated}}
98
Derived3
(
Derived3
&&) noexcept(true) = default; // expected-error {{does not match the calculated}}
99
Derived3
&operator=(const
Derived3
&) noexcept(true) = default; // expected-error {{does not match the calculated}}
100
Derived3
&operator=(
Derived3
&&) noexcept(true) = default; // expected-error {{does not match the calculated}
[
all
...]
/external/clang/test/SemaCXX/
warn-overloaded-virtual.cpp
114
struct
Derived3
: Derived1 {
118
struct MostDerived:
Derived3
, Derived2 {
warn-thread-safety-parsing.cpp
[
all
...]
type-traits.cpp
[
all
...]
/external/clang/test/CXX/class.access/
p4.cpp
145
class
Derived3
: // expected-error 2 {{inherited virtual base class 'Base<2>' has private destructor}} \
153
Derived3
d3; // expected-note {{implicit default constructor}}\
184
class
Derived3
: private Base { // expected-note {{constrained by private inheritance here}} \
189
Private test1(
Derived3
&d) { return d; }
190
Public test2(
Derived3
&d) { return d; } // expected-error {{'operator Public' is a private member of 'test4::Base'}} \
191
// expected-error {{cannot cast 'test4::
Derived3
' to its private base class}}
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p12.cpp
122
struct
Derived3
: Base {
139
expect<3>(
Derived3
().foo<int>());
140
expect<1>(
Derived3
().foo<0>()); // expected-error {{no matching member function for call to 'foo'}}
Completed in 161 milliseconds