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
9700
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
output
2
foo is a
definition
/external/antlr/antlr-3.4/runtime/Python/tests/
t018llstar.output
2
foo is a
definition
/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
...]
/external/clang/test/Sema/
alias-redefinition.c
7
void fun1() {} // expected-note {{previous
definition
}}
11
void fun2(void) __attribute((alias("f2"))); // expected-note {{previous
definition
}}
15
void fun3(void) __attribute((alias("f3"))); // expected-note {{previous
definition
}}
24
void __attribute((alias("f5"))) fun5(void) {} // expected-error {{redefinition of 'fun5'}} // expected-note {{previous
definition
}}
27
int var1 __attribute((alias("v1"))); // expected-note {{previous
definition
}}
31
int var2 = 2; // expected-note {{previous
definition
}}
35
int var3 __attribute((alias("v3"))); // expected-note {{previous
definition
}}
39
int var4; // expected-note {{previous
definition
}}
40
int var4 __attribute((alias("v4"))); // expected-error {{alias
definition
of 'var4' after tentative
definition
}}
[
all
...]
/external/chromium_org/content/test/data/accessibility/
dl.html
11
<div role="
definition
">
Definition
</div>
dl-expected-win.txt
8
ROLE_SYSTEM_STATICTEXT name='
Definition
'
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p4.cpp
3
void f0() { // expected-note {{previous
definition
is here}}
6
inline void f0(); // expected-error {{inline declaration of 'f0' follows non-inline
definition
}}
/external/clang/test/Index/Inputs/CommentXML/
invalid-function-03.xml
8
<
Definition
><Para>Bbb.</Para></
Definition
>
invalid-function-04.xml
8
<
Definition
><Para>Bbb.</Para></
Definition
>
/external/lldb/source/Interpreter/
Property.cpp
26
Property::Property (const PropertyDefinition &
definition
) :
27
m_name (
definition
.name),
28
m_description (
definition
.description),
30
m_is_global (
definition
.global)
32
switch (
definition
.type)
38
// "
definition
.default_uint_value" is not used
39
// "
definition
.default_cstr_value" as a string value that represents the default string value for the architecture/triple
40
m_value_sp.reset (new OptionValueArch(
definition
.default_cstr_value));
44
// "
definition
.default_uint_value" is always a OptionValue::Type
49
// "
definition
.default_uint_value" is always a OptionValue::Typ
[
all
...]
/external/nanopb-c/examples/simple/
simple.proto
1
// A very simple protocol
definition
, consisting of only
/frameworks/compile/slang/tests/P_array_init/
stderr.txt.expect
1
array_init.rs:22:6: warning: tentative array
definition
assumed to have one element
/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/Index/
print-bitwidth.c
17
// CHECK: FieldDecl=ac:2:12 (
Definition
) bitwidth=4
18
// CHECK: FieldDecl=:3:3 (
Definition
) bitwidth=4
19
// CHECK: FieldDecl=clock:4:12 (
Definition
) bitwidth=1
20
// CHECK: FieldDecl=:5:3 (
Definition
) bitwidth=0
21
// CHECK: FieldDecl=flag:6:12 (
Definition
) bitwidth=1
22
// CHECK: FieldDecl=light:10:12 (
Definition
) bitwidth=1
23
// CHECK: FieldDecl=toaster:11:12 (
Definition
) bitwidth=1
/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/CodeGen/
debug-info-limited.c
3
// Ensure we emit the full
definition
of 'foo' even though only its declaration
4
// is needed, since C has no ODR to ensure that the
definition
will be the same
5
// in whatever TU actually uses/requires the
definition
of 'foo'.
/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
...]
/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
}}
/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
Completed in 3208 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>