Searched refs:CCC (Results 1 - 25 of 35) sorted by relevance

12

/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/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/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/clang/test/Frontend/
H A Dverify.c45 #warning CCC // expected-warning {{DDD}} <- this shall be part of diagnostic
61 // CHECK2-NEXT: Line 45: CCC // expected-warning {{[{][{]DDD[}][}]}} <- this shall be part of diagnostic
/external/clang/test/Index/
H A Doverriding-ftemplate-comments.cpp41 /// \tparam CCC Ccc
43 template<typename AAA, typename BBB, int CCC>
46 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_20</Name><USR>c:@FT@&gt;3#T#T#NIcomment_to_html_conversion_20#t0.0#t0.1#v#</USR><Declaration>template &lt;typename AAA, typename BBB, int CCC&gt;\nvoid comment_to_html_conversion_20(AAA aaa, BBB bbb)</Declaration><TemplateParameters><Parameter><Name>AAA</Name><Index>0</Index><Discussion><Para> Aaa</Para></Discussion></Parameter><Parameter><Name>BBB</Name><Index>1</Index><Discussion><Para> Bbb </Para></Discussion></Parameter><Parameter><Name>CCC</Name><Index>2</Index><Discussion><Para> Ccc </Para></Discussion></Parameter><Parameter><Name>UUU</Name><Discussion><Para> Zzz </Para></Discussion></Parameter></TemplateParameters></Function>]
57 /// \tparam CCC Ccc
59 template<template<template<typename CCC> class DDD, class BBB> class AAA>
62 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_21</Name><USR>c:@FT@&gt;1#t&gt;2#t&gt;1#T#Tcomment_to_html_conversion_21#v#</USR><Declaration>template &lt;template &lt;template &lt;typename CCC&gt; class DDD, class BBB&gt; class AAA&gt;\nvoid comment_to_html_conversion_21()</Declaration><TemplateParameters><Parameter><Name>AAA</Name><Index>0</Index><Discussion><Para> Aaa </Para></Discussion></Parameter><Parameter><Name>BBB</Name><Discussion><Para> Bbb </Para></Discussion></Parameter><Parameter><Name>CCC</Name><Discussion><Para> Ccc </Para></Discussion></Parameter><Parameter><Name>DDD</Name><Discussion><Para> Ddd</Para></Discussion></Parameter></TemplateParameters></Function>]
H A Dcomment-cplus-template-decls.cpp67 template<template<template<typename CCC> class DDD, class BBB> class AAA>
/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.cpp130 class CCC { public: void AAA() { } }; class in namespace:using_suggestion_member_tyname_val
131 class DDD : public CCC { public: using typename CCC::AAB; }; // expected-error {{no member named 'AAB' in 'using_suggestion_member_tyname_val::CCC'}}
/external/clang/include/clang/Sema/
H A DExternalSemaSource.h200 CorrectionCandidateCallback &CCC,
198 CorrectTypo(const DeclarationNameInfo &Typo, int LookupKind, Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, DeclContext *MemberContext, bool EnteringContext, const ObjCObjectPointerType *OPT) argument
H A DMultiplexExternalSemaSource.h328 CorrectionCandidateCallback &CCC,
H A DSemaInternal.h112 std::unique_ptr<CorrectionCandidateCallback> CCC,
118 CorrectionValidator(std::move(CCC)), MemberContext(MemberContext),
108 TypoCorrectionConsumer(Sema &SemaRef, const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, Scope *S, CXXScopeSpec *SS, std::unique_ptr<CorrectionCandidateCallback> CCC, DeclContext *MemberContext, bool EnteringContext) argument
H A DSema.h1624 /// \param CCC The correction callback, if typo correction is desired.
1629 std::unique_ptr<CorrectionCandidateCallback> CCC = nullptr);
2753 std::unique_ptr<CorrectionCandidateCallback> CCC,
2836 std::unique_ptr<CorrectionCandidateCallback> CCC,
2846 std::unique_ptr<CorrectionCandidateCallback> CCC,
3681 std::unique_ptr<CorrectionCandidateCallback> CCC = nullptr,
3691 std::unique_ptr<CorrectionCandidateCallback> CCC,
/external/clang/lib/Sema/
H A DSemaLookup.cpp3668 static bool isCandidateViable(CorrectionCandidateCallback &CCC,
3670 Candidate.setCallbackDistance(CCC.RankCandidate(Candidate));
4236 Scope *S, CorrectionCandidateCallback &CCC,
4241 if (CCC.WantExpressionKeywords)
4246 if (CCC.WantObjCSuper)
4249 if (CCC.WantTypeSpecifiers) {
4286 } else if (CCC.WantFunctionLikeCasts) {
4295 if (CCC.WantCXXNamedCasts && SemaRef.getLangOpts().CPlusPlus) {
4302 if (CCC.WantExpressionKeywords) {
4334 if (CCC
[all...]
H A DMultiplexExternalSemaSource.cpp291 CorrectionCandidateCallback &CCC,
296 if (TypoCorrection C = Sources[I]->CorrectTypo(Typo, LookupKind, S, SS, CCC,
288 CorrectTypo( const DeclarationNameInfo &Typo, int LookupKind, Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, DeclContext *MemberContext, bool EnteringContext, const ObjCObjectPointerType *OPT) argument
H A DSemaCodeComplete.cpp1351 static void AddStorageSpecifiers(Sema::ParserCompletionContext CCC, argument
1362 static void AddFunctionSpecifiers(Sema::ParserCompletionContext CCC, argument
1366 switch (CCC) {
1422 static bool WantTypesInContext(Sema::ParserCompletionContext CCC, argument
1424 switch (CCC) {
1518 static void AddOrdinaryNameResults(Sema::ParserCompletionContext CCC, argument
1527 switch (CCC) {
1602 if (CCC == Sema::PCC_Class) {
1637 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1638 AddFunctionSpecifiers(CCC, SemaRe
[all...]
H A DSemaExpr.cpp1798 std::unique_ptr<CorrectionCandidateCallback> CCC,
1888 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, std::move(CCC),
1898 &SS, std::move(CCC), CTK_ErrorRecovery))) {
2047 std::unique_ptr<CorrectionCandidateCallback> CCC,
2164 assert((!CCC || CCC->IsAddressOfOperand == IsAddressOfOperand) &&
2166 if (CCC) {
2168 CCC->setTypoName(II);
2170 CCC->setTypoNNS(SS.getScopeRep());
2173 CCC
1797 DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R, std::unique_ptr<CorrectionCandidateCallback> CCC, TemplateArgumentListInfo *ExplicitTemplateArgs, ArrayRef<Expr *> Args, TypoExpr **Out) argument
2044 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/unittests/Sema/
H A DExternalSemaSourceTest.cpp106 CorrectionCandidateCallback &CCC,
212 NamespaceTypoProvider Second("AAB", "CCC");
214 NamespaceDiagnosticWatcher Watcher("AAB", "CCC");
/external/clang/lib/Parse/
H A DParseDecl.cpp2692 Sema::ParserCompletionContext CCC = Sema::PCC_Namespace; local
2711 CCC = Sema::PCC_LocalDeclarationSpecifiers;
2713 CCC = DSContext == DSC_class? Sema::PCC_MemberTemplate
2716 CCC = Sema::PCC_Class;
2718 CCC = Sema::PCC_ObjCImplementation;
2720 Actions.CodeCompleteOrdinaryName(getCurScope(), CCC); local
H A DParser.cpp1388 /// \param CCC Indicates how to perform typo-correction for this name. If NULL,
1392 std::unique_ptr<CorrectionCandidateCallback> CCC) {
1432 SS.isEmpty() ? std::move(CCC) : nullptr);
1391 TryAnnotateName(bool IsAddressOfOperand, std::unique_ptr<CorrectionCandidateCallback> CCC) argument
/external/ImageMagick/www/api/
H A Denhance.php185 <p>ColorDecisionListImage() accepts a lightweight Color Correction Collection (CCC) file which solely contains one or more color corrections and applies the correction to the image. Here is a sample CCC file:</p>
/external/clang/include/clang/Parse/
H A DParser.h599 std::unique_ptr<CorrectionCandidateCallback> CCC = nullptr);
/external/google-breakpad/
H A Dconfigure778 CCC'
5046 if test -n "$CCC"; then
5047 CXX=$CCC
/external/icu/icu4c/source/
H A Dconfigure814 CCC
3434 if test -n "$CCC"; then
3435 CXX=$CCC
6369 { $as_echo "$as_me:${as_lineno-$LINENO}: result: \"C compiler set to CCC ${CC}\" " >&5
6370 $as_echo "\"C compiler set to CCC ${CC}\" " >&6; }
/external/google-tv-pairing-protocol/cpp/
H A Dconfigure902 CCC
4086 if test -n "$CCC"; then
4087 CXX=$CCC
7784 if test -n "$CCC"; then
7785 CXX=$CCC

Completed in 8526 milliseconds

12