Searched refs:Bar (Results 26 - 50 of 117) sorted by relevance

12345

/external/protobuf/java/src/test/java/com/google/protobuf/
H A DLiteEqualsAndHashTest.java33 import protobuf_unittest.lite_equals_and_hash.LiteEqualsAndHash.Bar;
61 .addBar(Bar.newBuilder().setName("foo1"))
65 .addBar(Bar.newBuilder().setName("foo1"))
69 .addBar(Bar.newBuilder().setName("foo2"))
81 Bar bar = Bar.newBuilder().setName("bar").build();
/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/lldb/test/lang/objc/real-definition/
H A DFoo.h3 #import "Bar.h"
6 Bar *_bar;
H A DBar.h5 @interface Bar : NSObject {
H A DMakefile3 OBJC_SOURCES := Bar.m Foo.m main.m
/external/clang/test/SemaCXX/
H A Dpr13394-crash-on-invalid.cpp21 void Bar() {} // expected-note{{'Bar' declared here}} function in struct:Foo::Base
27 Foo::Bar(); // expected-error{{no member named 'Bar' in namespace 'Foo'; did you mean simply 'Bar'?}}
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 Dwarn-shadow.cpp51 int Bar; member in struct:rdar8900456::Foo
55 double Bar = 12; // Don't warn. local
H A Dfunction-redecl.cpp40 void Bar(); // expected-note {{'Bar' declared here}}
42 friend void bar(); // expected-error {{no matching function 'bar' found in local scope; did you mean 'Bar'}}
66 class Bar { class
72 void Bar::f(Foo::Inner foo) { // expected-error {{out-of-line definition of 'f' does not match any declaration in 'Bar'}}
101 // Ensure we correct the redecl of Foo::isGood to Bar::Foo::isGood and not
104 // since it is a closer match than Bar::Foo::beEvil and neither have a body.
110 namespace Bar { namespace in namespace:redecl_typo
112 bool isGood(); // expected-note {{'Bar
[all...]
/external/clang/test/SemaTemplate/
H A Dms-delayed-default-template-args.cpp37 template <typename T> struct Bar { T x; }; struct in namespace:test_nontype_param
39 template <Bar<Qux> *P>
42 Bar<int> g;
48 template <typename T> struct Bar { T x; }; struct in namespace:test_template_instantiation_arg
49 template <typename T = Bar<Weber>> // expected-error {{use of undeclared identifier 'Weber'}}
51 static_assert(sizeof(T) == 4, "Bar should have gotten int");
85 template <typename T> struct Bar { T x; }; struct in namespace:test_undeclared_nontype_parm_arg
87 template <Bar<Xylophone> *P> // expected-error {{use of undeclared identifier 'Xylophone'}}
92 Bar<Xylophone> g;
H A Doverload-uneval.cpp12 struct Bar struct
20 typedef Bar<T> B;
H A Dinstantiate-deeply.cpp30 struct Bar { struct in class:Foo
34 Bar u;
H A Dclass-template-decl.cpp72 template<typename T2> class Bar;
73 typedef Bar<T1> Baz;
76 struct Bar { struct in struct:PR8001::Foo
77 Bar() {} function in struct:PR8001::Foo::Bar
83 Foo<int>::Bar<int> y(x);
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dinit-order-dlopen.cc11 struct Bar { struct
12 Bar(int val) : val(val) { printf("Bar::Bar(%d)\n", val); } function in struct:Bar
17 Bar global_bar(get_foo_val());
/external/clang/test/CodeGen/
H A D2009-03-08-ZeroEltStructCrash.c12 static void Bar(struct Union *u) { function
H A Dms-inline-asm.cpp10 struct Bar { struct in struct:Foo
18 Foo::Bar::ptr = (int *)0xDEADBEEF;
20 __asm mov eax, Foo :: Bar :: ptr
32 __asm mov eax, offset Foo::Bar::ptr
40 __asm mov eax, LENGTH Foo::Bar::ptr
42 __asm mov eax, LENGTH Foo::Bar::arr
45 __asm mov eax, TYPE Foo::Bar::ptr
47 __asm mov eax, TYPE Foo::Bar::arr
50 __asm mov eax, SIZE Foo::Bar::ptr
52 __asm mov eax, SIZE Foo::Bar
[all...]
/external/lldb/test/lang/cpp/breakpoints/
H A Dnested.cpp5 namespace Bar namespace in namespace:Foo
64 Foo::Bar::Baz mine(200);
65 Foo::Bar::Baz2 mine2(300);
71 printf ("And got %d from Bar.\n", Foo::Bar::Function());
/external/v8/test/webkit/
H A Dpolymorphic-construct.js32 function Bar() { class
50 shouldBe("construct(Bar).field", "'bar'");
/external/clang/test/CodeGenCXX/
H A Dincomplete-types.cpp6 struct Bar { struct
10 static struct Bar<int> bar[1] = {
H A Ddebug-info-decl-nested.cpp44 // CHECK1: ![[DECL:[0-9]+]] = !MDSubprogram(name: "Bar"
47 void Bar(const Foo1 *);
50 // CHECK1: !MDSubprogram(name: "Bar"
54 void OuterClass1::Bar(const Foo1 *meta) { } function in class:OuterClass1
/external/google-breakpad/src/testing/test/
H A Dgmock_stress_test.cc53 MOCK_METHOD1(Bar, int(int n)); // NOLINT
151 ON_CALL(foo, Bar(_))
158 EXPECT_CALL(foo, Bar(0))
165 EXPECT_EQ(1, foo.Bar(0));
166 EXPECT_EQ(1, foo.Bar(0));
194 EXPECT_EQ(1, param.mock_foo->Bar(5));
202 ON_CALL(foo, Bar(_))
232 foo->Bar(2);
233 foo->Bar(3);
244 EXPECT_CALL(foo, Bar(
[all...]
/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)
/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});
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp14.cpp62 class Bar { class
70 void M2::MInner::Bar::bar() {

Completed in 605 milliseconds

12345