HomeSort by relevance Sort by last modified time
    Searched defs:Base (Results 1 - 25 of 396) 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/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 )
  /external/clang/test/CodeGenCXX/
virt-canonical-decl.cpp 3 class Base {
5 virtual ~Base();
8 Base::~Base()
12 class Foo : public Base {
apple-kext-indirect-call.C 3 struct Base {
7 void Base::abc(void) const {}
9 void FUNC(Base* p) {
10 p->Base::abc();
13 // CHECK: getelementptr inbounds (void (%struct.Base*)** bitcast ([3 x i8*]* @_ZTV4Base to void (%struct.Base*)**), i64 2)
debug-info-template-fwd.cpp 9 template <class A> class Base {
13 template <class A> struct Derived : Base<A> {
16 Base<int> *f;
18 // During the instantiation of Derived<int>, Base<int> becomes required to be
20 // above), we immediately try to build debug info for Base<int> which then
23 // (if 'f' is not present, the point at which Base<int> becomes required to be
25 // Base<int> was never emitted so we ignore it and carry on until we
26 // wire up the base class of Derived<int> in the debug info later on)
  /art/test/068-classloader/src/
Base.java 18 * Common base class.
20 public class Base {
21 public Base() {}
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_buffer_objects.h 40 struct gl_buffer_object Base;
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfURIDictionary_autogen.cpp 11 SkString SkPdfURIDictionary::Base(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Base", "");
20 return get("Base", "") != NULL;
  /external/chromium_org/tools/clang/plugins/tests/
blacklisted_dirs.cpp 5 struct Base {
10 struct Derived : public Base {
15 struct Derived2 : public Base {
20 struct Derived3 : public 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/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/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;
  /art/test/078-polymorphic-virtual/src/
Base.java 17 public class Base extends Thread {
  /external/chromium_org/third_party/WebKit/Source/core/workers/
DedicatedWorkerGlobalScope.h 47 typedef WorkerGlobalScope Base;
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_bufferobjects.h 44 struct gl_buffer_object Base;
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
class_multiple_trace_bases.h 12 class Base : public GarbageCollected<Base> {
22 class Derived : public Base, public Mixin {
  /external/clang/test/Index/
annotate-context-sensitive.cpp 1 class Base {
6 class Derived final : public Base {
27 // CHECK-OVERRIDE-FINAL: Keyword: "public" [6:23 - 6:29] C++ base class specifier=class Base:1:7 [access=public isVirtual=false]
28 // CHECK-OVERRIDE-FINAL: Identifier: "Base" [6:30 - 6:34] TypeRef=class Base:1:7
cursor-ref-names.cpp 2 struct Base {
7 struct Sub: public Base<int> {
22 inst.Base<int>::operator[](1);
45 // CHECK: cursor-ref-names.cpp:22:10: TemplateRef=Base:2:8 Extent=[22:10 - 22:14]
  /external/clang/test/PCH/
cxx-offsetof-base.h 1 // Header for PCH test cxx-offsetof-base.cpp
3 struct Base { int x; };
4 struct Derived : Base { int y; };
cxx11-inheriting-ctors.cpp 9 struct Base {
10 Base(int) {}
13 Base(T) {}
16 struct Test : Base {
17 using Base::Base;
21 struct Test2 : Base {
22 using Base::Base;
36 Test3<Base> test3a(42)
    [all...]

Completed in 594 milliseconds

1 2 3 4 5 6 7 8 91011>>