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

1 2 3 4 5 6 7

  /external/clang/test/CodeGen/
ubsan-type-blacklist.cpp 6 class Bar {
8 virtual ~Bar() {}
10 class Foo : public Bar {};
12 Bar bar; variable
17 // DEFAULT: call void @__ubsan_handle_dynamic_type_cache_miss({{.*}} (%class.Bar* @bar to
19 Foo* foo = static_cast<Foo*>(&bar); // down-casting
variadic-gpfp-x86.c 3 struct Bar {
9 struct Bar foo(__builtin_va_list ap) {
10 return __builtin_va_arg(ap, struct Bar);
2003-10-09-UnionInitializerBug.c 9 struct Bar {
16 struct Bar test = {0};
  /external/clang/test/SemaTemplate/
missing-class-keyword-crash.cpp 5 class Bar {};
7 class Bar<G> blah_test; // expected-error{{template argument for non-type template parameter must be an expression}}
overloaded-functions.cpp 20 void Bar() {}
23 void Bar() {
29 Bar<-1>();
30 // expected-note@-1 {{in instantiation of function template specialization 'Bar<-1>' requested here}}
  /external/clang/test/CodeGenCXX/
debug-info-indirect-field-decl.cpp 8 struct Bar {
26 Foo<Bar, &Bar::i2> the_foo;
2005-02-19-UnnamedVirtualThunkArgument.cpp 8 struct Bar {
9 Bar();
10 virtual ~Bar();
14 struct Baz : public Foo, public Bar {
union-dtor.cpp 11 struct Bar {
12 Bar();
13 ~Bar();
20 Bar bar; member in union:FooBar
28 Bar bar; member in union:Variant::__anon6458
35 // The ctor and dtor of Foo<> and Bar should not be mentioned in the resulting
copy-initialization.cpp 8 struct Bar {
9 Bar();
20 f(Bar());
  /ndk/tests/device/test-stlport_shared-exception/jni/
ctor1.cpp 18 struct Bar
20 ~Bar()
32 Bar f;
  /ndk/tests/device/test-stlport_static-exception/jni/
ctor1.cpp 18 struct Bar
20 ~Bar()
32 Bar f;
  /external/clang/test/PCH/
attrs-PR8406.c 11 struct Bar
20 struct Bar bar; local
rdar10830559.cpp 25 class Bar
34 friend class Templated< Bar::BarImpl >::s;
local_static.cpp 10 void test(Bar &b) {
local_static.h 1 class Bar {
  /external/clang/test/SemaCXX/
warn-range-loop-analysis.cpp 20 struct Bar {
21 Bar(Foo);
22 Bar(int);
37 // int <=> Bar
38 // double => Bar
39 // Foo => Bar
45 // int => Bar
47 // Bar => Bar
48 // Bar => in
    [all...]
zero-length-arrays.cpp 12 class Bar {
19 Bar(): foo_count(0) { }
20 ~Bar() { }
24 Bar b;
25 Bar b2(b);
PR9572.cpp 9 struct Bar : public Foo {
10 Bar() { } // expected-note {{implicit destructor for 'Foo' first required here}}
templated-friend-decl.cpp 6 struct Bar {};
8 // The templated declaration for class Bar should not be instantiated when
12 friend struct Bar;
PR10447.cpp 20 void f_test2(struct Bar*) { }
21 test2::Bar *ptr;
  /external/apache-harmony/support/src/test/resources/tests/resources/
hyts_Bar.ser 
  /libcore/support/src/test/java/tests/resources/
hyts_Bar.ser 
  /ndk/tests/device/test-basic-rtti/jni/
test_basic_rtti.cpp 28 class Bar: public Foo
33 std::printf("in Bar!\n");
39 Foo* foo = new Bar();
40 Bar* bar; local
42 bar = dynamic_cast<Bar*>(foo);
43 if (bar != NULL) {
44 printf("OK: 'foo' is pointing to a Bar class instance.\n");
46 fprintf(stderr, "KO: Could not dynamically cast 'foo' to a 'Bar*'\n")
    [all...]
  /external/clang/test/Analysis/
member-expr.cpp 9 Bar = 1
14 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
18 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
22 clang_analyzer_eval(Baz->Bar == Foo::Bar); // expected-warning{{TRUE}}
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
basic.cpp 14 E& Bar() { return Foo(C()); }
19 e.Bar();

Completed in 1267 milliseconds

1 2 3 4 5 6 7