OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:definition
(Results
26 - 50
of
10154
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/compile/slang/tests/F_one_definition_rule2/
stderr.txt.expect
1
error: type 'DifferentDefinition2' in different translation unit (def2.rs v.s. def1.rs) has incompatible type
definition
/frameworks/compile/slang/tests/F_one_definition_rule3/
stderr.txt.expect
1
error: type 'DifferentDefinition3' in different translation unit (def2.rs v.s. def1.rs) has incompatible type
definition
/frameworks/compile/slang/tests/F_one_definition_rule4/
stderr.txt.expect
1
error: type 'DifferentDefinition4' in different translation unit (def2.rs v.s. def1.rs) has incompatible type
definition
/frameworks/compile/slang/tests/F_one_definition_rule5/
stderr.txt.expect
1
error: type 'DifferentDefinition5' in different translation unit (def2.rs v.s. def1.rs) has incompatible type
definition
/frameworks/compile/slang/tests/F_one_definition_rule6/
stderr.txt.expect
1
error: type 'DifferentDefinition6' in different translation unit (def2.rs v.s. def1.rs) has incompatible type
definition
/frameworks/compile/slang/tests/F_one_definition_rule7/
stderr.txt.expect
1
error: type 'DifferentDefinition7' in different translation unit (def2.rs v.s. def1.rs) has incompatible type
definition
/frameworks/compile/slang/tests/F_one_definition_rule8/
stderr.txt.expect
1
error: type 'DifferentDefinition8' in different translation unit (def2.rs v.s. def1.rs) has incompatible type
definition
/frameworks/compile/slang/tests/P_redefine_RS_VERSION/
stderr.txt.expect
2
<built-in>:1:9: note: previous
definition
is here
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
start-2.d
4
#error: Bad symbol
definition
: `Main' set to
/external/chromium-trace/catapult/docs/
trace-event-format.md
4
[Trace Event Format
Definition
](https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU/edit?usp=sharing Trace Event Format
Definition
)
/external/clang/test/Modules/Inputs/
cxx-irgen-right.h
7
// Trigger declaration, but not
definition
, of special members.
9
// Trigger
definition
of move constructor.
/external/clang/test/Sema/
attr-decl-after-definition.c
6
void foo(){} // expected-note {{previous
definition
is here}}
7
void foo() __attribute__((constructor)); // expected-warning {{must precede
definition
}}
16
int bar = 0; // expected-note {{previous
definition
is here}}
20
visibility("hidden"))); // expected-warning {{must precede
definition
}}
23
struct zed { // expected-note {{previous
definition
is here}}
25
struct __attribute__((visibility("hidden"))) zed; // expected-warning {{must precede
definition
}}
31
struct __attribute__((visibility("hidden"))) zed3 { // expected-note {{previous
definition
is here}}
34
packed // expected-warning {{must precede
definition
}}
/external/llvm/test/MC/COFF/
invalid-def.s
3
# CHECK: error: starting a new symbol
definition
without completing the previous one
4
# CHECK: error: starting a new symbol
definition
without completing the previous one
invalid-endef.s
3
# CHECK: ending symbol
definition
without starting one
4
# CHECK: ending symbol
definition
without starting one
invalid-scl.s
3
# CHECK: storage class specified outside of symbol
definition
4
# CHECK: storage class specified outside of symbol
definition
invalid-type.s
3
# CHECK: symbol type specified outside of a symbol
definition
4
# CHECK: symbol type specified outside of a symbol
definition
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
prefix3.s
1
% Check that changing prefixes between the GREG
definition
, its use and
2
% the end of the assembly file does not change the GREG
definition
.
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
p10.cpp
28
template struct X0<int>; // expected-note 4{{explicit instantiation
definition
is here}}
30
extern template void X0<int>::f(int&); // expected-error{{follows explicit instantiation
definition
}}
31
extern template struct X0<int>::Inner; // expected-error{{follows explicit instantiation
definition
}}
32
extern template int X0<int>::static_var; // expected-error{{follows explicit instantiation
definition
}}
33
extern template struct X0<int>; // expected-error{{follows explicit instantiation
definition
}}
/external/clang/test/CodeGenCXX/
duplicate-mangled-name.cpp
12
void _ZN7MyClass4methEv() { } // expected-error {{
definition
with same mangled name as another
definition
}}
28
extern "C" void _ZN2T2D2Ev() {}; // expected-note {{previous
definition
is here}}
31
~T2() {} // expected-error {{
definition
with same mangled name as another
definition
}}
/external/clang/test/Misc/
verify.c
6
struct s s1; // expected-error {{tentative
definition
has type 'struct s' that is never completed}}
7
struct s s2; // expected-error {{tentative
definition
has type}}
10
struct s r1; // expected-error {{tentative
definition
has type 'struct s' that is never completed}}
11
struct s r2; // expected-error-re {{tentative
definition
has type '{{.*[[:space:]]*.*}}' that is never completed}}
12
struct s r3; // expected-error-re {{tentative
definition
has type '{{(.*)[[:space:]]*(.*)}}' that is never completed}}
/external/clang/test/SemaCXX/
static-data-member.cpp
13
extern double ABC::b = 1.0; // expected-error {{static data member
definition
cannot specify a storage class}}
14
static double ABC::c = 1.0; // expected-error {{'static' can only be specified inside the class
definition
}}
15
__private_extern__ double ABC::d = 1.0; // expected-error {{static data member
definition
cannot specify a storage class}}
16
auto double ABC::e = 1.0; // expected-error {{static data member
definition
cannot specify a storage class}}
17
register double ABC::f = 1.0; // expected-error {{static data member
definition
cannot specify a storage class}}
/external/clang/test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/
p1.cpp
12
template<typename T> concept bool D1(); // expected-error {{function concept declaration must be a
definition
}}
22
concept bool D4() { return true; } // expected-error {{'concept' can only appear on the
definition
of a function template or variable template}}
24
concept bool D5 = true; // expected-error {{'concept' can only appear on the
definition
of a function template or variable template}}
33
concept class CC1 {}; // expected-error {{'concept' can only appear on the
definition
of a function template or variable template}}
34
concept struct CS1 {}; // expected-error {{'concept' can only appear on the
definition
of a function template or variable template}}
35
concept union CU1 {}; // expected-error {{'concept' can only appear on the
definition
of a function template or variable template}}
36
concept enum CE1 {}; // expected-error {{'concept' can only appear on the
definition
of a function template or variable template}}
37
template <typename T> concept class TCC1 {}; // expected-error {{'concept' can only appear on the
definition
of a function template or variable template}}
38
template <typename T> concept struct TCS1 {}; // expected-error {{'concept' can only appear on the
definition
of a function template or variable template}}
39
template <typename T> concept union TCU1 {}; // expected-error {{'concept' can only appear on the
definition
of a function template or variable template}
[
all
...]
/external/antlr/antlr-3.4/runtime/C/doxygen/
doxygengroups.dox
61
/// \defgroup ANTLR3_BASE_RECOGNIZER ANTLR3_BASE_RECOGNIZER - Base Recognizer Class
Definition
64
/// This is the
definition
of the base recognizer interface, instantiations
71
/// \defgroup ANTLR3_RECOGNIZER_SHARED_STATE ANTLR3_RECOGNIZER_SHARED_STATE Recognizer Shared State Class
Definition
73
/// \defgroup ANTLR3_BITSET ANTLR3_BITSET - Bitset Class
Definition
75
/// \defgroup ANTLR3_TOKEN_FACTORY ANTLR3_TOKEN_FACTORY - Token Factory Class
Definition
77
/// \defgroup ANTLR3_COMMON_TOKEN ANTLR3_COMMON_TOKEN - Common Token Class
Definition
79
/// \defgroup ANTLR3_EXCEPTION ANTLR3_EXCEPTION - Exception Class
Definition
81
/// \defgroup ANTLR3_HASH_BUCKET ANTLR3_HASH_BUCKET - Hash Table Bucket Class
Definition
83
/// \defgroup ANTLR3_HASH_ENTRY ANTLR3_HASH_ENTRY - Hash Table Entry Class
Definition
85
/// \defgroup ANTLR3_HASH_ENUM ANTLR3_HASH_ENUM - Hash Table Enumerator Class
Definition
[
all
...]
/external/clang/test/Index/
annotate-tokens-preamble.c
10
// CHECK: Keyword: "void" [3:1 - 3:5] FunctionDecl=f:3:6 (
Definition
)
11
// CHECK: Identifier: "f" [3:6 - 3:7] FunctionDecl=f:3:6 (
Definition
)
12
// CHECK: Punctuation: "(" [3:7 - 3:8] FunctionDecl=f:3:6 (
Definition
)
13
// CHECK: Keyword: "void" [3:8 - 3:12] ParmDecl=ptr:3:14 (
Definition
)
14
// CHECK: Punctuation: "*" [3:13 - 3:14] ParmDecl=ptr:3:14 (
Definition
)
15
// CHECK: Identifier: "ptr" [3:14 - 3:17] ParmDecl=ptr:3:14 (
Definition
)
16
// CHECK: Punctuation: ")" [3:17 - 3:18] FunctionDecl=f:3:6 (
Definition
)
annotate-tokens-with-default-args.cpp
6
// CHECK: Keyword: "void" [3:1 - 3:5] CXXMethod=m:3:11 (
Definition
)
8
// CHECK: Punctuation: "::" [3:9 - 3:11] CXXMethod=m:3:11 (
Definition
)
9
// CHECK: Identifier: "m" [3:11 - 3:12] CXXMethod=m:3:11 (
Definition
)
10
// CHECK: Punctuation: "(" [3:12 - 3:13] CXXMethod=m:3:11 (
Definition
)
12
// CHECK: Punctuation: "*" [3:17 - 3:18] ParmDecl=f:3:18 (
Definition
)
13
// CHECK: Identifier: "f" [3:18 - 3:19] ParmDecl=f:3:18 (
Definition
)
14
// CHECK: Punctuation: ")" [3:19 - 3:20] CXXMethod=m:3:11 (
Definition
)
Completed in 602 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>