Searched defs:final (Results 1 - 25 of 172) sorted by relevance

1234567

/external/clang/test/CXX/class/
H A Dp1-0x.cpp5 class A final { }; class in namespace:Test1
H A Dp2-0x.cpp4 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 struct in namespace:Test4
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecLatin1.h33 class TextCodecLatin1 final : public TextCodec { class in namespace:WTF
H A DTextCodecUserDefined.h33 class TextCodecUserDefined final : public TextCodec { class in namespace:WTF
H A DTextCodecReplacement.h13 class TextCodecReplacement final : public TextCodecUTF8 { class in namespace:WTF
H A DTextCodecUTF16.h33 class TextCodecUTF16 final : public TextCodec { class in namespace:WTF
/external/clang/test/Index/
H A Dannotate-context-sensitive.cpp6 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
25 // CHECK-OVERRIDE-FINAL: Keyword: "final" [6:15 - 6:20] attribute(final)=
36 // CHECK-OVERRIDE-FINAL: Keyword: "final" [7:29 - 7:34] attribute(final)=
38 // CHECK-OVERRIDE-FINAL: Keyword: "struct" [9:3 - 9:9] StructDecl=final:9:10 (Definition)
39 // CHECK-OVERRIDE-FINAL: Identifier: "final" [9:10 - 9:15] StructDecl=final
[all...]
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_final.pass.cpp18 struct P final { }; struct
20 union U2 final { }; union
H A Dis_polymorphic.pass.cpp56 class Final final { class
/external/llvm/lib/Target/X86/
H A DX86TargetMachine.h25 class X86TargetMachine final : public LLVMTargetMachine { class in namespace:llvm
/external/clang/test/CodeGen/
H A D2003-08-29-BitFieldStruct.c6 int final:1; member in struct:Word
12 word_limit->final = (word_limit->final && word_limit->final);
/external/clang/test/CodeGenCXX/
H A Ddynamic-cast-always-null.cpp3 struct B final : A { }; struct in inherits:A
H A Dderived-to-virtual-base-class-calls-final.cpp7 struct D final : virtual C { struct in inherits:C
/external/clang/test/Parser/
H A Dcxx0x-override-control-keywords.cpp9 virtual void final() final; member in struct:S
H A Dcxx0x-in-cxx98.cpp15 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
/external/llvm/lib/Target/XCore/
H A DXCoreTargetTransformInfo.cpp35 class XCoreTTI final : public ImmutablePass, public TargetTransformInfo { class in namespace:__anon26215
/external/chromium_org/components/domain_reliability/
H A Dutil_unittest.cc30 TimeTicks final = time_.NowTicks(); local
31 EXPECT_EQ(delta, final - initial);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageAnimator.h15 class PageAnimator final : public RefCountedWillBeGarbageCollected<PageAnimator> { class in namespace:blink
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognitionResult.cpp32 SpeechRecognitionResult* SpeechRecognitionResult::create(const HeapVector<Member<SpeechRecognitionAlternative> >& alternatives, bool final) argument
34 return new SpeechRecognitionResult(alternatives, final);
45 SpeechRecognitionResult::SpeechRecognitionResult(const HeapVector<Member<SpeechRecognitionAlternative> >& alternatives, bool final) argument
46 : m_final(final)
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSpeechRecognitionResult.cpp44 void WebSpeechRecognitionResult::assign(const WebVector<WebString>& transcripts, const WebVector<float>& confidences, bool final) argument
52 m_private = SpeechRecognitionResult::create(alternatives, final);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFilePrintStream.h35 class WTF_EXPORT FilePrintStream final : public PrintStream { class in namespace:WTF
/external/clang/test/CXX/class/class.mem/
H A Dp8-0x.cpp9 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 {} // expecte
[all...]
/external/openssl/crypto/evp/
H A Dm_dss.c77 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
88 final,
H A Dm_dss1.c79 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
90 final,
H A Dm_ecdsa.c127 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
138 final,

Completed in 2399 milliseconds

1234567