Home
last modified time | relevance | path

Searched refs:CCC (Results 1 – 25 of 56) sorted by relevance

123

/llvm-project-15.0.7/clang/test/FixIt/
H A Dtypo-using.cpp44 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 Dstack-buffer-overflow-with-position.cpp23 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 Davoid-bind.cpp147 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 Ddebug-info-use-after-free.cpp122 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 Dthunk-use-after-free.cpp33 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 Dvirtual_inheritance_compile_bug.cpp12 struct CCC: virtual AAA { }; struct
13 struct DDD : CCC, BBB {
/llvm-project-15.0.7/llvm/test/Instrumentation/AddressSanitizer/
H A Dstack_layout.ll16 ; 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 Dstack-uar.c27 __attribute__((noinline)) void Unrelated3() { int CCC[4]; USE(&CCC[0]); } in Unrelated3() local
H A Dstack-uas.c36 int CCC[4]; in Unrelated3() local
37 USE(&CCC[0]); in Unrelated3()
/llvm-project-15.0.7/clang/test/Index/
H A Doverriding-ftemplate-comments.cpp43 template<typename AAA, typename BBB, int CCC>
59 template<template<template<typename CCC> class DDD, class BBB> class AAA>
H A Doverriding-method-comments.mm45 * \param[out] CCC output value is int
48 - (void)EXT_METH:(id)AAA : (double)BBB : (int)CCC;
51CCC;</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 Dcomplete-objc-message.m262 // 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 Dcomment-cplus-template-decls.cpp67 template<template<template<typename CCC> class DDD, class BBB> class AAA>
/llvm-project-15.0.7/lldb/test/API/python_api/formatters/
H A Dmain.cpp24 struct CCC struct
53 CCC ccc = {111, 222, 333}; in main()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dusing-decl-1.cpp128 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 Demit-relocs-mergeable-i386.s29 ## Check that offsets for AAA is 0x0, for BBB is 0x8 and CCC has offset 0x4.
46 # CHECK-NEXT: |AAA.CCC.BBB.|
H A Ddebug-gc.s7 # CHECK-NEXT: 0000 41414100 43434300 42424200 AAA.CCC.BBB.
H A Demit-relocs-mergeable.s24 # CHECK-NEXT: 0000: 41414100 43434300 42424200 |AAA.CCC.BBB.|
/llvm-project-15.0.7/clang/test/Frontend/
H A Dverify.c45 #warning CCC // expected-warning {{DDD}} <- this shall be part of diagnostic
/llvm-project-15.0.7/clang/test/Rewriter/
H A Drewrite-forward-class.mm37 @class CCC;
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSemaInternal.h95 std::unique_ptr<CorrectionCandidateCallback> CCC, in TypoCorrectionConsumer() argument
101 CorrectionValidator(std::move(CCC)), MemberContext(MemberContext), in TypoCorrectionConsumer()
H A DExternalSemaSource.h212 CorrectionCandidateCallback &CCC, in CorrectTypo() argument
/llvm-project-15.0.7/lld/test/ELF/linkerscript/
H A Dcompress-debug-sections.s22 # CHECK-NEXT: CCC
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/
H A DIncludeFixer.h108 CorrectionCandidateCallback &CCC,
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaLookup.cpp4435 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 …]

123