Searched refs:AAA (Results 1 - 22 of 22) sorted by relevance

/external/compiler-rt/test/tsan/
H A Dvirtual_inheritance_compile_bug.cc6 struct AAA { virtual long aaa () { return 0; } }; // NOLINT struct
7 struct BBB: virtual AAA { unsigned long bbb; }; // NOLINT
8 struct CCC: virtual AAA { };
/external/clang/test/Index/
H A Doverriding-ftemplate-comments.cpp12 /// \param AAA Blah blah
14 void comment_to_html_conversion_17(T AAA);
16 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_17</Name><USR>c:@FT@&gt;1#Tcomment_to_html_conversion_17#t0.0#</USR><Declaration>template &lt;typename T&gt; void comment_to_html_conversion_17(T AAA)</Declaration><Parameters><Parameter><Name>AAA</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah</Para></Discussion></Parameter></Parameters></Function>]
26 /// \tparam AAA Aaa
27 template<typename AAA, typename BBB>
28 void comment_to_html_conversion_19(AAA aaa, BBB bbb);
30 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_19</Name><USR>c:@FT@&gt;2#T#Tcomment_to_html_conversion_19#t0.0#t0.1#</USR><Declaration>template &lt;typename AAA, typename BBB&gt;\nvoid comment_to_html_conversion_19(AAA aaa, BBB bbb)</Declaration><TemplateParameters><Parameter><Name>AAA</Nam
[all...]
H A Dcomment-cplus-template-decls.cpp62 /// \param AAA Blah blah
64 void func_template_1(T AAA);
65 // CHECK: <Declaration>template &lt;typename T&gt; void func_template_1(T AAA)</Declaration>
67 template<template<template<typename CCC> class DDD, class BBB> class AAA>
/external/clang/test/FixIt/
H A Dtypo-using.cpp11 namespace N { class AAA {}; } // expected-note {{'AAA' declared here}} class in namespace:using_suggestion_ty::N
12 using N::AAB; // expected-error {{no member named 'AAB' in namespace 'using_suggestion_ty::N'; did you mean 'AAA'?}}
16 namespace N { class AAA {}; } // expected-note {{'AAA' declared here}} class in namespace:using_suggestion_tyname_ty::N
17 using typename N::AAB; // expected-error {{no member named 'AAB' in namespace 'using_suggestion_tyname_ty::N'; did you mean 'AAA'?}}
44 class CCC { public: typedef int AAA; }; // expected-note {{'AAA' declared here}} typedef in class:using_suggestion_member_ty::CCC
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() { } }; // expecte function in class:using_suggestion_member_val::CCC
54 class CCC { public: typedef int AAA; }; // expected-note {{'AAA' declared here}} typedef in class:using_suggestion_member_tyname_ty::CCC
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dstack-buffer-overflow-with-position.cc23 char AAA[10], BBB[10], CCC[10]; local
24 memset(AAA, 0, sizeof(AAA));
28 char *p = AAA + idx;
29 printf("AAA: %p\ny: %p\nz: %p\np: %p\n", AAA, BBB, CCC, p);
33 // CHECK-m2: 'AAA' <== {{.*}}underflows this variable
34 // CHECK-m1: 'AAA' <== {{.*}}partially underflows this variable
35 // CHECK-9: 'AAA' <== {{.*}}partially overflows this variable
36 // CHECK-10: 'AAA' <
[all...]
/external/clang/test/Frontend/
H A Dverify.c44 #error AAA // expected-error {{BBB}} <- this shall be part of diagnostic
56 // CHECK2-NEXT: Line 44: AAA // expected-error {{[{][{]BBB[}][}]}} <- this shall be part of diagnostic
/external/clang/test/CodeGenCXX/
H A Dthunk-use-after-free.cpp36 template < class SSS, class GGG = EEE < SSS > >class AAA:FFF <GGG> { }; class in inherits:FFF
41 class ZZZ:AAA < Data >, BBB { virtual ZZZ *ppp () ; };
H A Ddebug-info-use-after-free.cpp123 template < class SSS, class GGG = EEE < SSS > >class AAA:FFF <GGG> { }; class in inherits:FFF
128 class ZZZ:AAA < Data >, BBB { virtual ZZZ *ppp () ; };
235 AAA { class in namespace:__anon18831
237 AAA () {
258 AAA {
/external/clang/test/SemaCXX/
H A Dusing-decl-1.cpp130 class CCC { public: void AAA() { } }; function in class:using_suggestion_member_tyname_val::CCC
143 class AAA {}; // expected-note {{'N::AAA' declared here}} class in namespace:using_suggestion_ty_dropped_nested_specifier::N
146 using N::M::AAA; // expected-error {{no member named 'AAA' in namespace 'using_suggestion_ty_dropped_nested_specifier::N::M'; did you mean 'N::AAA'?}}
151 class AAA {}; // expected-note {{'N::AAA' declared here}} class in namespace:using_suggestion_tyname_ty_dropped_nested_specifier::N
154 using typename N::M::AAA; // expected-error {{no member named 'AAA' i
[all...]
H A DMicrosoftExtensions.cpp120 class AAA { class
125 __declspec(dllimport) void AAA::f2(void) { // expected-error{{dllimport cannot be applied to non-inline function definition}}
126 // expected-error@-1{{redeclaration of 'AAA::f2' cannot add 'dllimport' attribute}}
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dslow.css16 border: 1px solid #AAA;
19 box-shadow: 0 2px 2px #AAA;
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dsizeofpack.cpp39 struct AAA { struct in namespace:pr12262
45 array<2> arr2 = AAA<int, int>::make_array<int>(1,2);
/external/chromium_org/chrome/common/extensions/docs/examples/api/browsingData/basic/
H A Dpopup.css38 border: 1px solid #AAA;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DsourcesPanel.css163 border-bottom: 1px solid #AAA;
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/styles/
H A Dstyle.css388 color: #AAA;
/external/chromium_org/remoting/webapp/
H A Dmain.css552 color: #AAA;
/external/chromium_org/v8/test/mjsunit/third_party/
H A Dregexp-pcre.js493 res[414] = /[\E]AAA/;
494 res[415] = /[\Q\E]AAA/;
495 res[416] = /[^\E]AAA/;
496 res[417] = /[^\Q\E]AAA/;
497 res[418] = /[\E^]AAA/;
498 res[419] = /[\Q\E^]AAA/;
4446 assertToStringEquals("AAA", res[911].exec("AAAaAbc"), 2798);
/external/chromium_org/third_party/accessibility-audit/
H A Daxs_testing.js736 axs.utils.isLowContrast(c, d, !0) && 1 >= n && 0 <= n && (n = axs.utils.translateColor(q, n), l = axs.utils.calculateContrastRatio(n, a), f = {}, f.fg = axs.utils.colorToString(n), f.bg = axs.utils.colorToString(a), f.contrast = l.toFixed(2), e.AAA = f);
741 !("AAA" in e) && axs.utils.isLowContrast(c, d, !0) && 1 >= g && 0 <= g && (c = axs.utils.translateColor(a, g), l = axs.utils.calculateContrastRatio(b, c), f = {}, f.bg = axs.utils.colorToString(c), f.fg = axs.utils.colorToString(b), f.contrast = l.toFixed(2), e.AAA = f);
/external/chromium_org/third_party/mesa/src/src/mesa/x86/
H A Dassyntax.h380 #define AAA CHOICE(aaa, aaa, aaa) macro
1116 #define AAA aaa macro
/external/mesa3d/src/mesa/x86/
H A Dassyntax.h380 #define AAA CHOICE(aaa, aaa, aaa) macro
1116 #define AAA aaa macro
/external/chromium_org/tools/findit/common/
H A Dcacert.pem818 Comodo AAA Services root
/external/srec/config/en.us/dictionary/
H A Dc0.6114 AAA T R IH2 P AH0 L EY1
[all...]

Completed in 828 milliseconds