Searched defs:Base (Results 1 - 25 of 448) sorted by relevance

1234567891011>>

/external/clang/test/Profile/
H A Dcxx-implicit.cpp5 // An implicit constructor is generated for Base. We should not emit counters
9 struct Base { struct
13 struct Derived : public Base {
/external/clang/test/CodeGenCXX/
H A Dvirt-canonical-decl.cpp3 class Base { class
5 virtual ~Base();
8 Base::~Base()
12 class Foo : public Base {
H A Ddebug-info-template-fwd.cpp9 template <class A> class Base { class
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
H A Dapple-kext-indirect-call.C3 struct Base { struct
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)
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_buffer_objects.h40 struct gl_buffer_object Base; member in struct:radeon_buffer_object
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_buffer_objects.h40 struct gl_buffer_object Base; member in struct:radeon_buffer_object
/external/chromium_org/tools/clang/plugins/tests/
H A Dblacklisted_dirs.cpp5 struct Base { struct
10 struct Derived : public Base {
15 struct Derived2 : public Base {
20 struct Derived3 : public Base {
/external/clang/test/CXX/class.derived/
H A Dp2.cpp6 struct Base {}; struct in namespace:PR5840
7 int Base = 10; member in namespace:PR5840
8 struct Derived : Base {};
/external/clang/test/SemaCXX/
H A DPR9884.cpp3 class Base { class
5 Base(int val);
9 class Derived : public Base {
16 : Base( val )
H A DPR7410.cpp5 struct Base { struct
9 struct Derived : Base {
/external/clang/test/SemaTemplate/
H A Dinstantiate-elab-type-specifier.cpp5 template <class T> struct Base { struct
10 template <class T> struct Derived : Base<T> {
11 typedef struct Base<T>::foo type;
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_buffer_objects.h40 struct gl_buffer_object Base; member in struct:radeon_buffer_object
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_buffer_objects.h40 struct gl_buffer_object Base; member in struct:radeon_buffer_object
/external/libcxx/test/utilities/utility/pairs/pairs.pair/
H A Dassign_rv_pair_U_V.pass.cpp20 struct Base struct
22 virtual ~Base() {}
26 : public Base
35 typedef std::pair<std::unique_ptr<Base>, long> P2;
H A Drv_pair_U_V.pass.cpp20 struct Base struct
22 virtual ~Base() {}
26 : public Base
35 typedef std::pair<std::unique_ptr<Base>, long> P2;
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DDedicatedWorkerGlobalScope.h47 typedef WorkerGlobalScope Base; typedef in class:blink::FINAL
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfURIDictionary_autogen.cpp11 SkString SkPdfURIDictionary::Base(SkPdfNativeDoc* doc) { function in class:SkPdfURIDictionary
12 SkPdfNativeObject* ret = get("Base", "");
20 return get("Base", "") != NULL;
/external/chromium_org/tools/clang/blink_gc_plugin/tests/
H A Dclass_multiple_trace_bases.h12 class Base : public GarbageCollected<Base> { class in namespace:blink
22 class Derived : public Base, public Mixin {
/external/clang/test/Index/
H A Dannotate-context-sensitive.cpp1 class Base { class
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
/external/clang/test/PCH/
H A Dcxx-offsetof-base.h3 struct Base { int x; }; struct
4 struct Derived : Base { int y; };
H A Dcxx11-inheriting-ctors.cpp9 struct Base { struct
10 Base(int) {} function in struct:Base
13 Base(T) {} function in struct:Base
16 struct Test : Base {
17 using Base::Base;
21 struct Test2 : Base {
22 using Base::Base;
36 Test3<Base> test3
[all...]
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfURIDictionary_autogen.cpp11 SkString SkPdfURIDictionary::Base(SkPdfNativeDoc* doc) { function in class:SkPdfURIDictionary
12 SkPdfNativeObject* ret = get("Base", "");
20 return get("Base", "") != NULL;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dcompare-map-elim2.js36 function Base() { class
39 Base.prototype.__defineGetter__("value", function() { return 1; });
41 var a = new Base();
45 Base.prototype.__defineGetter__("value", function() { return this.v_; });
47 var b = new Base();
51 var d = new Base();
66 function Base() {
69 Base.prototype.__defineGetter__("value", function() { return 1; });
71 var a = new Base();
75 Base
[all...]
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dsuper.js9 function Base() { }
13 Derived.prototype = Object.create(Base.prototype);
15 function fBase() { return "Base " + this.toString(); } class
17 Base.prototype.f = fBase.toMethod(Base.prototype);
20 assertEquals("Base this is Derived", super.f());
27 Base.prototype.x = 15;
28 Base.prototype.toString = function() { return "this is Base"; };
33 assertEquals("Base thi
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_bufferobjects.h44 struct gl_buffer_object Base; member in struct:st_buffer_object

Completed in 653 milliseconds

1234567891011>>