Searched defs:CCC (Results 1 - 14 of 14) sorted by relevance

/external/compiler-rt/test/asan/TestCases/
H A Dstack-buffer-overflow-with-position.cc23 char AAA[10], BBB[10], CCC[10]; local
26 memset(CCC, 0, sizeof(CCC));
29 printf("AAA: %p\ny: %p\nz: %p\np: %p\n", AAA, BBB, CCC, p);
30 // make sure BBB and CCC are not removed;
31 return *(short*)(p) + BBB[argc % 2] + CCC[argc % 2];
41 // CHECK-62: 'CCC' <== {{.*}}underflows this variable
42 // CHECK-63: 'CCC' <== {{.*}}partially underflows this variable
43 // CHECK-73: 'CCC' <== {{.*}}partially overflows this variable
44 // CHECK-74: 'CCC' <
[all...]
/external/compiler-rt/test/tsan/
H A Dvirtual_inheritance_compile_bug.cc8 struct CCC: virtual AAA { }; struct in inherits:AAA
9 struct DDD: CCC, BBB { DDD(); }; // NOLINT
/external/clang/test/FixIt/
H A Dtypo-using.cpp44 class CCC { public: typedef int AAA; }; // expected-note {{'AAA' declared here}} class in namespace:using_suggestion_member_ty
45 class DDD : public CCC { public: using CCC::AAB; }; // expected-error {{no member named 'AAB' in 'using_suggestion_member_ty::CCC'; did you mean 'AAA'?}}
49 class CCC { public: void AAA() { } }; // expected-note {{'AAA' declared here}} class in namespace:using_suggestion_member_val
50 class DDD : public CCC { public: using CCC::AAB; }; // expected-error {{no member named 'AAB' in 'using_suggestion_member_val::CCC'; did you mean 'AAA'?}}
54 class CCC { public: typedef int AAA; }; // expected-note {{'AAA' declared here}} class in namespace:using_suggestion_member_tyname_ty
55 class DDD : public CCC { publi
[all...]
/external/clang/test/CodeGenCXX/
H A Dthunk-use-after-free.cpp33 struct CCC:DDD { virtual void xxx (HHH < X1 >); }; struct in inherits:DDD
37 class BBB:virtual CCC {
H A Ddebug-info-use-after-free.cpp120 struct CCC:DDD { virtual void xxx (HHH < X1 >); }; struct in inherits:DDD
124 class BBB:virtual CCC {
241 template < typename CCC, typename =
242 typename CCC::key_equal, typename =
243 EEE < CCC > >class III {
/external/clang/include/clang/Sema/
H A DExternalSemaSource.h204 CorrectionCandidateCallback &CCC,
202 CorrectTypo(const DeclarationNameInfo &Typo, int LookupKind, Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, DeclContext *MemberContext, bool EnteringContext, const ObjCObjectPointerType *OPT) argument
H A DSemaInternal.h113 std::unique_ptr<CorrectionCandidateCallback> CCC,
119 CorrectionValidator(std::move(CCC)), MemberContext(MemberContext),
109 TypoCorrectionConsumer(Sema &SemaRef, const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, Scope *S, CXXScopeSpec *SS, std::unique_ptr<CorrectionCandidateCallback> CCC, DeclContext *MemberContext, bool EnteringContext) argument
/external/clang/test/SemaCXX/
H A Dusing-decl-1.cpp128 class CCC { public: void AAA() { } }; class in namespace:using_suggestion_member_tyname_val
129 class DDD : public CCC { public: using typename CCC::AAB; }; // expected-error {{no member named 'AAB' in 'using_suggestion_member_tyname_val::CCC'}}
/external/clang/lib/Sema/
H A DMultiplexExternalSemaSource.cpp296 CorrectionCandidateCallback &CCC,
301 if (TypoCorrection C = Sources[I]->CorrectTypo(Typo, LookupKind, S, SS, CCC,
293 CorrectTypo( const DeclarationNameInfo &Typo, int LookupKind, Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, DeclContext *MemberContext, bool EnteringContext, const ObjCObjectPointerType *OPT) argument
H A DSemaCodeComplete.cpp1364 static void AddStorageSpecifiers(Sema::ParserCompletionContext CCC, argument
1375 static void AddFunctionSpecifiers(Sema::ParserCompletionContext CCC, argument
1379 switch (CCC) {
1435 static bool WantTypesInContext(Sema::ParserCompletionContext CCC, argument
1437 switch (CCC) {
1531 static void AddOrdinaryNameResults(Sema::ParserCompletionContext CCC, argument
1539 switch (CCC) {
1614 if (CCC == Sema::PCC_Class) {
1649 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1650 AddFunctionSpecifiers(CCC, SemaRe
[all...]
H A DSemaDecl.cpp778 std::unique_ptr<CorrectionCandidateCallback> CCC) {
851 if (!SecondTry && CCC) {
855 &SS, std::move(CCC),
775 ClassifyName(Scope *S, CXXScopeSpec &SS, IdentifierInfo *&Name, SourceLocation NameLoc, const Token &NextToken, bool IsAddressOfOperand, std::unique_ptr<CorrectionCandidateCallback> CCC) argument
H A DSemaExpr.cpp1861 std::unique_ptr<CorrectionCandidateCallback> CCC,
1951 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, std::move(CCC),
1961 &SS, std::move(CCC), CTK_ErrorRecovery))) {
2110 std::unique_ptr<CorrectionCandidateCallback> CCC,
2227 assert((!CCC || CCC->IsAddressOfOperand == IsAddressOfOperand) &&
2229 if (CCC) {
2231 CCC->setTypoName(II);
2233 CCC->setTypoNNS(SS.getScopeRep());
2236 CCC
1860 DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R, std::unique_ptr<CorrectionCandidateCallback> CCC, TemplateArgumentListInfo *ExplicitTemplateArgs, ArrayRef<Expr *> Args, TypoExpr **Out) argument
2107 ActOnIdExpression(Scope *S, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, UnqualifiedId &Id, bool HasTrailingLParen, bool IsAddressOfOperand, std::unique_ptr<CorrectionCandidateCallback> CCC, bool IsInlineAsmIdentifier, Token *KeywordReplacement) argument
[all...]
/external/clang/lib/Parse/
H A DParser.cpp1414 /// \param CCC Indicates how to perform typo-correction for this name. If NULL,
1418 std::unique_ptr<CorrectionCandidateCallback> CCC) {
1458 SS.isEmpty() ? std::move(CCC) : nullptr);
1417 TryAnnotateName(bool IsAddressOfOperand, std::unique_ptr<CorrectionCandidateCallback> CCC) argument
H A DParseDecl.cpp2747 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace; local
2766 CCC = Sema::PCC_LocalDeclarationSpecifiers;
2768 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
2771 CCC = Sema::PCC_Class;
2773 CCC = Sema::PCC_ObjCImplementation;
2775 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC); local

Completed in 384 milliseconds