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

/external/compiler-rt/lib/tsan/lit_tests/
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/test/SemaCXX/
H A Dusing-decl-1.cpp129 class CCC { public: void AAA() { } }; class in namespace:using_suggestion_member_tyname_val
130 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/Parse/
H A DParser.cpp1350 /// \param CCC Indicates how to perform typo-correction for this name. If NULL,
1354 CorrectionCandidateCallback *CCC) {
1394 IsAddressOfOperand, SS.isEmpty() ? CCC : 0);
1353 TryAnnotateName(bool IsAddressOfOperand, CorrectionCandidateCallback *CCC) argument
H A DParseDecl.cpp2405 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace; local
2424 CCC = Sema::PCC_LocalDeclarationSpecifiers;
2426 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
2429 CCC = Sema::PCC_Class;
2431 CCC = Sema::PCC_ObjCImplementation;
2433 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC); local
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp1347 static void AddStorageSpecifiers(Sema::ParserCompletionContext CCC, argument
1358 static void AddFunctionSpecifiers(Sema::ParserCompletionContext CCC, argument
1362 switch (CCC) {
1418 static bool WantTypesInContext(Sema::ParserCompletionContext CCC, argument
1420 switch (CCC) {
1514 static void AddOrdinaryNameResults(Sema::ParserCompletionContext CCC, argument
1523 switch (CCC) {
1598 if (CCC == Sema::PCC_Class) {
1633 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1634 AddFunctionSpecifiers(CCC, SemaRe
[all...]
H A DSemaLookup.cpp3681 Scope *S, CorrectionCandidateCallback &CCC,
3686 if (CCC.WantExpressionKeywords)
3691 if (CCC.WantObjCSuper)
3694 if (CCC.WantTypeSpecifiers) {
3733 if (CCC.WantCXXNamedCasts && SemaRef.getLangOpts().CPlusPlus) {
3740 if (CCC.WantExpressionKeywords) {
3772 if (CCC.WantRemainingKeywords) {
3822 static bool isCandidateViable(CorrectionCandidateCallback &CCC, argument
3824 Candidate.setCallbackDistance(CCC.RankCandidate(Candidate));
3842 /// \param CCC
3679 AddKeywordsToConsumer(Sema &SemaRef, TypoCorrectionConsumer &Consumer, Scope *S, CorrectionCandidateCallback &CCC, bool AfterNestedNameSpecifier) argument
3859 CorrectTypo(const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, DeclContext *MemberContext, bool EnteringContext, const ObjCObjectPointerType *OPT) argument
[all...]
H A DSemaDecl.cpp599 CorrectionCandidateCallback *CCC) {
665 if (!SecondTry && CCC) {
669 &SS, *CCC)) {
593 ClassifyName(Scope *S, CXXScopeSpec &SS, IdentifierInfo *&Name, SourceLocation NameLoc, const Token &NextToken, bool IsAddressOfOperand, CorrectionCandidateCallback *CCC) argument
H A DSemaOverload.cpp10083 CorrectionCandidateCallback *CCC = AllowTypoCorrection ? local
10089 SemaRef.DiagnoseEmptyLookup(S, SS, R, *CCC,
H A DSemaExpr.cpp1656 CorrectionCandidateCallback &CCC,
1776 S, &SS, CCC))) {
1882 CorrectionCandidateCallback *CCC,
2004 if (DiagnoseEmptyLookup(S, SS, R, CCC ? *CCC : DefaultValidator))
3903 FunctionCallCCC CCC(S, FuncName.getName().getAsIdentifierInfo(),
3907 S.getScopeForContext(S.CurContext), NULL, CCC)) {
1655 DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R, CorrectionCandidateCallback &CCC, TemplateArgumentListInfo *ExplicitTemplateArgs, llvm::ArrayRef<Expr *> Args) argument
1876 ActOnIdExpression(Scope *S, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, UnqualifiedId &Id, bool HasTrailingLParen, bool IsAddressOfOperand, CorrectionCandidateCallback *CCC, bool IsInlineAsmIdentifier) argument

Completed in 539 milliseconds