/external/clang/test/FixIt/ |
typo-using.cpp | 44 class CCC { public: typedef int AAA; }; // expected-note {{'AAA' declared here}} 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}} 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}} 55 class DDD : public CCC { public: using typename CCC::AAB; }; // expected-error {{no member named 'AAB' in 'using_suggesti (…) [all...] |
/external/compiler-rt/test/tsan/ |
virtual_inheritance_compile_bug.cc | 8 struct CCC: virtual AAA { }; 9 struct DDD: CCC, BBB { DDD(); }; // NOLINT
|
/external/compiler-rt/test/asan/TestCases/ |
stack-buffer-overflow-with-position.cc | 23 char AAA[10], BBB[10], CCC[10]; 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' <== {{.*}}overflows this variabl [all...] |
/external/clang/test/Frontend/ |
verify.c | 45 #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/ |
comment-cplus-template-decls.cpp | 20 * \brief Ccc 67 template<template<template<typename CCC> class DDD, class BBB> class AAA>
|
overriding-ftemplate-comments.cpp | 41 /// \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@>3#T#T#NIcomment_to_html_conversion_20#t0.0#t0.1#v#</USR><Declaration>template <typename AAA, typename BBB, int CCC>\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>] 51 // 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@>3#T#T#NIcomment_to_html_conversion_20#t0.0#t0.1#v#</USR><Declaration>template <typename PPP, typename QQQ, int RRR>\nvoid comment_to_html_conversion_20(PPP aaa, QQQ bbb)</Declaration><TemplateParameters><Parameter><Name>PPP</Name><Index>0</Index><Discussion><Para> Aaa</Para></Discussion></Parameter><Parameter><Name>QQQ</Name><Index>1</Index><Discussion><Para> Bbb </Para></Discussion></Parameter><Parameter><Name>RRR</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 [all...] |
/external/clang/test/CodeGenCXX/ |
thunk-use-after-free.cpp | 33 struct CCC:DDD { virtual void xxx (HHH < X1 >); }; 37 class BBB:virtual CCC {
|
debug-info-use-after-free.cpp | 120 struct CCC:DDD { virtual void xxx (HHH < X1 >); }; 124 class BBB:virtual CCC { 241 template < typename CCC, typename = 242 typename CCC::key_equal, typename = 243 EEE < CCC > >class III {
|
/cts/suite/audio_quality/test/ |
TaskTest.cpp | 120 const android::String8 CCC("ccc"); 121 ASSERT_TRUE(!task->addStringAttributePublic(CCC, bbbVal));
|
/external/clang/include/clang/Sema/ |
ExternalSemaSource.h | 200 CorrectionCandidateCallback &CCC,
|
MultiplexExternalSemaSource.h | 328 CorrectionCandidateCallback &CCC,
|
SemaInternal.h | 112 std::unique_ptr<CorrectionCandidateCallback> CCC, 118 CorrectionValidator(std::move(CCC)), MemberContext(MemberContext),
|
/external/clang/test/SemaCXX/ |
using-decl-1.cpp | 130 class CCC { public: void AAA() { } }; 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/lib/Sema/ |
SemaLookup.cpp | [all...] |
MultiplexExternalSemaSource.cpp | 291 CorrectionCandidateCallback &CCC, 296 if (TypoCorrection C = Sources[I]->CorrectTypo(Typo, LookupKind, S, SS, CCC,
|
SemaCodeComplete.cpp | [all...] |
/external/clang/unittests/Sema/ |
ExternalSemaSourceTest.cpp | 106 CorrectionCandidateCallback &CCC, 212 NamespaceTypoProvider Second("AAB", "CCC"); 214 NamespaceDiagnosticWatcher Watcher("AAB", "CCC");
|
/toolchain/binutils/binutils-2.25/opcodes/ |
fr30-opc.c | 1049 /* copop $u4c,$ccc,$CRj,$CRi */ 1052 { { MNEM, ' ', OP (U4C), ',', OP (CCC), ',', OP (CRJ), ',', OP (CRI), 0 } }, 1055 /* copld $u4c,$ccc,$Rjc,$CRi */ 1058 { { MNEM, ' ', OP (U4C), ',', OP (CCC), ',', OP (RJC), ',', OP (CRI), 0 } }, 1061 /* copst $u4c,$ccc,$CRj,$Ric */ 1064 { { MNEM, ' ', OP (U4C), ',', OP (CCC), ',', OP (CRJ), ',', OP (RIC), 0 } }, 1067 /* copsv $u4c,$ccc,$CRj,$Ric */ 1070 { { MNEM, ' ', OP (U4C), ',', OP (CCC), ',', OP (CRJ), ',', OP (RIC), 0 } },
|
tic54x-opc.c | 131 #define CCC 0x0C 151 { "c", CCC }, { "C", CCC },
|
/build/tools/droiddoc/templates-sac/assets/css/ |
default.css | 420 border-top: 1px solid #ccc; 427 border-top: 1px solid #ccc; 522 border-top:1px solid #ccc; 607 border-bottom:1px solid #ccc; 1077 background: #ccc; [all...] |
/external/ImageMagick/www/api/ |
enhance.php | 185 <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>
|
/docs/source.android.com/src/compatibility/5.1/ |
android-cdd.css | 224 background-color: #CCC;
|
/docs/source.android.com/src/compatibility/source/ |
android-cdd.css | 224 background-color: #CCC;
|
/build/tools/droiddoc/templates-ndk/assets/css/ |
default.css | 444 border-top: 1px solid #ccc; 567 border-top:1px solid #ccc; 639 border-bottom:1px solid #ccc; 1193 background: #ccc; 1265 color: #ccc !important; [all...] |
/external/clang/lib/Parse/ |
ParseDecl.cpp | [all...] |