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

1 2 3 4 5

  /external/clang/test/CXX/special/class.inhctor/
elsewhere.cpp 8 struct B1 {
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}
    [all...]
p7.cpp 4 struct B1 {
5 B1(int); // expected-note {{previous constructor}}
10 struct D1 : B1, B2 {
11 using B1::B1; // expected-note {{inherited here}}
14 struct D2 : B1, B2 {
15 using B1::B1;
p3.cpp 3 struct B1 {
4 B1(int);
5 B1(int, int);
7 struct D1 : B1 {
8 using B1::B1;
  /external/clang/test/CodeGenCXX/
apple-kext-indirect-virtual-dtor-call.cpp 4 // CHECK: [[T1:%.*]] = load void (%struct.B1*)** getelementptr inbounds (void (%struct.B1*)** bitcast ([5 x i8*]* @_ZTV2B1 to void (%struct.B1*)**), i64 2)
5 // CHECK-NEXT: call void [[T1]](%struct.B1* [[T2:%.*]])
7 // CHECK: [[T3:%.*]] = load void (%struct.B1*)** getelementptr inbounds (void (%struct.B1*)** bitcast ([5 x i8*]* @_ZTV2B1 to void (%struct.B1*)**), i64 2)
8 // CHECK-NEXT: call void [[T3]](%struct.B1* [[T4:%.*]])
11 struct B1 {
12 virtual ~B1();
    [all...]
ptr-to-member-function.cpp 49 struct B1 {
52 B1(int i) : pmf(&A::foo), im(i) {
63 B1 b = B1(1);
64 B1 c = B1(2);
copy-assign-synthesis-1.cpp 10 B() : B1(3.14), B2(3.15), auB2(3.16) {}
11 float B1;
14 printf("B1 = %f B2 = %f auB1 = %f\n", B1, B2, auB1);
17 B& operator=(const B& arg) { B1 = arg.B1; B2 = arg.B2;
46 printf("arr_b[%d][%d] = %f\n", i,j,arr_b[i][j].B1);
vtt-layout.cpp 29 class B1 { int i; };
31 class V2 : public B1, public B2, public virtual V1 { int i; };
48 class B1 { int i; };
50 class V2 : public B1, public B2, public virtual V1 { int i; };
  /external/clang/test/SemaCXX/
ambiguous-builtin-unary-operator.cpp 25 struct B1 { operator volatile long&(); };
27 struct C1 : B1, A1 { };
inherit.cpp 4 class B1 : A { };
10 class C : public B1, private B2 { };
warn-overloaded-virtual.cpp 3 struct B1 {
8 struct S1 : public B1 {
12 struct S2 : public B1 {
default-assignment-operator.cpp 61 class B1 {
63 B1();
64 B1 &operator = (B1 b);
67 class D1 : B1 {};
builtin-ptrtomember-overload-1.cpp 29 struct B1 : R, S {
33 struct C1 : B1 {
  /external/clang/test/CXX/temp/temp.param/
p11.cpp 7 class B1;
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
Filters.h 34 * Biquad with coefficients A0, A1, A2, B1 and B2 coefficients
42 LVM_INT16 B1;
49 * Biquad with coefficients A0, A1 and B1 coefficients
56 LVM_INT16 B1;
BP_1I_D16F16Css_TRC_WRA_01_Init.c 50 pBiquadState->coefs[2]=pCoef->B1;
BP_1I_D16F32Cll_TRC_WRA_01_Init.c 60 pBiquadState->coefs[2] = pCoef->B1;
BP_1I_D32F32Cll_TRC_WRA_02_Init.c 51 pBiquadState->coefs[2]=pCoef->B1;
LVM_FO_HPF.c 35 /* B1 = (tan(w/2) - 1 ) / (tan(w/2) + 1 ) */
36 /* A0 = (1 - B1) / 2 */
39 /* The value of B1 is then calculated directly from the value w by a */
91 pCoeffs->B1=-Y; /* Store -B1 in filter structure instead of B1!*/
92 /* A0=(1-B1)/2= B1/2 - 0.5*/
93 Y=Y>>1; /* A0=Y=B1/2*/
94 Y=Y-0x40000000; /* A0=Y=(B1/2 - 0.5)*
    [all...]
LVM_FO_LPF.c 35 /* B1 = (tan(w/2) - 1 ) / (tan(w/2) + 1 ) */
36 /* A0 = (1 + B1) / 2 */
39 /* The value of B1 is then calculated directly from the value w by a */
89 pCoeffs->B1=-Y; // Store -B1 in filter structure instead of B1!
90 // A0=(1+B1)/2= B1/2 + 0.5
91 Y=Y>>1; // A0=Y=B1/2
92 Y=Y+0x40000000; // A0=Y=(B1/2 + 0.5
    [all...]
PK_2I_D32F32CllGss_TRC_WRA_01_Init.c 33 pBiquadState->coefs[2]=pCoef->B1;
PK_2I_D32F32CssGss_TRC_WRA_01_Init.c 32 pBiquadState->coefs[2]=pCoef->B1;
  /external/clang/test/SemaTemplate/
class-template-ctor-initializer.cpp 10 template<class X> struct B1 : A<X> {
12 B1() : Base() {}
14 B1<int> x1;
  /external/clang/test/CodeGen/
2002-05-23-TypeNameCollision.c 17 enum bar B1;
  /external/clang/test/CXX/except/except.spec/
p5-pointers.cpp 9 struct B1 : A
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);
65 void (*(*t7)())() throw(B1) = &s8; // valid
68 void (*t10)(void (*)() throw(B1)) = &s9; // valid expected-warning{{disambiguated}}
p5-virtual.cpp 9 struct B1 : A
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);

Completed in 721 milliseconds

1 2 3 4 5