/minix3/external/bsd/libc++/dist/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
H A D | F_nullptr.pass.cpp | 64 int foo() { return 42; } in foo() function 65 int foo(int) { return 42; } in foo() function 66 int foo(int, int) { return 42; } in foo() function 67 int foo(int, int, int) { return 42; } in foo() function 69 int foo(...) { return 42; } in foo() function 70 int foo(int, ...) { return 42; } in foo() function 71 int foo(int, int, ...) { return 42; } in foo() function 72 int foo(int, int, int, ...) { return 42; } in foo() function 76 int foo() { return 42; } in foo() function 77 int foo() const { return 42; } in foo() function [all …]
|
/minix3/external/bsd/llvm/dist/clang/test/PCH/ |
H A D | cxx0x-delegating-ctors.cpp | 10 struct foo { struct 11 foo(int) : foo() { } in foo() function 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
|
/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/ |
H A 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
|
H A D | defaulted-ctor-loop.cpp | 9 struct foo { struct 11 foo() in foo() function
|
/minix3/external/bsd/llvm/dist/clang/test/Parser/ |
H A 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
|
H A D | types.c | 10 typedef struct foo { int x; } foo; argument 12 foo *foo; in test() local
|
/minix3/external/bsd/llvm/dist/clang/test/ARCMT/ |
H A D | cxx-rewrite.mm | 11 struct foo { struct 13 foo(NSString *s): s([s retain]){ argument 22 foo(foo const &); field 23 foo &operator=(foo const &); argument 29 foo f([[NSString string] autorelease]); argument
|
/minix3/external/bsd/llvm/dist/clang/test/SemaObjC/ |
H A D | encode-typeof-test.m | 31 struct foo { struct 43 …return @encode(struct foo); // expected-warning {{encoding of 'struct foo' type is incomplete beca… argument
|
/minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/ |
H A 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 …]
|
H A 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
|
H A 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
|
H A 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
|
H A 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
|
H A D | assign-construct-memcpy.cpp | 12 struct foo { struct 14 foo() {} // non-POD in foo() argument 23 foo *test1(void *f, const foo &x) { in test1() argument
|
/minix3/external/bsd/llvm/dist/clang/test/CodeGenObjCXX/ |
H A D | debug-info-line.mm | 5 struct foo { struct 6 ~foo(); field 11 foo f; argument 22 foo f; argument
|
/minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/ |
H A D | bitfield_encoding.m | 6 struct foo{ struct 12 const char *encoding = @encode(struct foo); argument
|
/minix3/external/bsd/llvm/dist/clang/test/CodeGen/ |
H A D | 2003-08-30-AggregateInitializer.c | 7 struct foo { struct 14 struct foo F = { 1, { 7 }, { 123 } , 1 }; argument
|
H A D | 2002-02-13-TypeVarNameCollision.c | 7 typedef struct foo { struct 11 static FOO foo[100]; variable
|
H A D | 2003-08-30-LargeIntegerBitfieldMember.c | 3 struct foo { struct 9 struct foo F; argument
|
H A D | 2003-08-29-StructLayoutBug.c | 3 struct foo { struct 9 void test(struct foo *X) {} in test() argument
|
H A D | arm-byval-align.c | 3 struct foo { struct 10 // CHECK: %struct.foo* byval align 8 %z argument
|
/minix3/tests/usr.bin/xlint/lint1/ |
H A D | d_c9x_recursive_init.c | 6 struct foo { struct 12 struct foo f = { argument
|
/minix3/external/bsd/llvm/dist/clang/test/SemaTemplate/ |
H A D | pragma-ms_struct.cpp | 7 template<int x> struct foo { struct 11 extern int arr[sizeof(foo<0>) == 16 ? 1 : -1]; argument
|
/minix3/external/bsd/llvm/dist/clang/test/SemaObjCXX/ |
H A D | conversion-to-objc-pointer.mm | 32 - (void) foo; method 36 - (void) foo {} method 40 - (void) foo; method 44 - (void) foo {} method
|
/minix3/external/bsd/llvm/dist/clang/test/Misc/ |
H A D | ast-dump-templates.cpp | 7 struct foo { struct 9 foo() {} in foo() function 20 int y = foo<5, int>().getSum(); in baz() argument
|