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

1 2 3 4 5 6 7

  /external/clang/test/Modules/Inputs/wildcard-submodule-exports/
B_one.h 1 short *B1;
  /external/clang/test/Index/
index-suppress-refs.hpp 2 class B1 {};
  /external/clang/test/CodeGenCXX/
apple-kext-indirect-virtual-dtor-call.cpp 5 struct B1 {
6 virtual ~B1();
9 B1::~B1() {}
11 void DELETE(B1 *pb1) {
12 pb1->B1::~B1();
15 // CHECK: [[T1:%.*]] = load void (%struct.B1*)*, void (%struct.B1*)** getelementptr inbounds (void (%struct.B1*)*, void (%struct.B1*)** bitcast ([5 x i8*]* @_ZTV2B1 to void (%struct.B1*)**), i64 2
    [all...]
  /external/clang/test/SemaCXX/
alignment-of-derived-class.cpp 12 struct B1 : public A {
15 static_assert(__alignof(B1) == 16, "B1 should be aligned to 16 bytes");
ambiguous-builtin-unary-operator.cpp 25 struct B1 { operator volatile long&(); };
27 struct C1 : B1, A1 { };
builtin-ptrtomember-overload-1.cpp 29 struct B1 : R, S {
33 struct C1 : B1 {
enum-increment.cpp 12 enum B {B1, B2};
  /external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.types/
rebind.pass.cpp 27 template <class T> struct B1 {};
33 template <class U> using rebind = B1<U>;
35 template <class U> struct rebind {typedef B1<U> other;};
60 static_assert((std::is_same<std::pointer_traits<B<int> >::rebind<double>, B1<double> >::value), "");
65 static_assert((std::is_same<std::pointer_traits<B<int> >::rebind<double>::other, B1<double> >::value), "");
  /external/libcxx/test/std/utilities/meta/meta.rel/
is_base_of.pass.cpp 32 struct B1 : B {};
34 struct D : private B1, private B2 {};
39 test_is_base_of<B1, D>();
41 test_is_base_of<B, B1>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/pointer.traits/pointer.traits.types/
rebind.pass.cpp 27 template <class T> struct B1 {};
33 template <class U> using rebind = B1<U>;
35 template <class U> struct rebind {typedef B1<U> other;};
60 static_assert((std::is_same<std::pointer_traits<B<int> >::rebind<double>, B1<double> >::value), "");
65 static_assert((std::is_same<std::pointer_traits<B<int> >::rebind<double>::other, B1<double> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.rel/
is_base_of.pass.cpp 32 struct B1 : B {};
34 struct D : private B1, private B2 {};
39 test_is_base_of<B1, D>();
41 test_is_base_of<B, B1>();
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrtf.c 27 B1 = 709958130, /* B1 = (127-127.0/3-0.03306235651)*2**23 */
53 SET_FLOAT_WORD(t,sign|(hx/3+B1));
s_cbrt.c 25 B1 = 715094163, /* B1 = (1023-1023/3-0.03306235651)*2**20 */
76 INSERT_WORDS(t,sign|(hx/3+B1),0);
  /external/clang/test/CXX/except/except.spec/
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);
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
  /external/clang/test/CodeGen/
2002-05-23-TypeNameCollision.c 17 enum bar B1;
mips64-class-return.cpp 11 class B1 {
14 class D1 : public B1 {
  /external/clang/test/Layout/
ms-x86-bitfields-vbases.cpp 7 struct B1 { int a; };
91 struct E : virtual B0, virtual B1 { long long : 1; };
99 // CHECK-NEXT: 20 | struct B1 (virtual base)
110 // CHECK-X64-NEXT: 20 | struct B1 (virtual base)
ms-x86-vfvb-sharing.cpp 9 struct B1 { int a; B1() : a(0xf00000B1) { printf("B1 = %p\n", this); } };
11 struct B3 : virtual B1 { B3() { printf("B3 = %p\n", this); } };
12 struct B4 : virtual B1 { B4() { printf("B4 = %p\n", this); } virtual void g() { printf("B4"); } };
14 struct A : B0, virtual B1 {
29 // CHECK-NEXT: 64 | struct B1 (virtual base)
42 // CHECK-X64-NEXT: 64 | struct B1 (virtual base)
47 struct B : B2, B0, virtual B1 {
62 // CHECK-NEXT: 48 | struct B1 (virtual base
    [all...]
  /frameworks/av/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;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
greg1.s 6 B1 GREG 1
  /ndk/tests/device/test-stlport_shared-exception/jni/
delete2.cpp 40 struct B1
42 virtual ~B1 () throw() {}
43 B1 (){}
52 struct D : B1, B2
60 void f3 (B1*);
69 void f3 (B1* p) { ::delete p; }
  /ndk/tests/device/test-stlport_static-exception/jni/
delete2.cpp 40 struct B1
42 virtual ~B1 () throw() {}
43 B1 (){}
52 struct D : B1, B2
60 void f3 (B1*);
69 void f3 (B1* p) { ::delete p; }
  /external/clang/test/CXX/special/class.inhctor/
p7.cpp 4 struct B1 {
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}
    [all...]
  /external/fdlibm/
s_cbrt.c 25 B1 = 715094163, /* B1 = (682-0.03306235651)*2**20 */
65 __HI(t)=hx/3+B1;

Completed in 483 milliseconds

1 2 3 4 5 6 7