Home
last modified time | relevance | path

Searched refs:B1 (Results 1 – 25 of 164) sorted by relevance

1234567

/external/clang/test/CXX/special/class.inhctor/
Dp7.cpp4 struct B1 { struct
5 B1(int); // expected-note {{previous constructor}} expected-note {{conflicting constructor}}
10 struct D1 : B1, B2 {
11 using B1::B1; // expected-note {{inherited here}}
14 struct D2 : B1, B2 {
15 using B1::B1;
23 template<typename T> struct B4 : B3<T>, B1 {
26 using B1::B1; // expected-error {{already inherited}}
Delsewhere.cpp8 struct B1 { struct
9 B1(int);
12 using B1::B1; // expected-error {{using declaration can not refer to class member}}
18 struct I1 : B1 {
19 using B1::B1; // expected-note {{previous using declaration}}
20 using B1::B1; // expected-error {{redeclaration of using decl}}
30 …using B1::B1; // expected-error {{'B1' is not a direct base of 'D1', can not inherit constructors}}
Dp3.cpp3 struct B1 { struct
4 B1(int);
5 B1(int, int);
7 struct D1 : B1 {
8 using B1::B1;
32 template<typename T> struct T1 : B1 {
33 using B1::B1;
/external/clang/test/CodeGenCXX/
Dconst-init-cxx11.cpp116 struct B1 { struct
126 struct C : B1 {
143 extern constexpr int (D::*da) = &B1::a;
157 extern constexpr int (B1::*ba) = (int(B1::*))&B1::a;
158 extern constexpr int (B1::*bb) = (int(B1::*))&C::b;
161 extern constexpr int (B1::*be) = (int(B1::*))&C::e;
162 extern constexpr int (B1::*b1z) = (int(B1::*))&D::z;
174 extern constexpr void (D::*dg)() = &B1::g;
192 extern constexpr void (B1::*bf)() = (void(B1::*)())&C::f;
193 extern constexpr void (B1::*bg)() = (void(B1::*)())&B1::g;
[all …]
Dapple-kext-indirect-virtual-dtor-call.cpp11 struct B1 { struct
12 virtual ~B1();
15 B1::~B1() {} in ~B1()
17 void DELETE(B1 *pb1) { in DELETE()
18 pb1->B1::~B1(); in DELETE()
Dptr-to-member-function.cpp49 struct B1 { struct
52 B1(int i) : pmf(&A::foo), im(i) { in B1() argument
63 B1 b = B1(1); in main() argument
64 B1 c = B1(2); in main()
Dcopy-assign-synthesis-1.cpp10 B() : B1(3.14), B2(3.15), auB2(3.16) {} in B()
11 float B1; member
14 printf("B1 = %f B2 = %f auB1 = %f\n", B1, B2, auB1); in pr()
17 B& operator=(const B& arg) { B1 = arg.B1; B2 = arg.B2; in operator =()
46 printf("arr_b[%d][%d] = %f\n", i,j,arr_b[i][j].B1); in pr()
Dvtt-layout.cpp29 class B1 { int i; }; class
31 class V2 : public B1, public B2, public virtual V1 { int i; };
48 class B1 { int i; }; class
50 class V2 : public B1, public B2, public virtual V1 { int i; };
Dptr-to-datamember.cpp21 struct B1 : virtual V{ struct
26 class A : public B, public B1 { argument
89 printf("%d\n", &A::B1::iB1); in main()
92 printf("%d\n", &A::B1::iV); in main()
94 printf("%d\n", &A::B1::V::iV); in main()
/external/clang/test/CXX/except/except.spec/
Dp5-pointers.cpp9 struct B1 : A struct
17 struct D : B1, B2
29 void s4() throw(B1);
33 void (*s8())() throw(B1); // s8 returns a pointer to function with spec
34 void s9(void (*)() throw(B1)); // s9 takes pointer to function with spec
58 void (*t6)() throw(B1); in fnptrs()
65 void (*(*t7)())() throw(B1) = &s8; // valid in fnptrs()
68 void (*t10)(void (*)() throw(B1)) = &s9; // valid expected-warning{{disambiguated}} in fnptrs()
Dp5-virtual.cpp9 struct B1 : A struct
17 struct D : B1, B2
51 virtual void g4() throw(B1); // expected-note {{overridden virtual function is here}}
67 virtual void f4() throw(B1);
68 virtual void f5() throw(B1, B2, int);
/external/chromium/base/
Dbind_internal_win.h44 typedef X1 B1;
53 typedef X1 B1;
62 typedef X1 B1;
72 typedef X1 B1;
82 typedef X1 B1;
93 typedef X1 B1;
104 typedef X1 B1;
116 typedef X1 B1;
129 typedef X1 B1;
143 typedef X1 B1;
[all …]
/external/clang/test/SemaCXX/
Dwarn-enum-compare.cpp10 enum Baz {B1, B2, B3}; enumerator
14 enum Baz {B1, B2, B3}; enumerator
18 using name1::B1;
40 while (B1 == name1::B2); in test()
41 while (B2 == name2::B1); in test()
55 while ((B1) == (name1::B2)); in test()
56 while ((B2) == (name2::B1)); in test()
65 while ((((((B1))))) == (((name1::B2)))); in test()
66 while (B2 == ((((((name2::B1))))))); in test()
68 …while (B1 == B2); // expected-warning {{comparison of two values with different enumeration types… in test()
[all …]
Ddefault-assignment-operator.cpp61 class B1 { class
63 B1();
64 B1 &operator = (B1 b);
67 class D1 : B1 {};
Dwarn-overloaded-virtual.cpp3 struct B1 { struct
8 struct S1 : public B1 {
12 struct S2 : public B1 {
/external/llvm/unittests/Support/
DCasting.cpp73 extern bar &B1;
74 bar &B1 = B; variable
77 const bar &B3 = B1;
81 EXPECT_TRUE(isa<foo>(B1)); in TEST()
88 foo &F1 = cast<foo>(B1); in TEST()
100 foo *F8 = B1.baz(); in TEST()
113 foo *F15 = B1.caz(); in TEST()
126 foo *F5 = B1.daz(); in TEST()
139 foo *F5 = B1.naz(); in TEST()
/external/llvm/test/Transforms/BBVectorize/
Dsimple.ll5 define double @test1(double %A1, double %A2, double %B1, double %B2) {
7 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
11 %X1 = fsub double %A1, %B1
17 %Z1 = fadd double %Y1, %B1
29 define double @test2(double %A1, double %A2, double %B1, double %B2) {
31 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
35 %X1 = fsub double %A1, %B1
41 %Z1 = fadd double %Y2, %B1
54 define double @test3(double %A1, double %A2, double %B1, double %B2) {
56 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
[all …]
Dsimple-int.ll9 define double @test1(double %A1, double %A2, double %B1, double %B2, double %C1, double %C2) {
10 %X1 = fsub double %A1, %B1
14 %Z1 = fadd double %Y1, %B1
19 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
35 define double @test2(double %A1, double %A2, double %B1, double %B2) {
36 %X1 = fsub double %A1, %B1
40 %Z1 = fadd double %Y1, %B1
45 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
59 define double @test3(double %A1, double %A2, double %B1, double %B2, i32 %P) {
61 %X1 = fsub double %A1, %B1
[all …]
/external/llvm/test/Transforms/IndVarSimplify/
Dexit_value_tests.ll14 %B1 = phi i32 [ 0, %0 ], [ %B2, %Loop ] ; <i32> [#uses=1]
16 %B2 = add i32 %B1, %A1 ; <i32> [#uses=2]
61 %B1 = phi i32 [ 0, %0 ], [ %B2, %Loop ] ; <i32> [#uses=1]
63 %B2 = add i32 %B1, %A1 ; <i32> [#uses=2]
92 %B1 = trunc i32 %A1 to i16 ; <i16> [#uses=2]
94 %C = icmp eq i16 %B1, 1000 ; <i1> [#uses=1]
98 ret i16 %B1
/external/clang/test/SemaTemplate/
Dclass-template-ctor-initializer.cpp10 template<class X> struct B1 : A<X> { struct
12 B1() : Base() {} in B1() argument
14 B1<int> x1;
/external/llvm/test/Transforms/InstCombine/
Dapint-xor1.ll10 %B1 = and i47 %B, 70368744177661
11 %C1 = xor i47 %A1, %B1
47 %B1 = or i47 %A, 70368744177663
48 %C1 = xor i47 %B1, 703687463
Dapint-xor2.ll11 %B1 = and i447 %B, 70368744177663
12 %C1 = xor i447 %A1, %B1
48 %B1 = or i1023 %A, 70368744177663
49 %C1 = xor i1023 %B1, 703687463
/external/webkit/LayoutTests/fast/dom/TreeWalker/
DacceptNode-filter-expected.txt9 filtering node B1
16 filtering node B1
22 PASS walker.nextNode(); walker.currentNode.id is 'B1'
26 PASS walker.nextNode(); walker.currentNode.id is 'B1'
42 PASS walker.nextNode(); walker.currentNode.id is 'B1'
/external/icu4c/test/testdata/
DNormalizationTest-3.2.0.txt66B1 0591 05C3 05B0 05AC 059F;05B1 05B8 05B9 0591 05C3 05B0 05AC 059F;05B1 05B8 05B9 0591 05C3 05B0 …
357 02B1;02B1;02B1;0266;0266;
396 03AC;03AC;03B1 0301;03AC;03B1 0301;
798 1F00;1F00;03B1 0313;1F00;03B1 0313;
799 1F01;1F01;03B1 0314;1F01;03B1 0314;
800 1F02;1F02;03B1 0313 0300;1F02;03B1 0313 0300;
801 1F03;1F03;03B1 0314 0300;1F03;03B1 0314 0300;
802 1F04;1F04;03B1 0313 0301;1F04;03B1 0313 0301;
803 1F05;1F05;03B1 0314 0301;1F05;03B1 0314 0301;
804 1F06;1F06;03B1 0313 0342;1F06;03B1 0313 0342;
[all …]
/external/clang/test/CXX/special/class.dtor/
Dp5-0x.cpp44 struct B1 { struct
45 B1();
48 B1 b1; // expected-error {{deleted function}} argument

1234567