Searched defs:Bar (Results 1 - 25 of 152) sorted by relevance

1234567

/external/clang/test/SemaTemplate/
H A Dinstantiate-explicitly-after-fatal.cpp6 class Bar {}; class
8 extern template class Bar<int>;
9 template class Bar<int>;
H A Dmissing-class-keyword-crash.cpp5 class Bar {}; class
7 class Bar<G> blah_test; // expected-error{{template argument for non-type template parameter must be an expression}}
H A Doverloaded-functions.cpp20 void Bar() {} function
23 void Bar() { function
29 Bar<-1>();
30 // expected-note@-1 {{in instantiation of function template specialization 'Bar<-1>' requested here}}
/external/clang/test/CodeGen/
H A Dubsan-type-blacklist.cpp6 class Bar { class
8 virtual ~Bar() {}
10 class Foo : public Bar {};
12 Bar bar;
H A D2003-10-09-UnionInitializerBug.c9 struct Bar { struct
16 struct Bar test = {0};
H A Dvariadic-gpfp-x86.c3 struct Bar { struct
9 struct Bar foo(__builtin_va_list ap) {
10 return __builtin_va_arg(ap, struct Bar);
/external/v8/tools/clang/plugins/tests/
H A Dnested_class_inline_ctor.h14 class Bar { class in class:Foo
15 Bar() {} function in class:Foo::Bar
16 ~Bar() {}
/external/clang/test/CodeGenCXX/
H A Dcopy-initialization.cpp8 struct Bar { struct
9 Bar();
20 f(Bar());
H A D2005-02-19-UnnamedVirtualThunkArgument.cpp8 struct Bar { struct
9 Bar();
10 virtual ~Bar();
14 struct Baz : public Foo, public Bar {
H A Ddebug-info-indirect-field-decl.cpp8 struct Bar { struct
27 Foo<Bar, &Bar::i2> the_foo;
H A Ddebug-info-member-call.cpp4 struct Bar { struct
9 Bar *b;
11 Bar *foo() { return b; }
/external/clang/test/PCH/
H A Dlocal_static.h1 class Bar { class
H A Dattrs-PR8406.c11 struct Bar struct
20 struct Bar bar;
H A Drdar10830559.cpp25 class Bar class in class:Foo
34 friend class Templated< Bar::BarImpl >::s;
/external/clang/test/SemaCXX/
H A Dtemplated-friend-decl.cpp6 struct Bar {}; struct in struct:Foo
8 // The templated declaration for class Bar should not be instantiated when
12 friend struct Bar;
H A Dzero-length-arrays.cpp12 class Bar { class
19 Bar(): foo_count(0) { } function in class:Bar
20 ~Bar() { }
24 Bar b;
25 Bar b2(b);
H A DPR9572.cpp9 struct Bar : public Foo { struct in inherits:Foo
10 Bar() { } // expected-note {{implicit destructor for 'Foo' first required here}} function in struct:Bar
/external/v8/tools/clang/rewrite_scoped_refptr/tests/
H A Dtemp-returned-as-raw-expected.cc11 class Bar { class
20 scoped_refptr<Foo> Bar::TestFunction() {
H A Dtemp-returned-as-raw-original.cc11 class Bar { class
20 Foo* Bar::TestFunction() {
H A Dtest6-expected.cc11 struct Bar : public Foo { struct in inherits:Foo
22 scoped_refptr<Bar> temp(new Bar);
H A Dtest6-original.cc11 struct Bar : public Foo { struct in inherits:Foo
22 scoped_refptr<Bar> temp(new Bar);
/external/clang/test/Parser/
H A Dcxx-undeclared-identifier.cpp18 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \ class in class:Foo
/external/llvm/unittests/IR/
H A DTypesTest.cpp34 StructType *Bar = StructType::create(C, "Bar"); local
35 EXPECT_TRUE(Foo->isLayoutIdentical(Bar));
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dbasic.cpp14 E& Bar() { return Foo(C()); } function in class:E
19 e.Bar();
/external/mockito/src/test/java/org/mockitousage/packageprotected/
H A DMockingPackageProtectedTest.java17 class Bar {} class in class:MockingPackageProtectedTest
23 mock(Bar.class);

Completed in 556 milliseconds

1234567