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

123

/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 Dincomplete-types.cpp5 struct Bar { struct
9 static struct Bar<int> bar[1] = {
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
/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 DPR10447.cpp19 void f(struct Bar*) { } argument
20 test2::Bar *ptr;
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 Dusing-decl-templates.cpp57 template <class T> struct Bar : public Foo<T>, Baz { struct in namespace:PR7896
64 template int Bar<int>::foo();
/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 Dinstantiate-deeply.cpp29 struct Bar { struct in class:Foo
33 Bar u;
H A Dinstantiate-subscript.cpp39 void Bar() { function
H A Doverload-uneval.cpp11 struct Bar struct
19 typedef Bar<T> B;
/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/Parser/
H A Dcxx-undeclared-identifier.cpp18 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \ class in class:Foo
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}}
/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/CodeGen/
H A D2003-10-09-UnionInitializerBug.c9 struct Bar { struct
16 struct Bar test = {0};
H A D2009-03-08-ZeroEltStructCrash.c12 static void Bar(struct Union *u) { function
H A D2009-06-18-StaticInitTailPadPack.c6 struct Bar { struct
12 struct Bar f1;
13 struct Bar f2;
/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/v8/test/mjsunit/
H A Dinstanceof-2.js308 var Bar = function() { }
311 if (d) Bar.prototype = 13;
312 var x = a ? new Foo() : new Bar();
313 var y = b ? new Foo() : new Bar();
316 InstanceTest(x, Bar);
317 InstanceTest(y, Bar);
318 if (e) x.__proto__ = Bar.prototype;
327 InstanceTest(x, Bar);
328 InstanceTest(y, Bar);
/external/protobuf/python/google/protobuf/internal/
H A Dservice_reflection_test.py80 self.assertEqual('Method Bar not implemented.',
87 def Bar(self, rpc_controller, request, done): member in class:FooUnitTest.testService.MyServiceImpl
/external/android-mock/tests/com/google/android/testing/mocking/
H A DConstructorCreationTests.java36 public static class Bar { class in class:ConstructorCreationTests
38 Bar(double value) { this.value = value; } method in class:ConstructorCreationTests.Bar
51 public TestClass(Foo foo, Bar bar) {
90 doesNotHaveConstructor(new Bar(2));
91 hasConstructor(new Foo(1), new Bar(2));
116 new Object[]{new Foo(1), new Bar(2)},
117 new Type[]{Foo.class, Bar.class});

Completed in 362 milliseconds

123