Searched refs:final (Results 1 - 25 of 149) sorted by relevance

123456

/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/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/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/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/valgrind/main/memcheck/tests/amd64/
H A Dbt_everything.stdout.exp1 MEM-L: final res 0xbb05dc8f69ba36dc, carrydep 0x818f336625f01277
2 REG-L: final res 0xa15f293e, carrydep 0x6082b5e5befc6a40
/external/valgrind/main/none/tests/x86/
H A Dbt_everything.stdout.exp1 MEM-L: final res 0xd2bfea53, carrydep 0x5b80deee
2 REG-L: final res 0x605d78ff, carrydep 0x7c0dc86a
/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
H A Dcxx0x-ambig.cpp5 // 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/openssh/
H A Dmd5crypt.c55 unsigned char final[16]; local
96 MD5_Final(final, &ctx1);
99 MD5_Update(&ctx, final, pl > 16 ? 16 : pl);
102 memset(final, '\0', sizeof final);
107 MD5_Update(&ctx, final + j, 1);
114 MD5_Final(final, &ctx);
126 MD5_Update(&ctx1, final, 16);
135 MD5_Update(&ctx1, final, 16);
139 MD5_Final(final,
[all...]
/external/valgrind/main/nightly/bin/
H A Dnightly69 # This is one of the formats SVN accepts. Yes, the 'T' appears in the final
95 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose
199 echo "valgrind revision: $valgrind_revision" > final
200 echo "VEX revision: $vex_revision" >> final
201 echo "GCC version: $gcc_version" >> final
202 echo "C library: $libc" >> final
203 echo "uname -mrs: $uname_stuff" >> final
204 echo "Vendor version: $vendor_stuff" >> final
206 # 'final' shows the difference between the old and new results
207 echo >> final
[all...]
/external/clang/test/CXX/class.derived/class.virtual/
H A Dp3-0x.cpp52 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
[all...]
/external/clang/test/CodeGenCXX/
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
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
147 struct C final : A, B { }; struct in namespace:Test8
170 struct RC final : public RA { struct in namespace:Test9
H A Dderived-to-virtual-base-class-calls-final.cpp7 struct D final : virtual C { struct in inherits:C
H A Ddynamic-cast-always-null.cpp3 struct B final : A { }; struct in inherits:A
/external/openssl/crypto/evp/
H A Dm_null.c71 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
82 final,
H A Dm_ecdsa.c127 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
138 final,
H A Dm_wp.c20 static int final(EVP_MD_CTX *ctx,unsigned char *md) function
31 final,
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_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,
/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/llvm/utils/
H A Dfindmisopt150 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"

Completed in 337 milliseconds

123456