Searched refs:Bar (Results 1 - 25 of 70) sorted by relevance

123

/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.cpp11 class Bar { class
18 Bar(): foo_count(0) { } function in class:Bar
19 ~Bar() { }
23 Bar b;
24 Bar b2(b);
H A DPR9572.cpp9 struct Bar : public Foo { struct in inherits:Foo
10 Bar() { } // expected-note {{implicit default destructor for 'Foo' first required here}} function in struct:Bar
H A DPR10447.cpp19 void f(struct Bar*) { } argument
20 test2::Bar *ptr;
H A Dpseudo-destructors.cpp5 typedef Foo Bar; // expected-note{{type 'Bar' (aka 'Foo') is declared here}} typedef
28 a->~Bar(); // expected-error{{destructor type 'Bar' (aka 'Foo') in object destruction expression does not match the type 'A' of the object being destroyed}}
30 f->~Bar();
32 i->~Bar(); // expected-error{{does not match}}
34 g().~Bar(); // expected-error{{non-scalar}}
36 f->::~Bar();
39 f->::~Bar(17, 42); // expected-error{{cannot have any arguments}}
H A Dfunction-redecl.cpp38 void Bar(); // expected-note {{'Bar' declared here}}
40 friend void bar(); // expected-error {{no matching function 'bar' found in local scope; did you mean 'Bar'}}
64 class Bar { class
70 void Bar::f(Foo::Inner foo) { // expected-error {{out-of-line definition of 'f' does not match any declaration in 'Bar'}}
99 // Ensure we correct the redecl of Foo::isGood to Bar::Foo::isGood and not
102 // since it is a closer match than Bar::Foo::beEvil and neither have a body.
108 namespace Bar { namespace in namespace:redecl_typo
110 bool isGood(); // expected-note {{'Bar
[all...]
H A Dwarn-shadow.cpp51 int Bar; member in struct:rdar8900456::Foo
55 double Bar = 12; // Don't warn. local
/external/clang/test/SemaTemplate/
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 Doverload-uneval.cpp11 struct Bar struct
19 typedef Bar<T> B;
H A Dinstantiate-deeply.cpp29 struct Bar { struct in class:Foo
33 Bar u;
/external/clang/test/CodeGenCXX/
H A D2005-02-19-UnnamedVirtualThunkArgument.cpp8 struct Bar { struct
9 Bar();
10 virtual ~Bar();
14 struct Baz : public Foo, public Bar {
H A Dunion-dtor.cpp11 struct Bar { struct
12 Bar();
13 ~Bar();
20 Bar bar;
28 Bar bar;
35 // The ctor and dtor of Foo<> and Bar should not be mentioned in the resulting
H A Dcopy-initialization.cpp8 struct Bar { struct
9 Bar();
20 f(Bar());
H A Dincomplete-types.cpp5 struct Bar { struct
9 static struct Bar<int> bar[1] = {
/external/clang/test/PCH/
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/CodeGen/
H A D2003-10-09-UnionInitializerBug.c9 struct Bar { struct
16 struct Bar test = {0};
H A D2009-06-18-StaticInitTailPadPack.c6 struct Bar { struct
12 struct Bar f1;
13 struct Bar f2;
H A D2009-03-08-ZeroEltStructCrash.c12 static void Bar(struct Union *u) { function
/external/apache-harmony/support/src/test/resources/tests/resources/
H A Dhyts_Bar.serBar.java package foo.bar.execjartest foo.bar.execjartest.Bar extends java. ...
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dbasic.cpp13 E& Bar() { return Foo(C()); } function in class:E
18 e.Bar();
/external/clang/test/Index/
H A Dcomplete-qualified.cpp9 C<Foo, class Bar> c;
17 // CHECK-CC1: FieldDecl:{ResultType C<Foo, class Bar>}{TypedText c} (35) (parent: ClassDecl 'Foo')
/external/clang/test/Parser/
H A Dcxx-using-declaration.cpp51 class Bar {}; class in namespace:ShadowedTagNotes::foo
54 void Bar(int); // expected-note{{class 'Bar' is hidden by a non-type declaration of 'Bar' here}}
55 using foo::Bar;
58 const Bar *x; // expected-error{{must use 'class' tag to refer to type 'Bar' in this scope}}
H A Dcxx-undeclared-identifier.cpp18 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \ class in class:Foo
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3.cpp29 struct Bar;
36 int Foo(Bar *b, void (*Baz)(const T &t), T * = 0) {
41 int Quux(Bar *b, T * = 0)

Completed in 423 milliseconds

123