HomeSort by relevance Sort by last modified time
    Searched refs:Base1 (Results 1 - 25 of 30) sorted by null

1 2

  /external/clang/test/CodeCompletion/
ctor-initializer.cpp 1 struct Base1 {
2 Base1() : {}
7 Base1(int) : member1(123), {}
16 struct Derived : public Base1 {
25 // CHECK-CC3: COMPLETION: Pattern : Base1(<#args#>)
32 // CHECK-CC4: COMPLETION: Pattern : Base1(<#args#>)
35 Derived::Derived(float) try : Base1(),
40 // CHECK-CC5-NOT: COMPLETION: Pattern : Base1(<#args#>)
member-access.cpp 1 struct Base1 {
12 struct Base3 : Base1, Base2 {
31 // CHECK-CC1: Base1 : Base1::
32 // CHECK-CC1: member1 : [#int#][#Base1::#]member1
34 // CHECK-CC1: member2 : [#float#][#Base1::#]member2
  /external/clang/test/Index/
index-suppress-refs.cpp 5 typedef B1 Base1;
  /external/clang/test/Parser/
cxx-invalid-function-decl.cpp 18 struct Base1 {
20 Base1(T a1) : x1(a1) {}
29 struct S : public Base1<int>, public Base2<float> {
33 S() : ::Base1<int>(0) ::new, ::Base2<float>(1.0) ::delete x(2) {} // expected-error{{expected class member or base class name}}
37 S(int a) : Base1<int>(a), ::Base2<float>(1.0), ::, // expected-error{{expected class member or base class name}}
41 S(const S &) : Base1<int>(0) ::Base2<float>(1.0) x(2) {} // expected-error2{{missing ',' between base or member initializers}}
  /external/clang/test/CXX/class/class.mem/
p8-0x.cpp 3 struct Base1 {
7 struct A : Base1 {
31 struct Base1 {
35 struct A : Base1 {
  /external/testng/src/test/java/test/failures/
Base1.java 5 public class Base1 extends Base0 {
Child.java 5 public class Child extends Base1 {
  /frameworks/support/lifecycle/compiler/src/tests/test-data/
InheritanceOk1.java 25 class Base1 {
31 class Proxy extends Base1 {
  /external/testng/src/test/java/test/superclass/
Base1.java 6 public class Base1 {
Child1Test.java 6 public class Child1Test extends Base1 {
  /external/clang/test/SemaCXX/
MicrosoftSuper.cpp 16 struct Base1 {
24 struct Derived : Base1 {
48 struct Inner : Base1 {
57 struct MemberFunctionInMultipleBases : Base1, Base2 {
74 struct PointerToMember : Base1 {
75 template <void (Base1::*MP)(int)>
147 DerivedFromTemplateParameter<Base1> t;
offsetof.cpp 41 struct Base1 {
49 struct Derived2 : public Base1, public Base2 {
constructor-initializer.cpp 86 struct Base1 {};
88 struct Derived : Base, Base1, virtual V {
97 Derived::Base1(), // expected-error {{type 'Derived::Base1' is not a direct or virtual base of 'Current'}}
virtual-override.cpp 150 struct Base1 { virtual void f(int); };
154 (void)sizeof(Foo<Base1>);
164 Foo2<Base1> f1;
empty-class-layout.cpp 152 struct Base1 : Empty { };
154 struct Test : Base1, Base2 {
MicrosoftCompatibility.cpp 182 typedef A<T> Base1;
187 Base1::TYPE a2; // expected-warning {{missing 'typename' prior to dependent type name}}
  /external/clang/test/CodeGenCXX/
homogeneous-aggregates.cpp 14 struct Base1 {
23 struct D1 : Base1 { // non-homogeneous aggregate
29 struct D3 : Base1, Base2 { // non-homogeneous aggregate
thunks.cpp 154 struct Base1 {
166 struct Thunks : Base1, Base2 {
visibility.cpp 370 struct Base1 { virtual void foo(); };
371 struct Base2 : virtual Base1 { virtual void foo(); };
372 template <class T> struct A : virtual Base1, Base2 {
    [all...]
  /external/clang/test/Analysis/
reinterpret-cast.cpp 23 class Base1 {};
24 class Derived1 : public Base1 {};
35 Base1 *v;
  /external/clang/test/SemaTemplate/
dependent-base-classes.cpp 67 struct Base1 {
76 struct Derived : Base1<T>, Base2 {
instantiate-using-decl.cpp 35 typedef Visitor1<Derived> Base1;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
SafeString.c 35 @param Base1 Base address of 1st memory block.
45 IN VOID *Base1,
51 if ((((UINTN)Base1 >= (UINTN)Base2) && ((UINTN)Base1 < (UINTN)Base2 + Size2)) ||
52 (((UINTN)Base2 >= (UINTN)Base1) && ((UINTN)Base2 < (UINTN)Base1 + Size1))) {
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
statusor_test.cc 44 class Base1 {
46 virtual ~Base1() {}
56 class Derived : public Base1, public Base2 {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
FfsInfStatement.py 283 Base1 = Base2 = 10
285 Base1 = 16
289 PcdValueInImg = int(Pcd.DefaultValue, Base1)
    [all...]

Completed in 624 milliseconds

1 2