HomeSort by relevance Sort by last modified time
    Searched defs:Base (Results 1 - 25 of 1104) 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 {
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/recursion-issue/
Base.java 3 public interface Base<T, S extends Base<T, S>>{
  /art/test/065-mismatched-implements/src/
Base.java 17 public class Base implements Defs {
  /art/test/164-resolution-trampoline-dex-cache/src/
Base.java 17 public class Base {
19 System.out.println("Base.foo() on " + getClass().getName());
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
EnablePaging64.S 40 callq Base
41 Base:
42 addl $(L1-Base),(%rsp)
  /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 {
microsoft-abi-extern-template.cpp 18 struct Base {
19 virtual ~Base();
21 template <typename T> struct Foo : 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/clang/test/Profile/
def-dtors.cpp 5 struct Base {
7 Base(int B_) : B(B_) {}
8 ~Base() {}
11 struct Derived : public Base {
12 Derived(int K) : Base(K) {}
cxx-implicit.cpp 5 // Implicit constructors are generated for Base. We should not emit counters
17 // Implicit assignment operators are generated for Base. We should not emit counters
29 struct Base : public BaseBase {
33 struct Derived : public Base {
42 Derived::Derived(const Derived &d) : Base(d) {}
43 Derived::Derived(Derived &&d) : Base(static_cast<Base&&>(d)) {}
45 Base::operator=(d);
49 Base::operator=(static_cast<Base &&>(d))
    [all...]
  /external/compiler-rt/test/profile/Linux/
coverage_dtor.cpp 7 struct Base {
9 Base(int B_) : B(B_) {}
10 ~Base() { g -= B; }
13 struct Derived : public Base {
14 Derived(int K) : Base(K) {}
  /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() {}
  /art/test/137-cfi/src-multidex/
Base.java 17 public abstract class Base {
  /art/test/159-app-image-fields/src/AAA/
Base.java 19 class Base {
  /art/test/163-app-image-methods/src/AAA/
Base.java 19 class Base {
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Pv660/Drivers/IoInitDxe/
Smmu.h 20 UINTN Base;
  /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/CXX/drs/
dr12xx.cpp 11 struct Base {
15 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]

Completed in 316 milliseconds

1 2 3 4 5 6 7 8 91011>>