/external/clang/test/SemaCXX/ |
D | pseudo-destructors.cpp | 5 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()
|
D | warn-global-constructors.cpp | 91 struct Bar { struct 92 ~Bar(); 95 static Bar b; in bar()
|
D | templated-friend-decl.cpp | 6 struct Bar {}; struct 12 friend struct Bar;
|
/external/clang/test/Analysis/ |
D | rdar-6600344-nil-receiver-undefined-struct-ret.m | 4 typedef struct Foo { int x; } Bar; typedef 7 - (Bar)foo; 10 - (Bar)foo { 18 …Bar f = [obj foo]; // expected-warning{{The receiver of message 'foo' is nil and returns a value o… 24 …Bar f = [obj foo]; // expected-warning{{The receiver of message 'foo' is nil and returns a value o…
|
D | rdar-6562655.m | 29 @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
|
D | misc-ps-region-store.cpp | 187 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/ |
D | rewrite-nested-blocks.mm | 41 @interface Bar interface 44 void f(Bar *); 48 void (^myblock)(Bar *b) = ^(Bar *b) { 54 Bar *b = (Bar *)42;
|
/external/clang/test/SemaTemplate/ |
D | class-template-decl.cpp | 63 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/ |
D | ConstructorCreationTests.java | 36 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++/ |
D | 2005-02-19-UnnamedVirtualThunkArgument.cpp | 8 struct Bar { struct 9 Bar(); 10 virtual ~Bar(); 14 struct Baz : public Foo, public Bar {
|
/external/chromium/testing/gmock/test/ |
D | gmock_output_test_.cc | 54 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/ |
D | category-method-lookup-2.m | 7 @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
|
D | protocol-lookup.m | 15 @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
|
D | continuation-class-err.m | 27 @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
|
D | assign-rvalue-message.m | 8 struct Bar { struct 13 struct Bar bar; argument 16 - (const struct Bar)bar {
|
D | check-dup-objc-decls-1.m | 8 @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/ |
D | mac_util_unittest.mm | 79 { "/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/ |
D | copy-initialization.cpp | 8 struct Bar { struct 9 Bar(); 20 f(Bar()); in g()
|
/external/llvm/test/FrontendC/ |
D | 2009-06-18-StaticInitTailPadPack.c | 6 struct Bar { struct 12 struct Bar f1; argument 13 struct Bar f2;
|
/external/clang/test/SemaObjCXX/ |
D | protocol-lookup.mm | 15 @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/ |
D | selector-warning.m | 4 @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/ |
D | p3.cpp | 29 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/ |
D | noinline-recursive-fn.ll | 40 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/ |
D | 2003-08-17-FoldSwitch.ll | 8 i32 1, label %Bar 16 Bar: ; preds = %0 28 i32 1, label %Bar 36 Bar: ; preds = %0
|
/external/clang/test/CodeGenObjC/ |
D | instance-method-metadata.m | 20 @interface Bar : NSObject <Proto> @end interface 26 @implementation Bar implementation 35 // CHECK-NEXT .quad "-[Bar prop]"
|