/external/clang/test/CXX/class/ |
p1-0x.cpp | 5 class A final { }; class in namespace:Test1
|
p2-0x.cpp | 4 class A final { }; // expected-note {{'A' declared here}} class in namespace:Test1 5 class B : A { }; // expected-error {{base 'A' is marked 'final'}} 11 template<typename T> struct A final { }; // expected-note 2 {{'A' declared here}} struct in namespace:Test2 12 struct B : A<int> { }; // expected-error {{base 'A' is marked 'final'}} 14 template<typename T> struct C : A<T> { }; // expected-error {{base 'A' is marked 'final'}} 22 template<> struct A<int> final { }; // expected-note {{'A' declared here}} struct in namespace:Test3 25 struct C : A<int> { }; // expected-error {{base 'A' is marked 'final'}} 31 struct A final { virtual void func() = 0; }; // expected-warning {{abstract class is marked 'final'}} expected-note {{unimplemented pure virtual method 'func' in 'A'}} struct in namespace:Test4 34 struct C final : B { }; // expected-warning {{abstract class is marked 'final'} struct in namespace:Test4 [all...] |
/external/clang/test/CodeGen/ |
2003-08-29-BitFieldStruct.c | 6 int final:1; member in struct:Word 12 word_limit->final = (word_limit->final && word_limit->final);
|
/external/clang/test/CXX/class/class.mem/ |
p8-0x.cpp | 9 virtual void h() final final; // expected-error {{class member already marked 'final'}} member in struct:A 25 virtual void f() final; member in struct:C 26 void g() final; // expected-error {{only virtual member functions can be marked 'final'}} member in struct:C 27 int h final; // expected-error {{only virtual member functions can be marked 'final'}} member in struct:C 37 virtual void h() final final {} // expected-error {{class member already marked 'final'} [all...] |
/external/clang/test/Index/ |
annotate-context-sensitive.cpp | 6 class Derived final : public Base { class in inherits:Base 7 virtual void f() override final; member in class:final 9 struct final { }; struct in class:final 21 // RUN: c-index-test -test-annotate-tokens=%s:6:1:19:1 %s | FileCheck -check-prefix=CHECK-OVERRIDE-FINAL %s 23 // CHECK-OVERRIDE-FINAL: Keyword: "class" [6:1 - 6:6] ClassDecl=Derived:6:7 (Definition) 24 // CHECK-OVERRIDE-FINAL: Identifier: "Derived" [6:7 - 6:14] ClassDecl=Derived:6:7 (Definition) 25 // CHECK-OVERRIDE-FINAL: Keyword: "final" [6:15 - 6:20] attribute(final)= 26 // CHECK-OVERRIDE-FINAL: Punctuation: ":" [6:21 - 6:22] ClassDecl=Derived:6:7 (Definition [all...] |
/external/clang/test/Parser/ |
cxx0x-override-control-keywords.cpp | 9 virtual void final() final; member in struct:S
|
cxx0x-in-cxx98.cpp | 15 struct D final : B { // expected-warning {{'final' keyword is a C++11 extension}} struct in inherits:B 17 virtual void g() final; // expected-warning {{'final' keyword is a C++11 extension}} member in struct:final
|
cxx0x-ambig.cpp | 5 // final 'context sensitive' mess. 6 namespace final { namespace 11 // These declare variables named final.. 12 extern struct S final; 13 extern struct S final [[]]; 14 extern struct S final, foo; 15 struct S final = S(); member in namespace:final::N 21 struct S final { // expected-note {{here}} struct in namespace:final::N 25 struct T final : S {}; // expected-error {{base 'S' is marked 'final'}} struct in namespace:final::N [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/speech/ |
SpeechRecognitionResult.cpp | 32 SpeechRecognitionResult* SpeechRecognitionResult::create(const HeapVector<Member<SpeechRecognitionAlternative> >& alternatives, bool final) 34 return new SpeechRecognitionResult(alternatives, final); 45 SpeechRecognitionResult::SpeechRecognitionResult(const HeapVector<Member<SpeechRecognitionAlternative> >& alternatives, bool final) 46 : m_final(final)
|
SpeechRecognitionResult.h | 35 class SpeechRecognitionResult FINAL : public GarbageCollected<SpeechRecognitionResult>, public ScriptWrappable { 38 static SpeechRecognitionResult* create(const HeapVector<Member<SpeechRecognitionAlternative> >&, bool final); 47 SpeechRecognitionResult(const HeapVector<Member<SpeechRecognitionAlternative> >&, bool final);
|
/external/clang/test/FixIt/ |
fixit-cxx11-attributes.cpp | 20 alignas(float) [[]] final // expected-error {{an attribute list cannot appear here}} 28 [[]] [[]] alignas(16) final // expected-error {{an attribute list cannot appear here}}
|
/external/clang/test/CodeGenCXX/ |
devirtualize-virtual-function-calls-final.cpp | 5 virtual int f() final; member in struct:Test1::A 16 struct A final { struct in namespace:Test2 32 struct B final : A { }; struct in namespace:Test3 58 struct B final : A { struct in namespace:Test4 78 struct C final : B { struct in namespace:Test5 105 struct D final : public C, public B { struct in namespace:Test6 124 struct zed final : public foo, public bar { struct in namespace:Test7 146 struct C final : A, B { }; struct in namespace:Test8 169 struct RC final : public RA { struct in namespace:Test9
|
derived-to-virtual-base-class-calls-final.cpp | 7 struct D final : virtual C { struct in inherits:C
|
dynamic-cast-always-null.cpp | 3 struct B final : A { }; struct in inherits:A
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodecReplacement.h | 13 class TextCodecReplacement final : public TextCodecUTF8 { class in namespace:WTF
|
/external/eigen/bench/btl/generic_bench/timers/ |
STL_timer.hh | 51 final = time(0); 52 if (initial < final) { 54 initial = final; 69 // For saving initial and final times of a trial 70 time_t initial, final; member in class:STL_Timer
|
/external/clang/test/CXX/class.derived/class.virtual/ |
p3-0x.cpp | 52 virtual void f() const final; // expected-note {{overridden virtual function is here}} member in struct:Test4::B 56 void f() const; // expected-error {{declaration of 'f' overrides a 'final' function}} 68 void h() final; member in struct:PR13499::A 72 void i() final; // expected-error {{only virtual member functions can be marked 'final'}} member in struct:PR13499::B 77 void i() final; member in struct:PR13499::C 81 virtual void i() final; member in struct:PR13499::D 86 void h(T...) final; member in struct:PR13499::E 87 void i(T...) final; // expected-error {{only virtual member functions can be marked 'final'}} member in struct:PR13499::E 94 void h() final; member in struct:PR13499::Y 98 void i() final; \/\/ expected-error {{only virtual member functions can be marked 'final'}} member in struct:PR13499::Z 126 virtual void f() final; member in struct:MemberOfUnknownSpecialization::A::B 145 void bar(long double) final; \/\/ expected-error {{non-virtual member function marked 'final' hides virtual member functions}} member in struct:DiagnosticsQOI::Y [all...] |
/external/openssl/crypto/evp/ |
m_null.c | 71 static int final(EVP_MD_CTX *ctx,unsigned char *md) function 82 final,
|
m_ecdsa.c | 127 static int final(EVP_MD_CTX *ctx,unsigned char *md) function 138 final,
|
m_wp.c | 20 static int final(EVP_MD_CTX *ctx,unsigned char *md) function 31 final,
|
/external/jemalloc/test/unit/ |
hash.c | 68 VARIABLE_ARRAY(uint8_t, final, hashbytes); 74 memset(final, 0, sizeof(final)); 106 memcpy(final, &out, sizeof(out)); 111 memcpy(final, out, sizeof(out)); 116 memcpy(final, out, sizeof(out)); 121 computed = (final[0] << 0) | (final[1] << 8) | (final[2] << 16) | 122 (final[3] << 24) [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebSpeechRecognitionResult.cpp | 44 void WebSpeechRecognitionResult::assign(const WebVector<WebString>& transcripts, const WebVector<float>& confidences, bool final) 52 m_private = SpeechRecognitionResult::create(alternatives, final);
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebSpeechRecognitionResult.h | 44 BLINK_EXPORT void assign(const WebVector<WebString>& transcripts, const WebVector<float>& confidences, bool final);
|
/external/chromium_org/v8/src/base/ |
compiler-specific.h | 36 // class B FINAL : public A {}; 37 // virtual void bar() FINAL; 39 #define FINAL final 41 #define FINAL __final 43 #define FINAL sealed 45 #define FINAL /* NOT SUPPORTED */
|
/external/llvm/utils/ |
findmisopt | 150 final="" 155 tryit "$final $switches" 161 final="$final $trimmed" 167 if [ "$final" == " $all_switches" ] ; then 171 echo "Smallest Optimization list=$final" 173 bpcmd="$bugpoint -run-llc -disable-loop-extraction --output "$out" --input /dev/null $bcfile $final --args $args"
|