HomeSort by relevance Sort by last modified time
    Searched refs:CCC (Results 1 - 25 of 66) sorted by null

1 2 3

  /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@&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>]
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@&gt;3#T#T#NIcomment_to_html_conversion_20#t0.0#t0.1#v#</USR><Declaration>template &lt;typename PPP, typename QQQ, int RRR&gt;\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 {
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Config/
Tcg2ConfigPei.inf 21 FILE_GUID = EADD5061-93EF-4CCC-8450-F78A7F0820F0
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
forminfo.go 15 // 6..0: ccc (compressed CCC value).
23 // The byte sequence is followed by a trailing and leading CCC if the values
24 // for these are not zero. The value of v determines which ccc are appended
26 // the sequence is followed by a trailing ccc, and for v >= firstLeadingCC
27 // there is an additional leading ccc. The value of tccc itself is the
28 // trailing CCC shifted left 2 bits. The two least-significant bits of tccc
41 ccc uint8 // leading canonical combining class (ccc if not decomposition)
42 tccc uint8 // trailing canonical combining class (ccc if not decomposition
    [all...]
composition.go 102 // insert are decomposed and reordered based on CCC. The compose method can
196 cc := info.ccc
200 if b[n-1].ccc <= cc {
223 // insertFlush inserts the given rune in the buffer ordered by CCC.
239 // insertUnsafe inserts the given rune in the buffer ordered by CCC.
434 cccB := b[k-1].ccc
435 cccC := b[i].ccc
494 cccB := b[k-1].ccc
495 cccC := ii.ccc
496 blocked := false // b[i] blocked by starter or greater or equal CCC
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
forminfo.go 15 // 6..0: ccc (compressed CCC value).
23 // The byte sequence is followed by a trailing and leading CCC if the values
24 // for these are not zero. The value of v determines which ccc are appended
26 // the sequence is followed by a trailing ccc, and for v >= firstLeadingCC
27 // there is an additional leading ccc. The value of tccc itself is the
28 // trailing CCC shifted left 2 bits. The two least-significant bits of tccc
41 ccc uint8 // leading canonical combining class (ccc if not decomposition)
42 tccc uint8 // trailing canonical combining class (ccc if not decomposition
    [all...]
composition.go 102 // insert are decomposed and reordered based on CCC. The compose method can
196 cc := info.ccc
200 if b[n-1].ccc <= cc {
223 // insertFlush inserts the given rune in the buffer ordered by CCC.
239 // insertUnsafe inserts the given rune in the buffer ordered by CCC.
434 cccB := b[k-1].ccc
435 cccC := b[i].ccc
494 cccB := b[k-1].ccc
495 cccC := ii.ccc
496 blocked := false // b[i] blocked by starter or greater or equal CCC
    [all...]
  /cts/suite/audio_quality/test/
TaskTest.cpp 120 const android::String8 CCC("ccc");
121 ASSERT_TRUE(!task->addStringAttributePublic(CCC, bbbVal));
  /device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/MMCHSDxe/
MMCHS.h 99 UINT32 CCC: 12;// Card command classes [95:84]
136 UINT16 CCC: 12;// Card command classes [95:84]
  /device/linaro/bootloader/edk2/Omap35xxPkg/MMCHSDxe/
MMCHS.h 99 UINT32 CCC: 12;// Card command classes [95:84]
136 UINT16 CCC: 12;// Card command classes [95:84]
  /external/clang/include/clang/Sema/
ExternalSemaSource.h 204 CorrectionCandidateCallback &CCC,
MultiplexExternalSemaSource.h 332 CorrectionCandidateCallback &CCC,
SemaInternal.h 113 std::unique_ptr<CorrectionCandidateCallback> CCC,
119 CorrectionValidator(std::move(CCC)), MemberContext(MemberContext),
  /external/clang/test/SemaCXX/
using-decl-1.cpp 128 class CCC { public: void AAA() { } };
129 class DDD : public CCC { public: using typename CCC::AAB; }; // expected-error {{no member named 'AAB' in 'using_suggestion_member_tyname_val::CCC'}}
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Include/
SDCard.h 91 UINT16 CCC: 12; // Card command classes [95:84]
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/IndustryStandard/
SdCard.h 102 UINT16 CCC: 12; // Card command classes [95:84]
  /external/clang/unittests/Sema/
ExternalSemaSourceTest.cpp 110 CorrectionCandidateCallback &CCC,
152 CorrectionCandidateCallback &CCC,
256 NamespaceTypoProvider Second("AAB", "CCC");
258 DiagnosticWatcher Watcher("AAB", "CCC");
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
MultiplexExternalSemaSource.cpp 296 CorrectionCandidateCallback &CCC,
301 if (TypoCorrection C = Sources[I]->CorrectTypo(Typo, LookupKind, S, SS, CCC,

Completed in 1189 milliseconds

1 2 3