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

1234

/external/clang/test/CXX/class/
H A Dp1-0x.cpp4 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'}}
/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/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
H A Ddevirtualize-virtual-function-calls-final.cpp5 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
/external/clang/test/Parser/
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
H A Dcxx0x-override-control-keywords.cpp8 virtual void final() final; member in struct:S
/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/clang/test/CXX/class.derived/class.virtual/
H A Dp3-0x.cpp46 virtual void f() const final; // expected-note {{overridden virtual function is here}} member in struct:Test4::B
50 void f() const; // expected-error {{declaration of 'f' overrides a 'final' function}}
/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,
H A Dm_md4.c80 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
91 final,
H A Dm_md5.c79 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
90 final,
H A Dm_mdc2.c80 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
91 final,
H A Dm_null.c71 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
82 final,
H A Dm_ripemd.c79 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
90 final,
H A Dm_wp.c20 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
31 final,
/external/chromium/chrome/browser/chromeos/
H A Dgoogle_update_chromeos.cc77 GoogleUpdateUpgradeResult final = UPGRADE_ERROR; local
81 final = UPGRADE_ERROR;
84 final = UPGRADE_IS_AVAILABLE;
87 final = UPGRADE_SUCCESSFUL;
90 final = UPGRADE_ALREADY_UP_TO_DATE;
100 &GoogleUpdate::ReportResults, final, success
/external/clang/test/SemaTemplate/
H A Dclass-template-ctor-initializer.cpp52 Final final; local
/external/regex-re2/util/
H A Dhash.cc10 hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final()
28 final(a,b,c);
101 final -- final mixing of 3 32-bit values (a,b,c) into c
124 #define final(a,b,c) \ macro
177 final(a,b,c);
223 final(a,b,c);
/external/webkit/Tools/DumpRenderTree/win/
H A DMD5.cpp56 static finalPtr final() function
74 final()(context);
/external/chromium/chrome/browser/history/
H A Dvisit_database_unittest.cc152 VisitRow final; local
153 GetRowForVisit(original.visit_id, &final);
154 EXPECT_TRUE(IsVisitInfoEqual(modification, final));

Completed in 258 milliseconds

1234