| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/performance/ |
| H A D | implicit-conversion-in-loop.cpp | 47 int foo; member 70 for (const SimpleClass& foo : SimpleView()) {} in SimpleClassIterator() local 74 for (const SimpleClass foo : SimpleView()) {} in SimpleClassIterator() local 75 for (SimpleClass foo : SimpleView()) {} in SimpleClassIterator() local 79 for (const SimpleClass& foo : SimpleRefView()) {} in SimpleClassRefIterator() local 81 for (const SimpleClass foo : SimpleRefView()) {} in SimpleClassRefIterator() local 82 for (SimpleClass foo : SimpleRefView()) {} in SimpleClassRefIterator() local 86 for (const ComplexClass& foo : ComplexView()) {} in ComplexClassIterator() local 88 for (const ComplexClass foo : ComplexView()) {} in ComplexClassIterator() local 89 for (ComplexClass foo : ComplexView()) {} in ComplexClassIterator() local [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
| H A D | F_nullptr.pass.cpp | 66 int foo() { return 42; } in foo() function 67 int foo(int) { return 42; } in foo() function 68 int foo(int, int) { return 42; } in foo() function 71 int foo(...) { return 42; } in foo() function 72 int foo(int, ...) { return 42; } in foo() function 78 int foo() { return 42; } in foo() function 83 int foo(int) { return 42; } in foo() function 98 int foo(...) { return 42; } in foo() function 121 int foo() & { return 42; } in foo() function 131 int foo() && { return 42; } in foo() function [all …]
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/synthcapping/ |
| H A D | main.cpp | 1 struct foo struct 22 foo(int X) : in foo() argument
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/ |
| H A D | main.cpp | 1 struct foo struct 22 foo(int X) : in foo() argument
|
| /llvm-project-15.0.7/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() function 17 foo::foo() : foo(1) { } // expected-error{{creates a delegation cycle}} \ in foo() function in foo
|
| /llvm-project-15.0.7/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
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | range_casts.c | 6 void f1(long foo) in f1() 36 void f4(long foo) in f4() 46 void f5(long foo) in f5() 56 void f6(long foo) in f6() 66 void f7(long foo) in f7() 76 void f8(long foo) in f8() 86 void f9(long foo) in f9() 96 void f10(long foo) in f10() 106 void f11(long foo) in f11() 116 void f12(long foo) in f12() [all …]
|
| /llvm-project-15.0.7/lldb/test/API/python_api/sbdata/ |
| H A D | main.cpp | 3 struct foo struct 8 foo() : a(0), b(1), c(3.14) {} in foo() argument 9 foo(uint32_t A, uint32_t B, float C) : in foo() argument
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | class-property-inheritance.m | 7 @property(nullable, readonly, strong, class) MyObject *foo; property 11 @property(nonnull, readonly, copy, class) MyObject *foo; // expected-warning {{'copy' attribute on … property 17 @property(nullable, readonly, strong) MyObject *foo; property 21 @property(nonnull, readonly, copy, class) MyObject *foo; // no-warning property 25 @property(nullable, readonly, copy) MyObject *foo; // expected-warning {{'copy' attribute on proper… property 30 @property(nullable, readonly, strong, class) MyObject *foo; property 34 @property(nonnull, readonly, copy) MyObject *foo; // no-warning property 38 @property(nonnull, readonly, copy, class) MyObject *foo; // expected-warning {{'copy' attribute on … property
|
| 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
|
| /llvm-project-15.0.7/lldb/test/Shell/SymbolFile/DWARF/x86/ |
| H A D | find-basic-function.cpp | 89 void foo() {} in foo() function 90 void foo(int) {} in foo() function 94 void foo() {} in foo() function 96 void foo() {} in foo() function 100 struct foo {}; struct 101 void fbar(struct foo) {} in fbar() 109 void sbar::foo() {} in foo() function in sbar 110 void sbar::foo(int) {} in foo() function in sbar 114 void foo() {} in ffbar() function
|
| H A D | find-basic-type.cpp | 35 struct foo { }; struct 40 struct foo {}; struct 44 struct foo {}; struct 50 struct foo {}; struct 58 extern "C" void _start(foo, bar::foo, bar::baz::foo, sbar::foo, foobar, Foo) {} in _start() argument
|
| H A D | find-basic-variable.cpp | 42 int foo; variable 47 long foo; variable 52 static short foo; variable 59 static int foo; member 63 int sbar::foo; member in sbar 69 static int foo; in fbar() local 76 int foo; member
|
| /llvm-project-15.0.7/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
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | attr-cpuspecific-outoflinedefs.cpp | 7 __attribute__((cpu_specific(atom))) int foo(int, int, int) { return 1; } in foo() function 10 int __attribute__((cpu_specific(atom))) OutOfLineDefs::foo(int) { in foo() function in OutOfLineDefs 13 int __attribute__((cpu_specific(ivybridge))) OutOfLineDefs::foo(int) { in foo() function in OutOfLineDefs 16 int __attribute__((cpu_dispatch(ivybridge, atom))) OutOfLineDefs::foo(int) { in foo() function in OutOfLineDefs 19 int __attribute__((cpu_specific(atom))) OutOfLineDefs::foo(int, int) { in foo() function in OutOfLineDefs 22 int __attribute__((cpu_specific(ivybridge))) OutOfLineDefs::foo(int, int) { in foo() function in OutOfLineDefs 26 OutOfLineDefs::foo(int, int) { in foo() function in OutOfLineDefs 29 int __attribute__((cpu_specific(ivybridge))) OutOfLineDefs::foo(int, int, int) { in foo() function in OutOfLineDefs 33 OutOfLineDefs::foo(int, int, int) { in foo() function in OutOfLineDefs 37 OutOfLineDefs::foo(int, int, int) { in foo() function in OutOfLineDefs
|
| 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 | attr-target-mv-diff-ns.cpp | 5 int __attribute__((target("sse4.2"))) foo(int) { return 0; } in foo() function 7 int __attribute__((target("arch=ivybridge"))) foo(int) {return 1;} in foo() function 8 int __attribute__((target("default"))) foo(int) { return 2; } in foo() function 11 int __attribute__((target("sse4.2"))) foo(int) { return 0; } in foo() function 13 int __attribute__((target("arch=ivybridge"))) foo(int) {return 1;} in foo() function 14 int __attribute__((target("default"))) foo(int) { return 2; } in foo() function
|
| H A D | vtable-key-function-ios.cpp | 36 void Test0a::foo() {} in foo() function in Test0a 47 void Test0b::foo() {} in foo() function in Test0b 70 inline void Test1a::foo() {} in foo() function in Test1a 81 inline void Test1b::foo() {} in foo() function in Test1b 104 inline void Test2a::foo() {} in foo() function in Test2a 122 inline void Test2b::foo() {} in foo() function in Test2b 133 inline void Test2c::foo() {} in foo() function in Test2c 157 inline void Test3a::foo() {} in foo() function in Test3a 176 inline void Test3b::foo() {} in foo() function in Test3b 188 inline void Test3c::foo() {} in foo() function in Test3c
|
| /llvm-project-15.0.7/flang/test/Evaluate/ |
| H A D | rewrite02.f90 | 4 subroutine foo(j) subroutine 5 integer, intent(in) :: j local 6 character*4 sc, ac(1) 7 type t type 10 type(t) st, at(1)
|
| /llvm-project-15.0.7/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 &); argument 23 foo &operator=(foo const &); argument 29 foo f([[NSString string] autorelease]); argument
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/altera/ |
| H A D | single-work-item-barrier.cpp | 7 void __kernel error_barrier_no_id(__global int * foo, int size) { in error_barrier_no_id() 21 void __kernel success_barrier_global_id(__global int * foo, int size) { in success_barrier_global_id() 26 void __kernel success_barrier_local_id(__global int * foo, int size) { in success_barrier_local_id() 31 void __kernel success_barrier_both_ids(__global int * foo, int size) { in success_barrier_both_ids() 37 void success_nokernel_barrier_no_id(__global int * foo, int size) { in success_nokernel_barrier_no_id() 54 void success_nokernel_barrier_local_id(__global int * foo, int size) { in success_nokernel_barrier_local_id() 67 void __kernel error_barrier_no_id(__global int * foo, int size) { in error_barrier_no_id() 97 void success_nokernel_barrier_no_id(__global int * foo, int size) { in success_nokernel_barrier_no_id() 127 void __kernel error_barrier_no_id(__global int * foo, int size) { in error_barrier_no_id() 185 void success_nokernel_barrier_no_id(__global int * foo, int size) { in success_nokernel_barrier_no_id() [all …]
|
| /llvm-project-15.0.7/clang/test/CodeGenObjCXX/ |
| H A D | debug-info-line.mm | 6 struct foo { struct 7 ~foo(); argument 12 foo f; argument 23 foo f; argument
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/format-propagation/ |
| H A D | main.cpp | 1 struct foo struct 5 foo(int a, int b) : X(a), Y(b) {} in foo() argument
|
| /llvm-project-15.0.7/clang/test/CodeGenObjC/ |
| H A D | bitfield_encoding.m | 6 struct foo{ struct 12 const char *encoding = @encode(struct foo); argument
|
| /llvm-project-15.0.7/flang/test/Semantics/ |
| H A D | canondo05.f90 | 13 subroutine foo() subroutine 16 1 continue 17 2 do 3 i=1,2 label 18 3 continue 27 4 end do mainloop
|