/external/clang/test/PCH/ |
D | cxx0x-delegating-ctors.cpp | 10 struct foo { struct 11 foo(int) : foo() { } in foo() argument 13 foo(bool) : foo('c') { } in foo() argument 14 foo(char) : foo(true) { } in foo() argument 17 foo::foo() : foo(1) { } // expected-error{{creates a delegation cycle}} \ in foo() function in foo
|
/external/clang/test/SemaCXX/ |
D | cxx0x-delegating-ctors.cpp | 3 struct foo { struct 5 foo(); argument 16 foo::foo (int i) : i(i) { in foo() function in foo 19 foo::foo () : foo(-1) { in foo() function in foo 22 foo::foo (int, int) : foo() { in foo() function in foo 25 foo::foo (bool) : foo(true) { // expected-error{{creates a delegation cycle}} in foo() function in foo 29 foo::foo (const float* f) : foo(*f) { // expected-note{{it delegates to}} in foo() function in foo 32 foo::foo (const float &f) : foo(&f) { //expected-error{{creates a delegation cycle}} \ in foo() function in foo 36 foo::foo (char) : in foo() function in foo 42 foo::foo (void*) : foo(4.0f) { in foo() function in foo
|
D | defaulted-ctor-loop.cpp | 9 struct foo { struct 11 foo() in foo() argument
|
/external/clang/test/Parser/ |
D | parenthesis-balance.cpp | 4 if (int foo = f(bar)) {} // expected-error{{use of undeclared identifier 'bar'}} in f() local 5 while (int foo = f(bar)) {} // expected-error{{use of undeclared identifier 'bar'}} in f() local 6 for (int foo = f(bar);;) {} // expected-error{{use of undeclared identifier 'bar'}} in f() local 9 if (int foo = f(bar)) {} in f() local 10 while (int foo = f(bar)) {} in f() local 11 for (int foo = f(bar);;) {} in f() local
|
D | types.c | 10 typedef struct foo { int x; } foo; typedef 12 foo *foo; in test() local
|
/external/clang/test/CodeGenCXX/ |
D | vtable-key-function-arm.cpp | 32 void Test0a::foo() {} in foo() function in Test0a 43 void Test0b::foo() {} in foo() function in Test0b 64 inline void Test1a::foo() {} in foo() function in Test1a 75 inline void Test1b::foo() {} in foo() function in Test1b 98 inline void Test2a::foo() {} in foo() function in Test2a 117 inline void Test2b::foo() {} in foo() function in Test2b 129 inline void Test2c::foo() {} in foo() function in Test2c 153 inline void Test3a::foo() {} in foo() function in Test3a 172 inline void Test3b::foo() {} in foo() function in Test3b 184 inline void Test3c::foo() {} in foo() function in Test3c [all …]
|
D | vtable-key-function-ios.cpp | 32 void Test0a::foo() {} in foo() function in Test0a 43 void Test0b::foo() {} in foo() function in Test0b 65 inline void Test1a::foo() {} in foo() function in Test1a 76 inline void Test1b::foo() {} in foo() function in Test1b 99 inline void Test2a::foo() {} in foo() function in Test2a 117 inline void Test2b::foo() {} in foo() function in Test2b 128 inline void Test2c::foo() {} in foo() function in Test2c 152 inline void Test3a::foo() {} in foo() function in Test3a 171 inline void Test3b::foo() {} in foo() function in Test3b 183 inline void Test3c::foo() {} in foo() function in Test3c
|
D | weak-extern-typeinfo.cpp | 13 void A::foo() { } in foo() function in A 14 void B::foo() { } in foo() function in B 22 void C::foo() { } in foo() function in C 31 void V1::foo() { } in foo() function in V1 32 void V2::foo() { } in foo() function in V2
|
D | pr13396.cpp | 2 struct foo { struct 4 __attribute__ ((regparm (3))) foo(T x) {} in foo() function 9 foo::foo() { in foo() function in foo
|
D | type_visibility.cpp | 25 virtual void foo() {} in foo() function 42 virtual void foo() {} in foo() function 59 virtual void foo() {} in foo() function 76 virtual void foo() {} in foo() function 93 virtual void foo() {} in foo() function 112 void A::foo() {} in foo() function in type0::A 128 void A::foo() {} in foo() function in type1::A 144 void A::foo() {} in foo() function in type2::A 160 void A::foo() {} in foo() function in type3::A
|
D | assign-construct-memcpy.cpp | 12 struct foo { struct 14 foo() {} // non-POD in foo() function 23 foo *test1(void *f, const foo &x) { in test1() argument
|
D | visibility.cpp | 38 class DEFAULT foo { class 59 struct foo { struct 60 DEFAULT static int bar; 64 template struct foo<int>; variable 73 struct HIDDEN foo {}; struct 86 struct HIDDEN foo { struct 207 struct HIDDEN foo { struct 208 foo() { } in foo() argument 212 virtual void zonk() {} in zonk() 228 static void foo() {} in foo() function [all …]
|
/external/clang/test/ARCMT/ |
D | cxx-rewrite.mm | 12 struct foo { struct 14 foo(NSString *s): s([s retain]){ argument 23 foo(foo const &); argument 24 foo &operator=(foo const &); argument 30 foo f([[NSString string] autorelease]); argument
|
/external/clang/test/CodeGenObjC/ |
D | bitfield_encoding.m | 6 struct foo{ struct 12 const char *encoding = @encode(struct foo); argument
|
/external/clang/test/Misc/ |
D | ast-dump-templates.cpp | 6 struct foo { struct 8 foo() {} in foo() function 19 int y = foo<5, int>().getSum(); in baz() argument
|
/external/clang/test/CodeGen/ |
D | 2003-08-30-AggregateInitializer.c | 7 struct foo { struct 14 struct foo F = { 1, { 7 }, { 123 } , 1 }; argument
|
D | 2002-02-13-TypeVarNameCollision.c | 7 typedef struct foo { struct 11 static FOO foo[100]; argument
|
D | 2003-08-30-LargeIntegerBitfieldMember.c | 3 struct foo { struct 9 struct foo F; argument
|
D | 2003-08-29-StructLayoutBug.c | 3 struct foo { struct 9 void test(struct foo *X) {} in test() argument
|
/external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/ |
D | Test.java | 11 public void foo(@SlashedClassName String foo) {} in foo() method in Test 13 public void foo2(@DottedClassName String foo) { in foo2() 17 public void foo3(String foo) { in foo3() 20 public void foo4(@DottedClassName String foo) { in foo4()
|
/external/clang/test/SemaObjCXX/ |
D | conversion-to-objc-pointer.mm | 32 - (void) foo; method 36 - (void) foo {} method 40 - (void) foo; method 44 - (void) foo {} method
|
/external/clang/test/SemaTemplate/ |
D | self-comparison.cpp | 3 template <int A, int B> void foo() { in foo() function 8 void foo() { in foo() function 15 template <typename T> T foo() { in foo() function 22 template <int A, int B> void foo() { in foo() function 29 template <int B> void foo() { in foo() function
|
D | pragma-ms_struct.cpp | 7 template<int x> struct foo { struct 11 extern int arr[sizeof(foo<0>) == 16 ? 1 : -1]; argument
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/ |
D | ShadowWranglerTest.java | 37 Foo foo = new Foo(name); in testConstructorInvocation_WithDefaultConstructorAndNoConstructorDelegateOnShadowClass() local 45 Foo foo = new Foo(name); in testConstructorInvocation() local 54 Foo foo = new Foo(name); in testRealObjectAnnotatedFieldsAreSetBeforeConstructorIsCalled() local 66 Foo foo = new Foo(name); in testMethodDelegation() local 83 Foo foo = new Foo(name); in testHashCodeMethodDelegation() local 91 Foo foo = new Foo(name); in testToStringMethodDelegation() local 126 Foo foo = new Foo(null); in shouldRemoveNoiseFromStackTraces() local 157 Foo foo = new Foo(null); in shouldThrowExceptionOnI18nStrictMode() local 161 private ShadowFoo shadowOf(Foo foo) { in shadowOf() 165 private ShadowTextFoo shadowOf(TextFoo foo) { in shadowOf()
|
/external/v8/test/mjsunit/regress/ |
D | regress-806.js | 32 function foo(a) { function 51 foo({foo: {foo: 1}}); property
|