OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:final
(Results
1 - 25
of
1713
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/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/Preprocessor/
macro-reserved-cxx11.cpp
5
#define
final
1 // expected-warning {{keyword is hidden by macro definition}}
macro
macro-reserved.c
4
#define
final
1
macro
11
#undef
final
macro
52
#define
final
1
macro
59
#undef
final
macro
/external/clang/test/OpenMP/
task_final_messages.cpp
14
#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
' clause}
[
all
...]
taskloop_final_messages.cpp
14
#pragma omp taskloop
final
// expected-error {{expected '(' after '
final
'}}
17
#pragma omp taskloop
final
( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20
#pragma omp taskloop
final
() // expected-error {{expected expression}}
23
#pragma omp taskloop
final
(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
26
#pragma omp taskloop
final
(argc)) // expected-warning {{extra tokens at the end of '#pragma omp taskloop' are ignored}}
29
#pragma omp taskloop
final
(argc > 0 ? argv[1] : argv[2])
32
#pragma omp taskloop
final
(foobool(argc)),
final
(true) // expected-error {{directive '#pragma omp taskloop' cannot contain more than one '
final
' clause}
[
all
...]
taskloop_simd_final_messages.cpp
14
#pragma omp taskloop simd
final
// expected-error {{expected '(' after '
final
'}}
17
#pragma omp taskloop simd
final
( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20
#pragma omp taskloop simd
final
() // expected-error {{expected expression}}
23
#pragma omp taskloop simd
final
(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
26
#pragma omp taskloop simd
final
(argc)) // expected-warning {{extra tokens at the end of '#pragma omp taskloop simd' are ignored}}
29
#pragma omp taskloop simd
final
(argc > 0 ? argv[1] : argv[2])
32
#pragma omp taskloop simd
final
(foobool(argc)),
final
(true) // expected-error {{directive '#pragma omp taskloop simd' cannot contain more than one '
final
' clause}
[
all
...]
/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/v8/src/compiler/
js-context-relaxation.h
20
class JSContextRelaxation
final
: public Reducer {
class in namespace:v8::internal::compiler
23
~JSContextRelaxation()
final
{}
25
Reduction Reduce(Node* node)
final
;
member in class:v8::internal::compiler::final
load-elimination.h
14
class LoadElimination
final
: public AdvancedReducer {
class in namespace:v8::internal::compiler
17
~LoadElimination()
final
;
member in class:v8::internal::compiler::final
19
Reduction Reduce(Node* node)
final
;
member in class:v8::internal::compiler::final
/external/llvm/lib/Target/WebAssembly/
WebAssemblySelectionDAGInfo.h
23
class WebAssemblySelectionDAGInfo
final
: public TargetSelectionDAGInfo {
class in namespace:llvm
WebAssemblyTargetObjectFile.h
23
class WebAssemblyTargetObjectFile
final
: public TargetLoweringObjectFileELF {
class in namespace:llvm
/external/valgrind/memcheck/tests/amd64/
bt_everything.stdout.exp
1
MEM-L:
final
res 0xf7fadd6c64517c70, carrydep 0x8176a65abd735847
2
REG-L:
final
res 0x35c459ff, carrydep 0x5d837ee10c6c390
/external/valgrind/none/tests/x86/
bt_everything.stdout.exp
1
MEM-L:
final
res 0x2e9fc392, carrydep 0x23a9479e
2
REG-L:
final
res 0x46a4bd35, carrydep 0xddfae2da
/prebuilts/go/darwin-x86/doc/articles/wiki/
test.bash
16
rm -f test_*.out Test.txt
final
-test.go
final
-test.bin
final
-test-port.txt a.out get.bin
20
rm -f get.bin
final
-test.bin a.out
30
cp
final
.go
final
-test.go
31
patch
final
-test.go
final
-test.patch > /dev/null
32
go build -o
final
-test.bin
final
-test.g
[
all
...]
/prebuilts/go/linux-x86/doc/articles/wiki/
test.bash
16
rm -f test_*.out Test.txt
final
-test.go
final
-test.bin
final
-test-port.txt a.out get.bin
20
rm -f get.bin
final
-test.bin a.out
30
cp
final
.go
final
-test.go
31
patch
final
-test.go
final
-test.patch > /dev/null
32
go build -o
final
-test.bin
final
-test.g
[
all
...]
/hardware/libhardware/modules/input/evdev/
InputMapper.h
68
virtual void setInputReportDefinition(InputReportDefinition* reportDef)
final
{
71
virtual void setOutputReportDefinition(InputReportDefinition* reportDef)
final
{
74
virtual InputReportDefinition* getInputReportDefinition()
final
{ return mInputReportDef; }
75
virtual InputReportDefinition* getOutputReportDefinition()
final
{ return mOutputReportDef; }
76
virtual InputDeviceHandle* getDeviceHandle()
final
{ return mDeviceHandle; }
77
virtual InputReport* getInputReport()
final
;
member in class:android::InputMapper
/external/llvm/include/llvm/MC/
MCAsmInfoELF.h
18
MCSection *getNonexecutableStackSection(MCContext &Ctx) const
final
;
member in class:llvm::MCAsmInfoELF
/external/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyMCAsmInfo.h
24
class WebAssemblyMCAsmInfo
final
: public MCAsmInfoELF {
class in namespace:llvm
/external/v8/src/base/
sys-info.h
14
class SysInfo
final
{
class in namespace:v8::base
/packages/inputmethods/LatinIME/native/dicttoolkit/src/command_executors/
help_executor.h
25
class HelpExecutor
final
{
class in namespace:latinime::dicttoolkit
/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/Parser/
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
Completed in 1890 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>