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

1234567891011>>

/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 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)
H A Dpragma-pack.cpp3 struct Base { struct
4 virtual ~Base();
9 struct Sub : virtual Base {
13 // CHECK: %struct.Sub = type <{ i32 (...)**, i8, %struct.Base }>
H A Dvtable-key-function.cpp21 struct Base { struct
22 virtual ~Base();
26 struct Derived : public Base<T> { };
29 struct Derived<char> : public Base<char> {
H A Dvtable-pointer-initialization.cpp8 struct Base { struct
9 Base();
10 ~Base();
13 struct A : Base {
36 struct B : Base {
H A Dmicrosoft-abi-methods.cpp62 class Base { class
64 Base() {} function in class:Base
65 ~Base() {}
68 class Child: public Base { };
72 // Make sure that the Base constructor call in the Child constructor uses
75 // CHECK: call x86_thiscallcc void @"\01??0Base@@QAE@XZ"
78 // Make sure that the Base destructor call in the Child denstructor uses
81 // CHECK: call x86_thiscallcc void @"\01??1Base@@QAE@XZ"
84 // Make sure that the Base destructor definition uses the right CC:
85 // CHECK: define linkonce_odr x86_thiscallcc void @"\01??1Base
[all...]
/external/clang/test/CXX/class.derived/
H A Dp2.cpp5 struct Base {}; struct in namespace:PR5840
6 int Base = 10; member in namespace:PR5840
7 struct Derived : Base {};
H A Dp1.cpp23 struct Base { }; struct in namespace:PR11216
24 struct Derived : decltype(Base()) { };
31 struct Foo { Base foo(); };
34 struct Derived4 : :: decltype(Base()) { }; // expected-error {{unexpected namespace scope prior to decltype}}
36 struct Derived5 : PR11216:: decltype(Base()) { }; // expected-error {{unexpected namespace scope prior to decltype}}
/external/clang/test/SemaCXX/
H A DPR9884.cpp2 class Base { class
4 Base(int val);
8 class Derived : public Base {
15 : Base( val )
H A DPR7410.cpp5 struct Base { struct
9 struct Derived : Base {
H A DPR9572.cpp2 class Base { class
3 virtual ~Base(); // expected-note {{implicitly declared private here}}
5 struct Foo : public Base { // expected-error {{base class 'Base' has private destructor}}
H A Denum-unscoped-nonexistent.cpp3 struct Base { struct
6 template<typename T> struct S : Base {
17 // The unqualified-id here names a member of the non-dependent base class Base
/external/clang/test/SemaTemplate/
H A Dinstantiate-elab-type-specifier.cpp4 template <class T> struct Base { struct
9 template <class T> struct Derived : Base<T> {
10 typedef struct Base<T>::foo type;
H A Dtypo-dependent-name.cpp4 struct Base { struct
H A Dtemp.cpp11 namespace A { template<typename T> struct Base { typedef T t; }; } // expected-note {{member found}} struct in namespace:test1::A
12 namespace B { template<typename T> struct Base { typedef T t; }; } // expected-note {{member found}} struct in namespace:test1::B
14 template<typename T> struct Derived : A::Base<char>, B::Base<int> {
16 typename Derived::Base<float>::t x; // expected-error {{found in multiple base classes of different types}} \
H A Dvirtual-member-functions.cpp30 struct Base { struct
31 virtual ~Base() {
38 struct Derived : Base<T> {
42 template struct Derived<int>; // expected-note {{in instantiation of member function 'Base<int>::~Base' requested here}}
/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
H A Dcursor-ref-names.cpp2 struct Base { struct
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/
H A Dcxx-offsetof-base.h3 struct Base { int x; }; struct
4 struct Derived : Base { int y; };
/external/clang/test/Analysis/
H A Dcxx-for-range-cfg.cpp10 T *Base; member in class:rdar11671507_vector
/external/clang/test/Parser/
H A Dcxx0x-override-control-keywords.cpp3 struct Base { struct
7 struct S : Base {
/external/clang/test/CXX/except/except.spec/
H A Dp5-virtual.cpp25 struct Base struct
61 struct Derived : Base
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
H A DARC4.java16 public static class Base class in class:ARC4
19 public Base() method in class:ARC4.Base
48 provider.addAlgorithm("Cipher.ARC4", PREFIX + "$Base");
/external/clang/test/CXX/class/class.friend/
H A Dp1.cpp9 struct Base { struct
16 struct Derived : public Base {
53 friend int Base::typedeffed_member(); // okay: should look through typedef
/external/clang/test/CXX/class.access/class.access.base/
H A Dp1.cpp10 class Base { class in namespace:test0
16 class Test : public Base {
25 Base::pub++;
26 Base::spub++;
27 Base::prot++;
28 Base::sprot++;
29 Base::priv++; // expected-error {{private member}}
30 Base::spriv++; // expected-error {{private member}}
42 t->Base::pub++;
43 t->Base
57 class Base { // expected-note 6{{member is declared here}} class in namespace:test1
107 class Base { // expected-note 6{{member is declared here}} class in namespace:test2
[all...]

Completed in 394 milliseconds

1234567891011>>