OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:definition
(Results
276 - 300
of
14450
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/clang/test/Parser/
cxx1z-nested-namespace-definition.cpp
9
// expected-warning@-2 {{nested namespace
definition
is a C++1z extension; define each namespace separately}}
11
// expected-warning@-4 {{nested namespace
definition
is incompatible with C++ standards before C++1z}}
17
inline namespace goo::bar { // expected-error {{nested namespace
definition
cannot be 'inline'}} expected-warning 0-1{{C++11 feature}}
/external/clang/test/Preprocessor/
macro_misc.c
21
#define FUNC_LIKE3(a) ( a) // expected-note {{previous
definition
is here}}
27
#define FUNC_LIKE4(a,b) (a+b) // expected-note {{previous
definition
is here}}
35
#define FUNC_LIKE5(a,b) (a+b) // expected-note {{previous
definition
is here}}
/external/clang/test/SemaCXX/
function-redecl.cpp
41
void A::Notypocorrection() { // expected-error {{out-of-line
definition
of 'Notypocorrection' does not match any declaration in 'A'; did you mean 'typocorrection'}}
60
void B::Notypocorrection(int) { // expected-error {{out-of-line
definition
of 'Notypocorrection' does not match any declaration in 'B'; did you mean 'typocorrection'}}
65
int Y::f() { return 3; } // expected-error {{out-of-line
definition
of 'f' does not match any declaration in 'Y'}}
79
void Bar::f(Foo::Inner foo) { // expected-error {{out-of-line
definition
of 'f' does not match any declaration in 'Bar'}}
87
// This out-of-line
definition
was fine...
88
void Crash::cart(int count) const {} // expected-error {{out-of-line
definition
of 'cart' does not match any declaration in 'Crash'}}
90
void Crash::chart(int count) const {} // expected-error {{out-of-line
definition
of 'chart' does not match any declaration in 'Crash'}}
98
int TestConst::getit() { // expected-error {{out-of-line
definition
of 'getit' does not match any declaration in 'TestConst'}}
102
void TestConst::setit(int) const { // expected-error {{out-of-line
definition
of 'setit' does not match any declaration in 'TestConst'}}
106
int J::typo_() { return 3; } // expected-error {{out-of-line
definition
of 'typo_' does not match any declaration in 'J'}
[
all
...]
cxx1z-init-statement.cpp
8
if (int x, y = 0; y) // expected-note 2 {{previous
definition
is here}}
14
if (x, +x; int a = 0) // expected-note 2 {{previous
definition
is here}} expected-warning {{unused}}
38
switch (int x, y = 0; y) { // expected-note 2 {{previous
definition
is here}}
50
switch (x, +x; int a = 0) { // expected-note {{previous
definition
is here}} expected-warning {{unused}}
52
int a = 0; // expected-error {{redefinition of 'a'}} // expected-note {{previous
definition
is here}}
/external/clang/test/SemaObjC/
class-impl-1.m
3
typedef int INTF3; // expected-note {{previous
definition
is here}}
5
@interface SUPER @end // expected-note {{previous
definition
is here}}
12
@implementation INTF @end // expected-note {{previous
definition
is here}}
forward-class-1.m
17
@interface INTF2 : INTF1 // expected-note {{previous
definition
is here}}
23
@interface INTF2 : INTF1 // expected-error {{duplicate interface
definition
for class 'INTF2'}}
34
typedef NSObject <XCElementP> XCElement; // expected-note {{previous
definition
is here}}
protocols.m
32
@protocol PROTO<p1> // expected-note {{previous
definition
is here}}
35
@protocol PROTO<p1> // expected-warning {{duplicate protocol
definition
of 'PROTO'}}
57
@protocol C < B > // expected-note{{previous
definition
is here}}
ivar-lookup.m
54
int IVAR; // expected-note 4 {{previous
definition
is here}}
61
int PIVAR; // expected-note {{previous
definition
is here}}
137
int d; // expected-note {{previous
definition
is here}}
138
NSString *e_strong; // expected-note {{previous
definition
is here}}
139
NSData *f_weak; // expected-note {{previous
definition
is here}}
140
int g; // expected-note 2 {{previous
definition
is here}}
145
int g; // expected-note {{previous
definition
is here}} \
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/targets/
EnumImplicitMethods.java
24
* line of enum
definition
.
32
*
definition
in case of javac and to the first line in case of ECJ.
40
*
definition
in case of javac and to the first line in case of ECJ.
/external/llvm/test/Verifier/
alias.ll
6
; CHECK: Alias must point to a
definition
11
; CHECK: Alias must point to a
definition
18
; CHECK: Alias must point to a
definition
/external/ltp/testcases/kernel/io/disktest/
signals.h
35
#define SIGQUIT 0x03 /*
Definition
from POSIX */
36
#define SIGHUP 0x01 /*
Definition
from POSIX */
37
#define SIGUSR1 0x10 /*
Definition
from POSIX */
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigpause/
4-1.c
27
printf("Function
definition
doesn't match POSIX
definition
"
28
"and preceded POSIX
definition
; interface is obsolete\n");
/frameworks/base/tools/aapt2/tools/consumers/
duplicates.py
25
# Extract the duplicate resource definitions, ignoring the last
definition
39
for
definition
in duplicates:
40
print "{0}: removing duplicate resource '{1}'".format(xml_path,
definition
.name)
42
if last_line_no <
definition
.start[0]:
43
# The next
definition
is on a new line, so write what we have
53
for line_to_copy in xrange(last_line_no,
definition
.start[0]):
58
#
definition
.
59
last_line_no =
definition
.start[0]
60
current_line += input_lines[last_line_no][last_col_no:
definition
.start[1]]
61
last_line_no =
definition
.end[0
[
all
...]
/external/clang/test/CXX/class/class.mem/
p1.cpp
7
int v; //expected-note 2{{previous
definition
is here}} \
44
int S4::v4; //expected-note{{previous
definition
is here}}
49
static int v5; //expected-note{{previous
definition
is here}}
52
void v6() { } //expected-note{{previous
definition
is here}}
56
void v7(int) { } //expected-note{{previous
definition
is here}}
/external/clang/test/Index/
keep-going.cpp
17
// CHECK: ClassTemplate=A:4:7 (
Definition
) [type=] [typekind=Invalid] [isPOD=0]
18
// CHECK: TemplateTypeParameter=T:3:16 (
Definition
) [type=T] [typekind=Unexposed] [canonicaltype=type-parameter-0-0] [canonicaltypekind=Unexposed] [isPOD=0]
19
// CHECK: FieldDecl=a:4:13 (
Definition
) [type=T] [typekind=Unexposed] [canonicaltype=type-parameter-0-0] [canonicaltypekind=Unexposed] [isPOD=0]
21
// CHECK: ClassDecl=B:6:7 (
Definition
) [type=B] [typekind=Record] [isPOD=0]
24
// CHECK: ClassDecl=C:10:7 (
Definition
) [type=C] [typekind=Record] [isPOD=0]
file-refs.c
27
// CHECK: EnumConstantDecl=VALUE:2:3 (
Definition
)
28
// CHECK-NEXT: EnumConstantDecl=VALUE:2:3 (
Definition
) =[2:3 - 2:8]
38
// CHECK-NEXT: ParmDecl=x:7:11 (
Definition
) =[7:11 - 7:12]
42
// CHECK-NEXT: FieldDecl=x:12:7 (
Definition
)
43
// CHECK-NEXT: FieldDecl=x:12:7 (
Definition
) =[12:7 - 12:8]
48
// CHECK-NEXT: TypedefDecl=Vector:14:3 (
Definition
) =[14:3 - 14:9]
53
// CHECK-NEXT: FunctionDecl=f:7:5 (
Definition
) =[7:5 - 7:6]
index-templates.cpp
118
// CHECK-LOAD: index-templates.cpp:3:19: TemplateTypeParameter=T:3:19 (
Definition
) Extent=[3:10 - 3:20]
119
// CHECK-LOAD: index-templates.cpp:3:24: NonTypeTemplateParameter=Value:3:24 (
Definition
) Extent=[3:22 - 3:29]
121
// CHECK-LOAD: index-templates.cpp:3:66: TemplateTemplateParameter=X:3:66 (
Definition
) Extent=[3:31 - 3:67]
122
// CHECK-LOAD: index-templates.cpp:4:20: ParmDecl=x:4:20 (
Definition
) Extent=[4:8 - 4:21]
127
// CHECK-LOAD: index-templates.cpp:6:19: TemplateTypeParameter=T:6:19 (
Definition
) Extent=[6:10 - 6:20]
128
// CHECK-LOAD: index-templates.cpp:9:7: ClassTemplate=vector:9:7 (
Definition
) Extent=[8:1 - 11:2]
129
// CHECK-LOAD: index-templates.cpp:8:19: TemplateTypeParameter=T:8:19 (
Definition
) Extent=[8:10 - 8:20]
130
// CHECK-LOAD: index-templates.cpp:8:31: TemplateTypeParameter=Alloc:8:31 (
Definition
) Extent=[8:22 - 8:51]
133
// CHECK-LOAD: index-templates.cpp:14:7: ClassTemplatePartialSpecialization=vector:14:7 (
Definition
) [Specialization of vector:9:7] Extent=[13:1 - 14:21]
134
// CHECK-LOAD: index-templates.cpp:13:19: TemplateTypeParameter=T:13:19 (
Definition
) Extent=[13:10 - 13:20
[
all
...]
/external/clang/test/Sema/
tentative-decls.c
5
static struct a x2; // expected-warning{{tentative
definition
of variable with internal linkage has incomplete non-array type 'struct a'}}
10
struct b x4; // expected-error{{tentative
definition
has type 'struct b' that is never completed}} \
22
int i1 = 1; // expected-note {{previous
definition
is here}}
29
static int i2 = 5; // expected-note 1 {{previous
definition
is here}}
48
int redef[]; // expected-note {{previous
definition
is here}}
var-redecl.c
3
int outer1; // 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}}
19
extern int outer8; // expected-note{{previous
definition
is here}}
64
void f(int x) { // expected-note {{previous
definition
is here}}
/external/elfutils/
NOTES
12
uses the bar()
definition
from libbar.so and does not mention the
definition
14
definition
in y2.o.
26
has to use the
definition
in -lbar and not pull the
definition
from liby3.a.
/device/google/marlin/camera/QCamera2/stack/common/
mm_camera_interface.h
114
* @plane_buf : Frame plane
definition
189
/** mm_camera_event_notify_t: function
definition
for event
199
/** mm_camera_buf_notify_t: function
definition
for frame notify
207
/** map_stream_buf_op_t: function
definition
for operation of
229
/** unmap_stream_buf_op_t: function
definition
for operation of
259
* @get_bufs : function
definition
for allocating
261
* @put_bufs : function
definition
for deallocating
392
/** query_capability: fucntion
definition
for querying static
401
/** register_event_notify: fucntion
definition
for registering
413
/** close_camera: fucntion
definition
for closing a camer
[
all
...]
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p6.cpp
18
int n6; // expected-error {{'alignas' must be specified on
definition
if it is specified on any declaration}}
25
int n8; // expected-error {{'alignas' must be specified on
definition
if it is specified on any declaration}}
27
int n9; // expected-error {{'alignas' must be specified on
definition
if it is specified on any declaration}}
32
enum E : char {}; // expected-error {{'alignas' must be specified on
definition
if it is specified on any declaration}}
41
enum H : char {}; // expected-error {{'alignas' must be specified on
definition
if it is specified on any declaration}}
48
struct S { int n; }; // expected-error {{'alignas' must be specified on
definition
if it is specified on any declaration}}
58
struct V {}; // expected-error {{'alignas' must be specified on
definition
if it is specified on any declaration}}
/external/llvm/include/llvm/ExecutionEngine/Orc/
JITSymbol.h
36
///
definition
.
40
/// @brief Create a symbol for a
definition
with a known address.
44
/// @brief Create a symbol for a
definition
that doesn't have a known address
46
/// @param GetAddress A functor to materialize a
definition
(fixing the
50
///
definition
without actually materializing the
definition
up front. The
51
/// user can materialize the
definition
at any time by calling the getAddress
/external/tpm2/generator/
test_structure_generator.html
16
<a name="bookmark273"> Table 1
Definition
of Types for ints</a>
22
<a name="bookmark219">Table 2
Definition
of (base_type) TPMA_LOCALITY Bits
25
<tr><td> Bit </td><td> Name </td> <td>
Definition
</td></tr>
35
<a name=bookmark99>Table 3
Definition
of (base_type) const_type Constants </a>
43
<a name=bookmark274>Table 4
Definition
of (base_type) TPMI_DH_OBJECT Type</a>
53
<a name=bookmark274>Table 5
Definition
of struct_type Structure <OUT>
63
<a name=bookmark781>Table 6
Definition
of union_type Union</a>
/frameworks/av/media/img_utils/src/
TiffWriter.cpp
154
const TagDefinition_t*
definition
= NULL;
local
158
definition
= mTagMaps[i][index];
163
if (
definition
== NULL) {
164
ALOGE("%s: No
definition
exists for tag with id %x.", __FUNCTION__, tag);
166
return
definition
;
188
const TagDefinition_t*
definition
= lookupDefinition(tag);
local
190
if (
definition
== NULL) {
191
ALOGE("%s: No
definition
exists for tag 0x%x.", __FUNCTION__, tag);
312
const TagDefinition_t*
definition
= lookupDefinition(tag);
local
313
if (
definition
== NULL)
321
const TagDefinition_t*
definition
= lookupDefinition(tag);
local
339
const TagDefinition_t*
definition
= lookupDefinition(tag);
local
[
all
...]
Completed in 396 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>