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

1 2 3 4 5 6 7 8 91011>>

  /art/test/066-mismatched-super/src/
Base.java 17 public class Base extends Defs {
  /art/test/065-mismatched-implements/src/
Base.java 17 public class Base implements Defs {
  /external/clang/test/CodeGenCXX/
pr20897.cpp 2 struct Base {};
5 struct __declspec(dllexport) Derived : virtual Base {
20 struct __declspec(dllexport) Derived2 : virtual Base {
virt-canonical-decl.cpp 3 class Base {
5 virtual ~Base();
8 Base::~Base()
12 class Foo : public Base {
debug-info-template-fwd.cpp 11 template <class A> class Base {
15 template <class A> struct Derived : Base<A> {
18 Base<int> *f;
20 // During the instantiation of Derived<int>, Base<int> becomes required to be
22 // above), we immediately try to build debug info for Base<int> which then
25 // (if 'f' is not present, the point at which Base<int> becomes required to be
27 // Base<int> was never emitted so we ignore it and carry on until we
28 // wire up the base class of Derived<int> in the debug info later on)
linetable-virtual-variadic.cpp 3 class Base {
7 class Derived : public virtual Base {
sanitize-dtor-derived-class.cpp 4 // Base dtor poisons members
8 class Base {
11 Base() {
14 virtual ~Base() {
19 class Derived : public Base {
32 // Invoke base destructor. No vtable pointer to poison.
45 // Invokes base destructor, and poison vtable pointer.
65 // Poison members and destroy non-virtual base.
  /external/clang/test/Profile/
cxx-implicit.cpp 5 // An implicit constructor is generated for Base. We should not emit counters
9 struct Base {
13 struct Derived : public Base {
  /external/clang/test/SemaCXX/
PR9884.cpp 3 class Base {
5 Base(int val);
9 class Derived : public Base {
16 : Base( val )
attr-notail.cpp 3 class Base {
8 virtual ~Base() {}
11 class Derived1 : public Base {
  /external/google-breakpad/src/client/windows/tests/crash_generation_app/
abstract_class.cc 34 Base::Base(Derived* derived)
38 Base::~Base() {
44 // Disable warning C4355: 'this' : used in base member initializer list.
46 : Base(this) { // C4355
  /art/test/068-classloader/src/
Base.java 18 * Common base class.
20 public class Base {
21 public Base() {}
  /external/chromium-trace/catapult/third_party/Paste/paste/evalexception/media/
MochiKit.packed.js 15 dojo.provide("MochiKit.Base");
20 if(typeof (MochiKit.Base)=="undefined"){
21 MochiKit.Base={};
26 MochiKit.Base.VERSION="1.4.2";
27 MochiKit.Base.NAME="MochiKit.Base";
28 MochiKit.Base.update=function(_1,_2){
42 MochiKit.Base.update(MochiKit.Base,{__repr__:function(){
95 return MochiKit.Base._flattenArray([],lst)
    [all...]
  /external/clang/test/Analysis/
cxx-for-range-cfg.cpp 10 T *Base;
  /external/clang/test/CXX/class.derived/
p2.cpp 4 // "During the lookup for a base class name, non-type names are ignored"
6 struct Base {};
7 int Base = 10;
8 struct Derived : Base {};
  /external/clang/test/Index/
namespaced-base-ctor-init.cpp 2 struct Base {};
3 struct Derived : Base {
4 Derived() : ns1::Base() {}
9 // CHECK: namespaced-base-ctor-init.cpp:4:15: NamespaceRef=ns1:1:11 Extent=[4:15 - 4:18]
10 // CHECK: namespaced-base-ctor-init.cpp:4:20: TypeRef=struct ns1::Base:2:8 Extent=[4:20 - 4:24]
  /external/clang/test/SemaTemplate/
instantiate-elab-type-specifier.cpp 5 template <class T> struct Base {
10 template <class T> struct Derived : Base<T> {
11 typedef struct Base<T>::foo type;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_buffer_objects.h 40 struct gl_buffer_object Base;
  /external/testng/src/test/java/test/testng249/
Base.java 5 public class Base {
  /external/testng/src/test/java/test/tmp/
Base.java 5 public class Base {
  /external/compiler-rt/test/msan/
dtor-base-access.cc 10 class Base {
13 Base(int *y_ptr) {
17 virtual ~Base();
20 class Derived : public Base {
23 Derived():Base(&y) {
29 Base::~Base() {
39 // ok access base class members
  /external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
assign_rv_pair_U_V.pass.cpp 20 struct Base
22 virtual ~Base() {}
26 : public Base
35 typedef std::pair<std::unique_ptr<Base>, long> P2;
rv_pair_U_V.pass.cpp 20 struct Base
22 virtual ~Base() {}
26 : public Base
35 typedef std::pair<std::unique_ptr<Base>, long> P2;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
assign_rv_pair_U_V.pass.cpp 20 struct Base
22 virtual ~Base() {}
26 : public Base
35 typedef std::pair<std::unique_ptr<Base>, long> P2;
rv_pair_U_V.pass.cpp 20 struct Base
22 virtual ~Base() {}
26 : public Base
35 typedef std::pair<std::unique_ptr<Base>, long> P2;

Completed in 826 milliseconds

1 2 3 4 5 6 7 8 91011>>