Searched defs:Base (Results 1 - 25 of 339) 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 Dcxx0x-delegating-ctors.cpp72 class Base { class in namespace:PR14588
74 Base() { squawk(); } function in class:PR14588::Base
75 virtual ~Base() {}
81 class Foo : public virtual Base {
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: %{{[.0-9A-Z_a-z]+}} = call x86_thiscallcc %class.Base* @"\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 destructo
[all...]
/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 {};
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.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 {
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.cpp5 template <class T> struct Base { struct
10 template <class T> struct Derived : Base<T> {
11 typedef struct Base<T>::foo type;
H A Dtypo-dependent-name.cpp5 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 Dcomment-cplus-template-decls.cpp46 struct Base { struct
52 template<typename T> struct E : Base {
56 using Base::foo;
58 // CHECK: <Declaration>template &lt;typename T&gt; struct E : Base {}</Declaration>
59 // CHECK: <Declaration>using Base::foo</Declaration>
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.cpp4 struct Base { struct
8 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");

Completed in 477 milliseconds

1234567891011>>