| /llvm-project-15.0.7/clang/test/FixIt/ |
| H A D | typo-using.cpp | 44 class CCC { public: typedef int AAA; }; // expected-note {{'AAA' declared here}} class 45 class DDD : public CCC { public: using CCC::AAB; }; // expected-error {{no member named 'AAB' in 'u… 49 class CCC { public: void AAA() { } }; // expected-note {{'AAA' declared here}} in AAA() class 50 class DDD : public CCC { public: using CCC::AAB; }; // expected-error {{no member named 'AAB' in 'u… 54 class CCC { public: typedef int AAA; }; // expected-note {{'AAA' declared here}} class 55 class DDD : public CCC { public: using typename CCC::AAB; }; // expected-error {{no member named 'A…
|
| /llvm-project-15.0.7/compiler-rt/test/asan/TestCases/ |
| H A D | stack-buffer-overflow-with-position.cpp | 23 char AAA[10], BBB[10], CCC[10]; in main() local 26 memset(CCC, 0, sizeof(CCC)); in main() 29 printf("AAA: %p\ny: %p\nz: %p\np: %p\n", AAA, BBB, CCC, p); in main() 31 return *(short*)(p) + BBB[argc % 2] + CCC[argc % 2]; in main()
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/ |
| H A D | avoid-bind.cpp | 147 auto CCC = std::bind(add, MemberVariable, GlobalVariable); in testCaptureByValue() local 199 auto CCC = std::bind(add, y, std::ref(x)); in testCaptureByReference() local 236 auto CCC = std::bind(D{}, 1, 2); in testFunctionObjects() local 281 auto CCC = std::bind(add, _1, _1); in testPlaceholders() local 307 auto CCC = std::bind(&C::add, 1, 1); in testGlobalFunctions() local 335 auto CCC = std::bind(sub, std::ref(*p), _1); in testCapturedSubexpressions() local 355 auto CCC = std::bind(&E::MemberFunction, this, 1); in testMemberFunctions() local
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | debug-info-use-after-free.cpp | 122 struct CCC:DDD { virtual void xxx (HHH < X1 >); }; struct 126 class BBB:virtual CCC { 244 template < typename CCC, typename = 245 typename CCC::key_equal, typename = 246 EEE < CCC > >class III {
|
| H A D | thunk-use-after-free.cpp | 33 struct CCC:DDD { virtual void xxx (HHH < X1 >); }; struct 37 class BBB:virtual CCC {
|
| /llvm-project-15.0.7/compiler-rt/test/tsan/ |
| H A D | virtual_inheritance_compile_bug.cpp | 12 struct CCC: virtual AAA { }; struct 13 struct DDD : CCC, BBB {
|
| /llvm-project-15.0.7/llvm/test/Instrumentation/AddressSanitizer/ |
| H A D | stack_layout.ll | 16 ; CHECK: private unnamed_addr constant{{.*}}3 32 5 3 AAA 64 55 3 BBB 160 555 3 CCC\0 17 ; CHECK: private unnamed_addr constant{{.*}}3 256 128 3 CCC 448 128 3 BBB 608 128 3 AAA\0 54 %CCC = alloca [555 x i8], align 1 59 %arr3.ptr = bitcast [555 x i8]* %CCC to i8* 77 %CCC = alloca [128 x i8], align 256 82 %arr3.ptr = bitcast [128 x i8]* %CCC to i8*
|
| /llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/ |
| H A D | stack-uar.c | 27 __attribute__((noinline)) void Unrelated3() { int CCC[4]; USE(&CCC[0]); } in Unrelated3() local
|
| H A D | stack-uas.c | 36 int CCC[4]; in Unrelated3() local 37 USE(&CCC[0]); in Unrelated3()
|
| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | overriding-ftemplate-comments.cpp | 43 template<typename AAA, typename BBB, int CCC> 59 template<template<template<typename CCC> class DDD, class BBB> class AAA>
|
| H A D | overriding-method-comments.mm | 45 * \param[out] CCC output value is int 48 - (void)EXT_METH:(id)AAA : (double)BBB : (int)CCC; 51 …CCC;</Declaration><Parameters><Parameter><Name>AAA</Name><Index>0</Index><Direction isExplicit="1"… 73 /// \param CCC argument to undefined virtual. 74 virtual void foo_outofline(int CCC); 76 …al void foo_outofline(int CCC)</Declaration><Abstract><Para> Does something. </Para></Abstract><Pa…
|
| H A D | complete-objc-message.m | 262 // RUN: c-index-test -code-completion-at=%s:116:14 %s | FileCheck -check-prefix=CHECK-CCC %s 263 // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method} 264 // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (int)} 265 // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{Horizont… 266 // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{Horizont… 267 // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{Horizont… 268 // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText OtherMethod:}{Placeholder (float)}{Hor… 335 // RUN: c-index-test -code-completion-at=%s:140:14 %s | FileCheck -check-prefix=CHECK-CCC %s 338 // RUN: c-index-test -code-completion-at=%s:141:14 %s | FileCheck -check-prefix=CHECK-CCC %s
|
| H A D | comment-cplus-template-decls.cpp | 67 template<template<template<typename CCC> class DDD, class BBB> class AAA>
|
| /llvm-project-15.0.7/lldb/test/API/python_api/formatters/ |
| H A D | main.cpp | 24 struct CCC struct 53 CCC ccc = {111, 222, 333}; in main()
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | using-decl-1.cpp | 128 class CCC { public: void AAA() { } }; in AAA() class 129 class DDD : public CCC { public: using typename CCC::AAB; }; // expected-error {{no member named 'A…
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | emit-relocs-mergeable-i386.s | 29 ## Check that offsets for AAA is 0x0, for BBB is 0x8 and CCC has offset 0x4. 46 # CHECK-NEXT: |AAA.CCC.BBB.|
|
| H A D | debug-gc.s | 7 # CHECK-NEXT: 0000 41414100 43434300 42424200 AAA.CCC.BBB.
|
| H A D | emit-relocs-mergeable.s | 24 # CHECK-NEXT: 0000: 41414100 43434300 42424200 |AAA.CCC.BBB.|
|
| /llvm-project-15.0.7/clang/test/Frontend/ |
| H A D | verify.c | 45 #warning CCC // expected-warning {{DDD}} <- this shall be part of diagnostic
|
| /llvm-project-15.0.7/clang/test/Rewriter/ |
| H A D | rewrite-forward-class.mm | 37 @class CCC;
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | SemaInternal.h | 95 std::unique_ptr<CorrectionCandidateCallback> CCC, in TypoCorrectionConsumer() argument 101 CorrectionValidator(std::move(CCC)), MemberContext(MemberContext), in TypoCorrectionConsumer()
|
| H A D | ExternalSemaSource.h | 212 CorrectionCandidateCallback &CCC, in CorrectTypo() argument
|
| /llvm-project-15.0.7/lld/test/ELF/linkerscript/ |
| H A D | compress-debug-sections.s | 22 # CHECK-NEXT: CCC
|
| /llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/ |
| H A D | IncludeFixer.h | 108 CorrectionCandidateCallback &CCC,
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaLookup.cpp | 4435 static bool isCandidateViable(CorrectionCandidateCallback &CCC, in isCandidateViable() argument 4437 Candidate.setCallbackDistance(CCC.RankCandidate(Candidate)); in isCandidateViable() 5011 if (CCC.WantExpressionKeywords) in AddKeywordsToConsumer() 5016 if (CCC.WantObjCSuper) in AddKeywordsToConsumer() 5019 if (CCC.WantTypeSpecifiers) { in AddKeywordsToConsumer() 5056 } else if (CCC.WantFunctionLikeCasts) { in AddKeywordsToConsumer() 5065 if (CCC.WantCXXNamedCasts && SemaRef.getLangOpts().CPlusPlus) { in AddKeywordsToConsumer() 5072 if (CCC.WantExpressionKeywords) { in AddKeywordsToConsumer() 5104 if (CCC.WantRemainingKeywords) { in AddKeywordsToConsumer() 5157 Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, in makeTypoCorrectionConsumer() argument [all …]
|