| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/performance/Inputs/unnecessary-value-param/ |
| H A D | header-fixed.h | 3 struct ABC { struct 4 ABC(const ABC&); 9 int f1(int n, const ABC& v1, const ABC& v2); // line 9 11 int f1(int n, ABC v1); // line 11 15 int f2( int n, const ABC& v2); // line 15
|
| H A D | header.h | 3 struct ABC { struct 4 ABC(const ABC&); 9 int f1(int n, ABC v1, ABC v2); // line 9 11 int f1(int n, ABC v1); // line 11 15 int f2( int n, ABC v2); // line 15
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | static-data-member.cpp | 3 struct ABC { struct 12 double ABC::a = 1.0; argument 13 extern double ABC::b = 1.0; // expected-error {{static data member definition cannot specify a stor… 14 static double ABC::c = 1.0; // expected-error {{'static' can only be specified inside the class de… 15 __private_extern__ double ABC::d = 1.0; // expected-error {{static data member definition cannot sp… 16 auto double ABC::e = 1.0; // expected-error {{static data member definition cannot specify a storag… 17 register double ABC::f = 1.0; // expected-error {{static data member definition cannot specify a st…
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | version-script-locals-extern.s | 25 # RUN: llvm-readobj -V %t.so | FileCheck %s --check-prefix=ABC 26 # ABC: VersionSymbols [ 27 # ABC-NEXT: Symbol { 28 # ABC-NEXT: Version: 0 29 # ABC-NEXT: Name: 30 # ABC-NEXT: } 31 # ABC-NEXT: Symbol { 32 # ABC-NEXT: Version: 1 33 # ABC-NEXT: Name: _Z3abbi 34 # ABC-NEXT: } [all …]
|
| H A D | image-base.s | 6 # RUN: not ld.lld --image-base=ABC %t -o /dev/null 2>&1 | FileCheck --check-prefix=ERR %s 7 # ERR: error: --image-base: number expected, but got ABC
|
| H A D | version-script-complex-wildcards.s | 6 # RUN: llvm-readobj -V %t.so | FileCheck %s --check-prefix=ABC 7 # ABC: Name: _Z3abbi 8 # ABC: Name: _Z3abci@@FOO
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | cast-to-struct.cpp | 8 struct ABC { struct 29 struct ABC *Abc; in structToStruct() argument 30 …Abc = (struct ABC *)&Ab; // expected-warning {{Casting data to a larger structure type and accessi… in structToStruct() 31 Abc = (struct ABC *)P; // No warning; It is not known what data P points at. in structToStruct() 32 Abc = (struct ABC *)&*P; in structToStruct() 36 struct ABC Abc2; in structToStruct() 61 struct ABC *Abc; in intToStruct() 62 …Abc = (struct ABC *)P; // expected-warning {{Casting a non-structure type to a structure type and … in intToStruct() 66 Abc = (struct ABC *)VP; in intToStruct()
|
| /llvm-project-15.0.7/llvm/test/Instrumentation/AddressSanitizer/ |
| H A D | lifetime-throw.ll | 7 %struct.ABC = type { i32 } 20 %x = alloca %struct.ABC, align 4 21 %0 = bitcast %struct.ABC* %x to i8* 39 call void @_ZN3ABCD2Ev(%struct.ABC* nonnull %x) 57 $"\01??1ABC@@QEAA@XZ" = comdat any 73 %x = alloca %struct.ABC, align 4 74 %tmp = alloca %struct.ABC, align 4 75 %0 = bitcast %struct.ABC* %x to i8* 84 %1 = bitcast %struct.ABC* %tmp to i8* 92 call void @"\01??1ABC@@QEAA@XZ"(%struct.ABC* nonnull %x) [ "funclet"(token %2) ] [all …]
|
| /llvm-project-15.0.7/llvm/test/Other/ |
| H A D | bcanalyzer-dump-option.txt | 4 WITH-DUMP: <ABC 5 WITHOUT-DUMP-NOT: <ABC 6 WITH-DUMP: </ABC> 7 WITHOUT-DUMP-NOT: </ABC>
|
| H A D | bcanalyzer-block-info.txt | 5 CHECK: <ABC 17 CHECK: </ABC>
|
| /llvm-project-15.0.7/clang/test/Profile/ |
| H A D | cxx-abc-deleting-dtor.cpp | 11 struct ABC { struct 12 virtual ~ABC() = default; 15 struct DerivedABC : ABC {
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | cxx-template-argument.cpp | 62 template<class T1, typename T2> struct ABC; // expected-note {{template is declared here}} 75 UnknownBase<T1,T2,ABC<T2,T1> > // expected-error {{no template named 'UnknownBase'}} 79 …UnknownBase<T1,ABC<T2> >, // expected-error {{too few template arguments for class template 'ABC'}} 84 UnknownBase<T1,T2,ABC<T2,T1>> // expected-error {{no template named 'UnknownBase'}} 91 UnknownBase<T1,ABC<T2,T1>>, // expected-error {{no template named 'UnknownBase'}}
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/performance/ |
| H A D | unnecessary-value-param-header.cpp | 11 int f1(int n, ABC v1, ABC v2) { in f1() 17 int f2(int n, ABC v2) { in f2()
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/readability/ |
| H A D | misplaced-array-index.cpp | 3 #define ABC "abc" macro 22 dostuff(1[ABC]); in unusualSyntax() 26 dostuff(0[0 + ABC]); in unusualSyntax()
|
| /llvm-project-15.0.7/clang/test/SemaOpenCL/ |
| H A D | amdgpu-attrs.cl | 30 __attribute__((amdgpu_flat_work_group_size("ABC", "ABC"))) kernel void kernel_flat_work_group_size_… 31 __attribute__((amdgpu_flat_work_group_size(32, "ABC"))) kernel void kernel_flat_work_group_size_32_… 32 __attribute__((amdgpu_flat_work_group_size("ABC", 64))) kernel void kernel_flat_work_group_size_ABC… 33 __attribute__((amdgpu_waves_per_eu("ABC"))) kernel void kernel_waves_per_eu_ABC() {} // expected-er… 34 __attribute__((amdgpu_waves_per_eu(2, "ABC"))) kernel void kernel_waves_per_eu_2_ABC() {} // expect… 35 __attribute__((amdgpu_waves_per_eu("ABC", 4))) kernel void kernel_waves_per_eu_ABC_4() {} // expect… 36 __attribute__((amdgpu_num_sgpr("ABC"))) kernel void kernel_num_sgpr_ABC() {} // expected-error {{'a… 37 __attribute__((amdgpu_num_vgpr("ABC"))) kernel void kernel_num_vgpr_ABC() {} // expected-error {{'a…
|
| /llvm-project-15.0.7/llvm/test/Transforms/LoopStrengthReduce/ |
| H A D | 2007-04-23-UseIterator.ll | 7 define i8* @foo( i8* %ABC) { 22 %ABC.2146.0.rec = mul i32 %indvar, 3 ; <i32> [#uses=1] 26 %tmp138145.rec = add i32 %ABC.2146.0.rec, 3 ; <i32> [#uses=1] 27 %tmp138145 = getelementptr i8, i8* %ABC, i32 %tmp138145.rec ; <i8*> [#uses=4]
|
| /llvm-project-15.0.7/clang/test/SemaTemplate/ |
| H A D | recovery-tree-transform-crash.cpp | 5 struct ABC { struct 9 Ptr<ABC> call(int); // expected-note {{candidate function not viable}}
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | invalid-member.cpp | 25 class ABC {}; class 27 ABC<N> abc;
|
| /llvm-project-15.0.7/compiler-rt/test/fuzzer/ |
| H A D | focus-function.test | 23 # ABC triggers the focus function, others don't. 24 RUN: echo ABC$(for((i=0;i<2048;i++)); do echo -n x; done) > %t-corpus/ABC
|
| H A D | dataflow.test | 24 RUN: echo -n ABC > %t/IN/ABC 45 # ABC: No data is used 46 RUN:%t-ThreeFunctionsTestDF %t/IN/ABC | FileCheck %s --check-prefix=IN_ABC
|
| /llvm-project-15.0.7/clang/test/FixIt/ |
| H A D | typo-using.cpp | 26 class ABC {}; // expected-note {{'::using_suggestion_ty_dropped_specifier::ABC' declared here}} class 28 using N::ABC; // expected-error {{no member named 'ABC' in namespace 'using_suggestion_ty_dropped_s…
|
| /llvm-project-15.0.7/clang/test/CXX/expr/expr.unary/expr.sizeof/ |
| H A D | p1.cpp | 32 template<typename T> struct ABC { struct 38 ABC<int> qq;
|
| /llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/ |
| H A D | note-section.yaml | 30 ## namesz == (0x04000000) == sizeof("ABC") + NUL terminator. 34 # NOTE-NEXT: 0010: 04000000 03000000 FE000000 41424300 |............ABC.| 51 - Name: ABC 73 - Name: ABC 100 - Name: ABC 113 - Name: ABC 315 # TEXTUAL-TYPE-NEXT: 0010: 04000000 03000000 01000000 41424300 |............ABC.| 333 - Name: ABC
|
| /llvm-project-15.0.7/libc/test/src/__support/CPP/ |
| H A D | stringview_test.cpp | 154 StringView ABC("abc"); in TEST() local 155 ASSERT_EQ(ABC.size(), size_t(3)); in TEST() 156 ASSERT_FALSE(ABC.empty()); in TEST() 157 ASSERT_EQ(ABC.front(), 'a'); in TEST() 158 ASSERT_EQ(ABC.back(), 'c'); in TEST()
|
| /llvm-project-15.0.7/lld/test/ELF/Inputs/ |
| H A D | version-use.script | 1 ABC {
|