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

1 2 3 4 5

  /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 {};
  /external/clang/test/SemaCXX/
alignment-of-derived-class.cpp 17 struct B2 : public A {
20 static_assert(__alignof(B2) == 16, "B2 should be aligned to 16 bytes");
attr-optnone.cpp 41 struct B2 {
  /external/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/lldb/test/expression_command/radar_8638051/
main.c 47 int B2 = b(2); // b(2) -> c(2)
48 printf("b(2) returns %d\n", B2);
  /external/lldb/test/functionalities/breakpoint/breakpoint_conditions/
main.c 44 int B2 = b(2); // b(2) -> c(2)
45 printf("b(2) returns %d\n", B2);
  /external/lldb/test/functionalities/conditional_break/
main.c 47 int B2 = b(2); // b(2) -> c(2)
48 printf("b(2) returns %d\n", B2);
  /external/lldb/test/python_api/event/
main.c 42 int B2 = b(2); // b(2) -> c(2)
43 printf("b(2) returns %d\n", B2);
  /external/lldb/test/python_api/function_symbol/
main.c 53 int B2 = b(2); // b(2) -> c(2)
54 printf("b(2) returns %d\n", B2);
  /external/lldb/test/python_api/lldbutil/frame/
main.c 40 int B2 = b(2); // b(2) -> c(2)
41 printf("b(2) returns %d\n", B2);
  /external/lldb/test/python_api/symbol-context/
main.c 44 int B2 = b(2); // b(2) -> c(2)
45 printf("b(2) returns %d\n", 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>();
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrtf.c 28 B2 = 642849266; /* B2 = (127-127.0/3-24/3-0.03306235651)*2**23 */
51 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+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);
p5-pointers.cpp 13 struct B2 : A
17 struct D : B1, B2
  /external/clang/test/CodeGen/
2002-05-23-TypeNameCollision.c 18 bar B2;
  /external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/
main.c 45 int B2 = b(2); // b(2) -> c(2) Find the call site of b(2).
46 printf("b(2) returns %d\n", B2);
  /external/lldb/test/python_api/frame/
main.c 51 int B2 = b(2, 'B'); // b(2, 'B') -> c(3, 'C')
52 printf("b(2, 'B') returns %d\n", B2);
  /external/lldb/test/python_api/target/
main.c 52 int B2 = b(2); // b(2) -> c(2)
53 printf("b(2) returns %d\n", B2);
  /external/lldb/test/python_api/thread/
main2.cpp 47 int B2 = b(2);
48 printf("b(2) returns %d\n", B2);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Filters.h 34 * Biquad with coefficients A0, A1, A2, B1 and B2 coefficients
43 LVM_INT16 B2;
  /ndk/tests/device/test-stlport_shared-exception/jni/
delete2.cpp 46 struct B2
48 virtual ~B2 () throw() {}
49 B2 (){}
52 struct D : B1, B2
59 void f2 (B2*);
68 void f2 (B2* p) { ::delete p; }
  /ndk/tests/device/test-stlport_static-exception/jni/
delete2.cpp 46 struct B2
48 virtual ~B2 () throw() {}
49 B2 (){}
52 struct D : B1, B2
59 void f2 (B2*);
68 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 {

Completed in 652 milliseconds

1 2 3 4 5