OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:derived3
(Results
1 - 13
of
13
) sorted by null
/art/test/078-polymorphic-virtual/src/
Main.java
21
Derived3
derived3
= new
Derived3
();
local
25
derived3
.start();
30
derived3
.join();
38
System.out.println(
derived3
.getValue());
Derived3.java
17
public class
Derived3
extends Base {
/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/v8/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/SemaCXX/
warn-overloaded-virtual.cpp
114
struct
Derived3
: Derived1 {
118
struct MostDerived:
Derived3
, Derived2 {
offsetof.cpp
55
int
derived3
[__builtin_offsetof(Derived2, z) == 8? 1 : -1];
variable
overload-call.cpp
228
int*
derived3
(A*);
229
float*
derived3
(const B*);
230
char*
derived3
(C*);
242
char* d8 =
derived3
(d);
type-traits.cpp
[
all
...]
warn-thread-safety-parsing.cpp
[
all
...]
/frameworks/support/lifecycle/compiler/src/tests/test-data/
InheritanceOk1.java
53
class
Derived3
extends Base2 {
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p12.cpp
124
struct
Derived3
: Base {
141
expect<3>(
Derived3
().foo<int>());
142
expect<1>(
Derived3
().foo<0>()); // expected-error {{no matching member function for call to 'foo'}}
/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}}
Completed in 155 milliseconds