Home
last modified time | relevance | path

Searched refs:Bar (Results 1 – 25 of 133) sorted by relevance

123456

/external/clang/test/SemaCXX/
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 d… in f()
30 f->~Bar(); in f()
32 i->~Bar(); // expected-error{{does not match}} in f()
34 g().~Bar(); // expected-error{{non-scalar}} in f()
36 f->::~Bar(); in f()
39 f->::~Bar(17, 42); // expected-error{{cannot have any arguments}} in f()
Dwarn-global-constructors.cpp91 struct Bar { struct
92 ~Bar();
95 static Bar b; in bar()
Dtemplated-friend-decl.cpp6 struct Bar {}; struct
12 friend struct Bar;
/external/clang/test/Analysis/
Drdar-6600344-nil-receiver-undefined-struct-ret.m4 typedef struct Foo { int x; } Bar; typedef
7 - (Bar)foo;
10 - (Bar)foo {
18Bar f = [obj foo]; // expected-warning{{The receiver of message 'foo' is nil and returns a value o…
24Bar f = [obj foo]; // expected-warning{{The receiver of message 'foo' is nil and returns a value o…
Drdar-6562655.m29 @interface Bar : NSObject <NSCopying, NSCoding> { interface
39 @interface Bar(BarInternal) - (void)_setIsWhite:(BOOL)isWhite; interface in BarInternal
41 @interface Bar (BarBotnetCompatibility) interface in BarBotnetCompatibility
53 @implementation Bar implementation
58 @implementation Bar (BarBotnet) implementation in BarBotnet
Dmisc-ps-region-store.cpp187 struct Bar;
188 Bar* bar_;
205 bool Bar();
209 bool Foo2<T>::Bar() { in Bar() function in Foo2
218 void Bar();
224 void Foo3<T>::Bar() { in Bar() function in Foo3
/external/clang/test/Rewriter/
Drewrite-nested-blocks.mm41 @interface Bar interface
44 void f(Bar *);
48 void (^myblock)(Bar *b) = ^(Bar *b) {
54 Bar *b = (Bar *)42;
/external/clang/test/SemaTemplate/
Dclass-template-decl.cpp63 template<typename T2> class Bar;
64 typedef Bar<T1> Baz;
67 struct Bar { struct
68 Bar() {} in Bar() function
74 Foo<int>::Bar<int> y(x); in pr8001()
/external/android-mock/tests/com/google/android/testing/mocking/
DConstructorCreationTests.java36 public static class Bar { class in ConstructorCreationTests
38 Bar(double value) { this.value = value; } in Bar() method in ConstructorCreationTests.Bar
51 public TestClass(Foo foo, Bar bar) { in TestClass()
90 doesNotHaveConstructor(new Bar(2)); in testConstructors()
91 hasConstructor(new Foo(1), new Bar(2)); in testConstructors()
116 new Object[]{new Foo(1), new Bar(2)}, in testCorrectConstructor()
117 new Type[]{Foo.class, Bar.class}); in testCorrectConstructor()
/external/llvm/test/FrontendC++/
D2005-02-19-UnnamedVirtualThunkArgument.cpp8 struct Bar { struct
9 Bar();
10 virtual ~Bar();
14 struct Baz : public Foo, public Bar {
/external/chromium/testing/gmock/test/
Dgmock_output_test_.cc54 MOCK_METHOD3(Bar, char(const std::string& s, int i, double x));
142 EXPECT_CALL(foo_, Bar(_, 0, _)); in TEST_F()
148 foo_.Bar("Hi", 0, 0); in TEST_F()
156 EXPECT_CALL(foo_, Bar(_, 0, _)) in TEST_F()
164 foo_.Bar("Hi", 0, 0); in TEST_F()
174 EXPECT_CALL(foo_, Bar(_, _, _)); in TEST_F()
183 EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0))); in TEST_F()
185 foo_.Bar("Ho", 0, -0.1); // Mismatch arguments in TEST_F()
186 foo_.Bar(s, 0, 0); in TEST_F()
258 ON_CALL(*foo1, Bar(_, _, _)).WillByDefault(Return('a')); in TEST_F()
/external/clang/test/SemaObjC/
Dcategory-method-lookup-2.m7 @interface Bar : NSObject interface
9 @interface Bar (Cat) interface in Cat
12 // NOTE: No class implementation for Bar precedes this category definition.
13 @implementation Bar (Cat) implementation in Cat
Dprotocol-lookup.m15 @protocol Bar <Foo> protocol
20 id <Bar> _bar;
22 - (id)initWithFoo:(id <Foo>)foo bar:(id <Bar>)bar; argument
32 - (id)initWithFoo:(id <Foo>)foo bar:(id <Bar>)bar
Dcontinuation-class-err.m27 @interface Bar <Foo> { interface
33 @interface Bar () interface in copy
34 … expected-error {{illegal redeclaration of property in continuation class 'Bar' (attribute must be…
35 … expected-error {{illegal redeclaration of property in continuation class 'Bar' (attribute must be…
38 @implementation Bar implementation
Dassign-rvalue-message.m8 struct Bar { struct
13 struct Bar bar; argument
16 - (const struct Bar)bar {
Dcheck-dup-objc-decls-1.m8 @class Bar; // expected-note {{previous definition is here}}
10 typedef int Bar; // expected-error {{redefinition of 'Bar' as different kind of symbol}} typedef
27 int Bar, Foo, FooBar;
/external/chromium/base/mac/
Dmac_util_unittest.mm79 { "/Foo/Bar.app", "/Foo/Bar.app" },
80 { "/Foo/Bar.app/", "/Foo/Bar.app" },
83 { "/Foo/Bar.app/baz", "/Foo/Bar.app" },
84 { "/Foo/Bar.app/baz/", "/Foo/Bar.app" },
85 { "/Foo/Bar.app/baz/quux.app/quuux", "/Foo/Bar.app" },
/external/clang/test/CodeGenCXX/
Dcopy-initialization.cpp8 struct Bar { struct
9 Bar();
20 f(Bar()); in g()
/external/llvm/test/FrontendC/
D2009-06-18-StaticInitTailPadPack.c6 struct Bar { struct
12 struct Bar f1; argument
13 struct Bar f2;
/external/clang/test/SemaObjCXX/
Dprotocol-lookup.mm15 @protocol Bar <Foo> protocol
20 id <Bar> _bar;
22 - (id)initWithFoo:(id <Foo>)foo bar:(id <Bar>)bar; argument
32 - (id)initWithFoo:(id <Foo>)foo bar:(id <Bar>)bar
/external/clang/test/PCH/
Dselector-warning.m4 @interface Bar interface
10 @implementation Bar implementation
16 @implementation Bar(CAT) implementation in CAT
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
Dp3.cpp29 struct Bar;
36 int Foo(Bar *b, void (*Baz)(const T &t), T * = 0) { in Foo()
41 int Quux(Bar *b, T * = 0) in Quux()
/external/llvm/test/Transforms/Inline/
Dnoinline-recursive-fn.ll40 define internal void @f1(i32 %x, i8* %Foo, i8* %Bar) nounwind ssp {
42 %0 = bitcast i8* %Bar to void (i32, i8*, i8*)*
44 call void %0(i32 %1, i8* %Foo, i8* %Bar) nounwind
49 define internal void @f2(i32 %x, i8* %Foo, i8* %Bar) nounwind ssp {
56 call void %1(i32 %x, i8* %Foo, i8* %Bar) nounwind
/external/llvm/test/Transforms/SimplifyCFG/
D2003-08-17-FoldSwitch.ll8 i32 1, label %Bar
16 Bar: ; preds = %0
28 i32 1, label %Bar
36 Bar: ; preds = %0
/external/clang/test/CodeGenObjC/
Dinstance-method-metadata.m20 @interface Bar : NSObject <Proto> @end interface
26 @implementation Bar implementation
35 // CHECK-NEXT .quad "-[Bar prop]"

123456