OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:definition
(Results
1 - 25
of
4362
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/stlport/test/unit/
macro_checks.cpp
6
# error Missing CHAR_BIT
definition
.
14
# error Missing CHAR_MAX
definition
.
18
# error Missing CHAR_MIN
definition
.
26
# error Missing INT_MAX
definition
.
30
# error Missing INT_MIN
definition
.
38
# error Missing LONG_MAX
definition
.
42
# error Missing LONG_MIN
definition
.
50
# error Missing SCHAR_MAX
definition
.
54
# error Missing SCHAR_MIN
definition
.
62
# error Missing SHRT_MAX
definition
[
all
...]
/ndk/tests/device/test-gnustl-full/unit/
macro_checks.cpp
6
# error Missing CHAR_BIT
definition
.
14
# error Missing CHAR_MAX
definition
.
18
# error Missing CHAR_MIN
definition
.
26
# error Missing INT_MAX
definition
.
30
# error Missing INT_MIN
definition
.
38
# error Missing LONG_MAX
definition
.
42
# error Missing LONG_MIN
definition
.
50
# error Missing SCHAR_MAX
definition
.
54
# error Missing SCHAR_MIN
definition
.
62
# error Missing SHRT_MAX
definition
[
all
...]
/ndk/tests/device/test-stlport/unit/
macro_checks.cpp
6
# error Missing CHAR_BIT
definition
.
14
# error Missing CHAR_MAX
definition
.
18
# error Missing CHAR_MIN
definition
.
26
# error Missing INT_MAX
definition
.
30
# error Missing INT_MIN
definition
.
38
# error Missing LONG_MAX
definition
.
42
# error Missing LONG_MIN
definition
.
50
# error Missing SCHAR_MAX
definition
.
54
# error Missing SCHAR_MIN
definition
.
62
# error Missing SHRT_MAX
definition
[
all
...]
/cts/tools/signature-tools/src/signature/model/
IClassDefinition.java
23
* {@code IClassDefinition} models a class
definition
. This is the model
30
* Returns the kind of this class
definition
.
32
* @return the kind of this class
definition
37
* Returns the name of this class
definition
.
39
* @return the name of this class
definition
63
* Returns the qualified name of this class
definition
. The qualified name
66
* @return the qualified name of this class
definition
71
* Returns the super class for this class
definition
. May return {@code
72
* null} if this class
definition
does not have any superclass. This is the
73
* case if the kind of this class
definition
is {@link Kind#INTERFACE} o
[
all
...]
/external/clang/test/CXX/basic/basic.scope/basic.scope.local/
p4-0x.cpp
7
if (bool b = true) // expected-note 2{{previous
definition
}}
11
while (bool b = true) // expected-note {{previous
definition
}}
13
for (int c; // expected-note 2{{previous
definition
}}
16
switch (int n = 37 + 5) // expected-note {{previous
definition
}}
18
for (int a : arr) // expected-note {{previous
definition
}}
21
if (bool b = true) { // expected-note 2{{previous
definition
}}
26
while (bool b = true) { // expected-note {{previous
definition
}}
29
for (int c; // expected-note 2{{previous
definition
}}
33
switch (int n = 37 + 5) { // expected-note {{previous
definition
}}
36
for (int &a : arr) { // expected-note {{previous
definition
}}
[
all
...]
/external/clang/test/SemaObjC/
check-dup-objc-decls-1.m
3
@interface Foo // expected-note {{previous
definition
is here}}
8
@class Bar; // expected-note {{previous
definition
is here}}
16
typedef int OBJECT; // expected-note {{previous
definition
is here}}
21
typedef int Gorf; // expected-note {{previous
definition
is here}}
23
@interface Gorf @end // expected-error {{redefinition of 'Gorf' as different kind of symbol}} expected-note {{previous
definition
is here}}
32
@interface A<P> @end // expected-note {{previous
definition
is here}}
33
@interface A<Q> @end // expected-error {{duplicate interface
definition
for class 'A'}}
35
@protocol PP<P> @end // expected-note {{previous
definition
is here}}
36
@protocol PP<Q> @end // expected-warning {{duplicate protocol
definition
of 'PP'}}
38
@interface A(Cat)<P> @end // expected-note {{previous
definition
is here}
[
all
...]
category-1.m
7
@interface MyClass1 (Category1) <p1> // expected-warning {{cannot find protocol
definition
for 'p1'}} expected-note {{previous
definition
is here}}
10
@interface MyClass1 (Category1) // expected-warning {{duplicate
definition
of category 'Category1' on interface 'MyClass1'}}
16
@interface MyClass1 (Category4) @end // expected-note {{previous
definition
is here}}
19
@interface MyClass1 (Category7) @end // expected-note {{previous
definition
is here}}
20
@interface MyClass1 (Category8) @end // expected-note {{previous
definition
is here}}
23
@interface MyClass1 (Category4) @end // expected-warning {{duplicate
definition
of category 'Category4' on interface 'MyClass1'}}
24
@interface MyClass1 (Category7) @end // expected-warning {{duplicate
definition
of category 'Category7' on interface 'MyClass1'}}
25
@interface MyClass1 (Category8) @end // expected-warning {{duplicate
definition
of category 'Category8' on interface 'MyClass1'}}
30
@interface MyClass1 (Category) <p2, p3> @end // expected-warning {{cannot find protocol
definition
for 'p2'}
[
all
...]
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
p7.cpp
3
namespace NIL {} // expected-note {{previous
definition
}}
5
inline namespace IL {} // expected-note {{previous
definition
}}
8
namespace {} // expected-note {{previous
definition
}}
11
inline namespace {} // expected-note {{previous
definition
}}
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p4.cpp
7
inline void f0(); // expected-error {{function
definition
cannot precede inline declaration}}
/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}}
17
int bar __attribute__((weak)); // expected-warning {{must precede
definition
}}
array-declared-as-incorrect-type.c
6
extern int a2[]; // expected-note {{previous
definition
is here}}
12
extern int a4[][2]; // expected-note {{previous
definition
is here}}
15
extern int a5[1][2][3]; // expected-note {{previous
definition
is here}}
var-redecl.c
3
int outer1; // expected-note{{previous
definition
is here}}
4
extern int outer2; // expected-note{{previous
definition
is here}}
6
int outer4; // expected-note{{previous
definition
is here}}
8
int outer6(float); // expected-note{{previous
definition
is here}}
14
extern float outer3; // expected-note{{previous
definition
is here}}
16
extern int outer5; // expected-note{{previous
definition
is here}}
19
extern int outer8; // expected-note{{previous
definition
is here}}
22
extern int outer9; // expected-note{{previous
definition
is here}}
32
extern int outer13; // expected-note{{previous
definition
is here}}
35
extern int outer11; // expected-note{{previous
definition
is here}
[
all
...]
/frameworks/compile/slang/tests/F_one_definition_rule1/
stderr.txt.expect
1
error: type 'DifferentDefinition1' in different translation unit (def2.rs v.s. def1.rs) has incompatible type
definition
/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
/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/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-re {{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/Index/
linkage.c
14
// CHECK: EnumDecl=Baz:3:6 (
Definition
)linkage=External
15
// CHECK: EnumConstantDecl=Qux:3:12 (
Definition
)linkage=External
19
// CHECK: FunctionDecl=bar:7:6 (
Definition
)linkage=External
20
// CHECK: ParmDecl=y:7:14 (
Definition
)linkage=NoLinkage
21
// CHECK: VarDecl=z:8:14 (
Definition
)linkage=NoLinkage
22
// CHECK: VarDecl=k:9:7 (
Definition
)linkage=NoLinkage
25
// CHECL: ParmDecl=:12:22 (
Definition
)linkage=NoLinkage
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p8.cpp
5
// expected-error{{out-of-line
definition
}}
7
// expected-error{{out-of-line
definition
}}
10
// expected-error{{out-of-line
definition
}}
Completed in 1606 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>