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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaTemplate/
instantiate-explicitly-after-fatal.cpp 6 class Bar {};
8 extern template class Bar<int>;
9 template class Bar<int>;
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}}
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/
pr12696-1.cc 6 struct Bar:public Foo { Bar() { } };
7 void Func() { new Bar(); }
  /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({{.*}} ({{.*}}* @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/Profile/
cxx-structors.cpp 11 struct Bar : public Foo {
12 Bar() {}
13 Bar(int x) : Foo(x) {}
14 ~Bar();
19 Bar bar; variable
  /toolchain/binutils/binutils-2.25/gold/testsuite/
icf_virtual_function_folding_test.cc 36 class Bar
39 virtual ~Bar() { }
43 int Bar::fn1()
48 class Foo : public Bar
58 Bar* get()
60 Bar *f = new Foo();
68 Bar *f = get();
  /external/clang/test/CodeGenCXX/
debug-info-indirect-field-decl.cpp 8 struct Bar {
27 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::__anon15301
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());
debug-info-member-call.cpp 4 struct Bar {
5 void bar() { ext(); } function in struct:Bar
9 Bar *b;
11 Bar *foo() { return b; }
15 f->foo()->bar();
pr28360.cpp 9 void Bar(const MpTy &);
11 void Baz() { Bar(&A::Foo); }
16 // CHECK: call void @"\01?Bar@@YAXABQ8A@@AEXXZ@Z"(i8** dereferenceable(4) %[[ref_tmp]])
  /external/v8/tools/clang/plugins/tests/
nested_class_inline_ctor.h 14 class Bar {
15 Bar() {}
16 ~Bar() {}
  /external/clang/test/PCH/
attrs-PR8406.c 11 struct Bar
20 struct Bar bar; local
  /prebuilts/go/darwin-x86/test/fixedbugs/issue8280.dir/
b.go 5 var foo = a.Bar
  /prebuilts/go/linux-x86/test/fixedbugs/issue8280.dir/
b.go 5 var foo = a.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);
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
test5-expected.cc 11 struct Bar : public Foo {
21 scoped_refptr<Bar> temp(new Bar);
test5-original.cc 11 struct Bar : public Foo {
21 scoped_refptr<Bar> temp(new Bar);
test6-expected.cc 11 struct Bar : public Foo {
22 scoped_refptr<Bar> temp(new Bar);
test6-original.cc 11 struct Bar : public Foo {
22 scoped_refptr<Bar> temp(new Bar);

Completed in 654 milliseconds

1 2 3 4 5 6 7 8 91011>>