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

1 2 3 4 5 6 7

  /external/clang/test/Modules/Inputs/wildcard-submodule-exports/
B_two.h 1 unsigned short *B2;
  /external/clang/test/Index/
index-suppress-refs.hpp 3 class B2 {};
index-suppress-refs.cpp 4 class Sub : B1, B2 {
6 typedef B2 Base2;
12 // CHECK-NOT: [indexEntityReference]: kind: c++-class | name: B2
  /external/clang/test/CXX/special/class.inhctor/
p7.cpp 7 struct B2 {
8 B2(int); // expected-note {{conflicting constructor}}
10 struct D1 : B1, B2 {
12 using B2::B2; // expected-error {{already inherited constructor with the same signature}}
14 struct D2 : B1, B2 {
16 using B2::B2;
p3.cpp 14 struct B2 {
15 explicit B2(int, int = 0, int = 0);
17 struct D2 : B2 { // expected-note 2 {{candidate constructor}}
18 using B2::B2;
  /external/clang/test/CXX/temp/temp.param/
p10.cpp 6 template<class T1, class T2 = int> class B2;
7 template<class T1 = int, class T2> class B2;
p10-0x.cpp 7 template<class T1, class T2 = int> using B2 = T1;
8 template<class T1 = int, class T2> using B2 = T1;
  /ndk/tests/device/test-stlport_shared-exception/jni/
delete2.cpp 32 struct B2
34 virtual ~B2 () throw() {}
35 B2 (){}
38 struct D : B1, B2
45 void f2 (B2*);
54 void f2 (B2* p) { ::delete p; }
  /ndk/tests/device/test-stlport_static-exception/jni/
delete2.cpp 32 struct B2
34 virtual ~B2 () throw() {}
35 B2 (){}
38 struct D : B1, B2
45 void f2 (B2*);
54 void f2 (B2* p) { ::delete p; }
  /external/clang/test/CXX/class.derived/class.virtual/
p2.cpp 20 struct B2 : B { };
22 struct E : B, B2 { }; //expected-error{{virtual function 'A::f' has more than one final overrider in 'E'}}
24 struct F : B, B2 {
  /external/clang/test/SemaCXX/
inherit.cpp 6 class B2 : virtual A { };
10 class C : public B1, private B2 { };
warn-enum-compare.cpp 10 enum Baz {B1, B2, B3};
14 enum Baz {B1, B2, B3};
19 using name2::B2;
36 while (z == name1::B2);
40 while (B1 == name1::B2);
41 while (B2 == name2::B1);
51 while (z == (name1::B2));
55 while ((B1) == (name1::B2));
56 while ((B2) == (name2::B1));
61 while (z == (name1::B2));
    [all...]
alignment-of-derived-class.cpp 17 struct B2 : public A {
20 static_assert(__alignof(B2) == 16, "B2 should be aligned to 16 bytes");
derived-to-base-ambig.cpp 14 class B2 : public virtual A2 { };
16 class D2 : public B2, public C2 { };
cxx1y-contextual-conversion-tweaks.cpp 74 struct B2 {
79 void foo(A0 a0, A1 a1, A2 a2, A3 a3, A4 a4, B2 b2) {
85 switch (b2) {} // @85 -- fails for different reasons
97 //expected-error@85 {{statement requires expression of integer type ('extended_examples::B2' invalid)}}
100 //expected-error@85 {{cannot initialize object parameter of type 'extended_examples::B2' with an expression of type 'extended_examples::B2'}}
120 struct B2 { // leads to one viable match in both cases
137 void foo(A1 a1, A2 a2, B1 b1, B2 b2, C c, D d)
    [all...]
dcl_init_aggr.cpp 100 struct B2 {
113 B2 b2 = { 4, a2, a2 }; variable
114 B2 b2_2 = { 4, d2, 0 };
115 B2 b2_3 = { c2, a2, a2 };
  /external/clang/test/CodeGen/
2002-05-23-TypeNameCollision.c 18 bar B2;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.rel/
is_base_of.pass.cpp 33 struct B2 : B {};
34 struct D : private B1, private B2 {};
40 test_is_base_of<B2, D>();
42 test_is_base_of<B, B2>();
  /external/clang/test/CXX/except/except.spec/
p5-virtual.cpp 13 struct B2 : A
17 struct D : B1, B2
68 virtual void f5() throw(B1, B2, int);
69 virtual void f6() throw(B2, B2, int, float, char, double, bool);
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_CalcCoef.c 58 /* b2 = -0.5 * (2Q - D * t0) / (2Q + D * t0) */
59 /* b1 = (0.5 - b2) * (1 - coserr(t0)) */
60 /* a0 = (0.5 + b2) / 2 */
73 /* 3. The value of the B2 coefficient is only calculated as a single precision value, */
104 LVM_INT32 B2;
128 * Calculate the B2 coefficient
133 B2 = (B2_Num / (B2_Den >> 16)) << 15;
155 B1 = (0x40000000 - B2); /* B1 = (0.5 - b2/2) */
156 A0 = ((B1 >> 16) * (CosErr >> 10)) >> 6; /* Temporary storage for (0.5 - b2/2) * coserr(t0) *
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
bind_cc.hpp 33 template<class R, class B1, class B2, class A1, class A2>
34 _bi::bind_t<R, BOOST_BIND_ST R (BOOST_BIND_CC *) (B1, B2), typename _bi::list_av_2<A1, A2>::type>
35 BOOST_BIND(BOOST_BIND_ST R (BOOST_BIND_CC *f) (B1, B2), A1 a1, A2 a2)
37 typedef BOOST_BIND_ST R (BOOST_BIND_CC *F) (B1, B2);
43 class B1, class B2, class B3,
45 _bi::bind_t<R, BOOST_BIND_ST R (BOOST_BIND_CC *) (B1, B2, B3), typename _bi::list_av_3<A1, A2, A3>::type>
46 BOOST_BIND(BOOST_BIND_ST R (BOOST_BIND_CC *f) (B1, B2, B3), A1 a1, A2 a2, A3 a3)
48 typedef BOOST_BIND_ST R (BOOST_BIND_CC *F) (B1, B2, B3);
54 class B1, class B2, class B3, class B4,
56 _bi::bind_t<R, BOOST_BIND_ST R (BOOST_BIND_CC *) (B1, B2, B3, B4), typename _bi::list_av_4<A1, A2, A3, A4>::type
    [all...]
  /external/clang/test/CodeGenCXX/
vtt-layout.cpp 30 class B2 { int i; };
31 class V2 : public B1, public B2, public virtual V1 { int i; };
49 class B2 { int i; };
50 class V2 : public B1, public B2, public virtual V1 { int i; };
  /external/clang/test/Modules/
wildcard-submodule-exports.cpp 17 unsigned short *B2_ptr = B2;
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
BP_1I_D16F16Css_TRC_WRA_01_Init.c 49 pBiquadState->coefs[1]=pCoef->B2;
BP_1I_D16F32Cll_TRC_WRA_01_Init.c 59 pBiquadState->coefs[1] = pCoef->B2;

Completed in 1429 milliseconds

1 2 3 4 5 6 7