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

123456789

/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/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/Preprocessor/
H A Dmacro-reserved-cxx11.cpp4 #define final 1 // expected-warning {{keyword is hidden by macro definition}} macro
H A Dmacro-reserved.c4 #define final 1 macro
11 #undef final macro
52 #define final 1 macro
59 #undef final macro
H A Dmacro-reserved.cpp4 #define final 1 macro
10 #undef final macro
54 #define final 1 macro
/external/clang/test/OpenMP/
H A Dtask_final_messages.cpp14 #pragma omp task final // expected-error {{expected '(' after 'final'}}
15 #pragma omp task final ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
16 #pragma omp task final () // expected-error {{expected expression}}
17 #pragma omp task final (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp task final (argc)) // expected-warning {{extra tokens at the end of '#pragma omp task' are ignored}}
19 #pragma omp task final (argc > 0 ? argv[1] : argv[2])
20 #pragma omp task final (foobool(argc)), final (true) // expected-error {{directive '#pragma omp task' cannot contain more than one 'final' claus
[all...]
H A Dtask_codegen.cpp56 #pragma omp task final(true)
65 #pragma omp task final(flag)
77 #pragma omp task final(b)
/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/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/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/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/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
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/clang/test/FixIt/
H A Dfixit-cxx11-attributes.cpp20 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/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.cpp9 virtual void final() final; member in struct:S
/external/valgrind/nightly/bin/
H A Dnightly78 # This is one of the formats SVN accepts. Yes, the 'T' appears in the final
104 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose
235 echo "valgrind revision: $valgrind_revision" > final
236 echo "VEX revision: $vex_revision" >> final
237 echo "C compiler: $gcc_version" >> final
238 echo "GDB: $gdb_version" >> final
239 echo "Assembler: $as_version" >> final
240 echo "C library: $libc" >> final
241 echo "uname -mrs: $uname_stuff" >> final
242 echo "Vendor version: $vendor_stuff" >> final
[all...]
/external/clang/test/CodeGenCXX/
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
59 struct B final : A { struct in namespace:Test4
84 struct C final : B { struct in namespace:Test5
120 struct D final : public C, public B { struct in namespace:Test6
139 struct zed final : public foo, public bar { struct in namespace:Test7
161 struct C final : A, B { }; struct in namespace:Test8
187 struct RC final : public RA { struct in namespace:Test9
/external/eigen/bench/btl/generic_bench/timers/
H A DSTL_timer.hh51 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/llvm/include/llvm/MC/
H A DMCAsmInfoELF.h18 const MCSection *getNonexecutableStackSection(MCContext &Ctx) const final; member in class:llvm::MCAsmInfoELF
/external/zopfli/src/zopfli/
H A Ddeflate.h37 This function will usually output multiple deflate blocks. If final is 1, then
38 the final bit will be set on the last block.
45 final: whether this is the last section of the input, sets the final bit to the
57 void ZopfliDeflate(const ZopfliOptions* options, int btype, int final,
66 void ZopfliDeflatePart(const ZopfliOptions* options, int btype, int final,
/external/jemalloc/test/unit/
H A Dhash.c68 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[
[all...]
/external/clang/test/Analysis/
H A Dvirtualcall.cpp55 int foo() final; member in class:D
56 void bar() final { foo(); } // no-warning
59 class E final : public B { class in inherits:B

Completed in 571 milliseconds

123456789