OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:note
(Results
276 - 300
of
20550
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/clang/test/SemaObjC/
property-impl-misuse.m
12
@dynamic X; // expected-
note
{{previous declaration is here}}
14
@synthesize Y; // expected-
note
{{previous use is here}}
41
- (void)P; // expected-
note
{{declared here}}
44
- (double) P1; // expected-
note
{{declared here}}
47
- (double*)P2; // expected-
note
{{declared here}}
warn-deprecated-implementations.m
6
- (void) D __attribute__((deprecated)); // expected-
note
{{method 'D' declared here}}
14
- (void) E __attribute__((deprecated)); // expected-
note
{{method 'E' declared here}}
32
@interface CL // expected-
note
2 {{class declared here}} // expected-
note
2 {{declared here}}
46
- (void) B __attribute__((deprecated)); // expected-
note
{{method 'B' declared here}}
weak-receiver-warn.m
12
[x addBlock: ^{ [weakx actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-
note
{{assign the value to a strong variable to keep the object alive during use}}
13
[x setBlock: ^{ [weakx actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-
note
{{assign the value to a strong variable to keep the object alive during use}}
14
x.block = ^{ [weakx actNow]; }; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-
note
{{assign the value to a strong variable to keep the object alive during use}}
16
[weakx addBlock: ^{ [x actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-
note
{{assign the value to a strong variable to keep the object alive during use}}
17
[weakx setBlock: ^{ [x actNow]; }]; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-
note
{{assign the value to a strong variable to keep the object alive during use}}
18
weakx.block = ^{ [x actNow]; }; // expected-warning {{weak receiver may be unpredictably set to nil}} expected-
note
{{assign the value to a strong variable to keep the object alive during use}}
26
@property __weak Test* weak_prop; // expected-
note
{{property declared here}}
27
@property (weak, atomic) id weak_atomic_prop; // expected-
note
{{property declared here}}
28
- (__weak id) P; // expected-
note
{{method 'P' declared here}}
39
[self.weak_prop Meth]; // expected-warning {{weak property may be unpredictably set to nil}} expected-
note
{{assign the value to a strong variable to keep the object alive during use}
[
all
...]
alias-test-1.m
5
@class class2; // expected-
note
{{previous declaration is here}}
8
typedef int I; // expected-
note
{{previous declaration is here}}
16
typedef int alias2; // expected-
note
{{previous declaration is here}}
arc-non-pod-memaccess.m
25
// expected-
note
{{explicitly cast the pointer to silence this warning}}
27
// expected-
note
{{explicitly cast the pointer to silence this warning}}
29
// expected-
note
{{explicitly cast the pointer to silence this warning}}
33
// expected-
note
{{explicitly cast the pointer to silence this warning}}
35
// expected-
note
{{explicitly cast the pointer to silence this warning}}
37
// expected-
note
{{explicitly cast the pointer to silence this warning}}
41
// expected-
note
{{explicitly cast the pointer to silence this warning}}
43
// expected-
note
{{explicitly cast the pointer to silence this warning}}
45
// expected-
note
{{explicitly cast the pointer to silence this warning}}
49
// expected-
note
{{explicitly cast the pointer to silence this warning}
[
all
...]
class-conforming-protocol-1.m
8
- (INTF*) METH1; // expected-
note
{{previous declaration is here}}
11
- (INTF<P2,P1>*) METH2; // expected-
note
{{previous declaration is here}}
14
- (INTF<P2,P1,P3>*) METH3; // expected-
note
{{previous declaration is here}}
duplicate-property-class-extension.m
6
@property (readwrite) char bar; // expected-
note
{{property declared here}}
10
@property (readwrite) char foo; // expected-
note
2 {{property declared here}}
11
@property (readwrite) char NewProperty; // expected-
note
2 {{property declared here}}
method-typecheck-3.m
6
- (B*)a; // expected-
note
{{previous definition is here}}
7
- (void)takesA: (A*)a; // expected-
note
{{previous definition is here}}
8
- (void)takesId: (id)a; // expected-
note
{{previous definition is here}}
/external/clang/test/SemaObjCXX/
objc2-merge-gc-attribue-decl.mm
35
extern __weak id WLoopGetMain(); // expected-
note
{{previous declaration is here}}
38
extern id p3; // expected-
note
{{previous definition is here}}
41
extern void *p4; // expected-
note
{{previous definition is here}}
47
extern char* __strong p6; // expected-
note
{{previous definition is here}}
50
extern __strong char* p7; // expected-
note
{{previous definition is here}}
/external/clang/test/SemaTemplate/
canonical-expr-type.cpp
7
void f0(T x, __typeof__(f(x)) y) { } // expected-
note
{{previous}}
20
void f0a(T x, __typeof__(f(N)) y) { } // expected-
note
{{previous}}
26
// expected-
note
{{previous}}
35
void f1(T (&array)[N + M]) { } // expected-
note
{{previous}}
50
void f0(type1); // expected-
note
{{previous}}
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/
NoteDataItem.java
21
import android.provider.ContactsContract.CommonDataKinds.
Note
;
24
* Represents a
note
data item, wrapping the columns in
25
* {@link ContactsContract.CommonDataKinds.
Note
}.
34
return getContentValues().getAsString(
Note
.
NOTE
);
/external/oprofile/module/x86/
op_syscalls.c
50
struct op_note
note
;
local
56
note
.pid = current->pid;
57
note
.tgid = op_get_tgid();
58
note
.addr = addr;
59
note
.len = len;
60
note
.offset = offset;
61
note
.type = is_execve ? OP_EXEC : OP_MAP;
62
note
.hash = hash_path(file);
63
if (
note
.hash == -1)
65
/* holding
note
lock *
210
struct op_
note
note
;
local
281
struct op_
note
note
;
local
293
struct op_
note
note
;
local
[
all
...]
/external/clang/test/CXX/class.access/
p4.cpp
19
void foo(Protected&); // expected-
note
2 {{declared protected here}}
21
void foo(Private&); // expected-
note
2 {{declared private here}}
45
void operator+(Protected&); // expected-
note
{{declared protected here}}
46
void operator[](Protected&); // expected-
note
{{declared protected here}}
47
void operator()(Protected&); // expected-
note
{{declared protected here}}
49
operator ProtectedSurrogate() const; // expected-
note
{{declared protected here}}
51
void operator+(Private&); // expected-
note
{{declared private here}}
52
void operator[](Private&); // expected-
note
{{declared private here}}
53
void operator()(Private&); // expected-
note
{{declared private here}}
54
void operator-(); // expected-
note
{{declared private here}
[
all
...]
/external/clang/test/FixIt/
fixit-vexing-parse.cpp
35
S s1(); // expected-warning {{function declaration}} expected-
note
{{replace parentheses with an initializer}}
39
S s2, // expected-
note
{{change this ',' to a ';' to call 'F2'}}
40
F2(); // expected-warning {{function declaration}} expected-
note
{{replace parentheses with an initializer}}
44
T t1(), // expected-warning {{function declaration}} expected-
note
{{remove parentheses}}
45
t2(); // expected-warning {{function declaration}} expected-
note
{{remove parentheses}}
50
T t3(S(), S()); // expected-warning {{disambiguated as a function declaration}} expected-
note
{{add a pair of parentheses}}
56
int l(int(k[0])); // expected-warning {{disambiguated as a function declaration}} expected-
note
{{add a pair of parentheses}}
66
U u(); // expected-warning {{function declaration}} expected-
note
{{replace parentheses with an initializer}}
69
V v(); // expected-warning {{function declaration}} expected-
note
{{remove parentheses}}
72
W w(); // expected-warning {{function declaration}} expected-
note
{{remove parentheses}
[
all
...]
/external/clang/test/ASTMerge/
enum.c
6
// CHECK: enum1.c:11:3:
note
: enumerator 'E2Enumerator2' with value 3 here
7
// CHECK: enum2.c:11:3:
note
: enumerator 'E2Enumerator2' with value 4 here
9
// CHECK: enum1.c:13:3:
note
: declared here with type 'enum E2'
11
// CHECK: enum1.c:18:3:
note
: enumerator 'E3Enumerator2' with value 3 here
12
// CHECK: enum2.c:18:3:
note
: enumerator 'E3Enumerator' with value 3 here
14
// CHECK: enum1.c:20:3:
note
: declared here with type 'enum E3'
16
// CHECK: enum1.c:26:3:
note
: enumerator 'E4Enumerator3' with value 2 here
17
// CHECK: enum2.c:23:6:
note
: no corresponding enumerator here
19
// CHECK: enum1.c:27:3:
note
: declared here with type 'enum E4'
21
// CHECK: enum2.c:33:3:
note
: enumerator 'E5Enumerator4' with value 3 her
[
all
...]
/external/clang/test/Analysis/diagnostics/
no-prune-paths.c
15
// expected-
note
@-2 {{Calling 'helper'}}
16
// expected-
note
@-3 {{Returning from 'helper'}}
20
// expected-
note
@-1 {{Dereference of null pointer}}
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
basic.cpp
11
// expected-
note
{{override this message by inserting an explicit cast}}
13
// expected-
note
{{override this message by inserting an explicit cast}}
16
template void f<float>(int); // expected-
note
{{in instantiation of function template specialization 'PR12453::f<float>' requested here}}
/external/clang/test/CXX/except/except.handle/
p16.cpp
25
} catch (X<float>) { // expected-
note
{{instantiation}}
27
} catch (X<int> xi) { // expected-
note
{{instantiation}}
33
virtual void f() = 0; // expected-
note
{{pure virtual}}
/external/clang/test/CXX/special/class.copy/
p20.cpp
18
struct ImplicitNonConstCopy1 : NonConstCopy { // expected-
note
{{the implicit copy assignment operator}}
22
struct ImplicitNonConstCopy2 { // expected-
note
{{the implicit copy assignment operator}}
27
struct ImplicitNonConstCopy3 { // expected-
note
{{the implicit copy assignment operator}}
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p17.cpp
4
template<short s> void f(A<s>); // expected-
note
{{candidate template ignored: substitution failure}}
18
template<short s> void h(int (&)[s]); // expected-
note
{{candidate function template not viable: requires 1 argument, but 2 were provided}}
25
template<short s> void h(int (&)[s], A<s>); // expected-
note
{{candidate template ignored: substitution failure}}
/external/clang/test/PCH/
macro-redef.c
11
#define M1 0 // expected-
note
{{previous}}
20
// expected-
note
@-6 {{previous}}
25
int x = M1; // expected-
note
{{previous}}
/external/clang/test/SemaCXX/
constexpr-depth.cpp
5
constexpr int depth(int n) { return n > 1 ? depth(n-1) : 0; } // expected-
note
{{exceeded maximum depth}} expected-
note
+{{}}
7
constexpr int kBad = depth(MAX + 1); // expected-error {{must be initialized by a constant expression}} expected-
note
{{in call to 'depth(}}
nested-name-spec-locations.cpp
3
//
Note
: the formatting in this test case is intentionally funny, with
31
UnresolvedUsingValueDeclTester<int> UnresolvedUsingValueDeclCheck; // expected-
note
{{in instantiation of template class}}
41
UnresolvedUsingTypenameDeclTester<int> UnresolvedUsingTypenameDeclCheck; // expected-
note
{{in instantiation of template class}}
62
tester.f(0); // expected-
note
{{in instantiation of member function}}
75
t.f(); // expected-
note
{{in instantiation of member function}}
87
TypenameTypeTester<int> TypenameTypeCheck; // expected-
note
{{in instantiation of template class}}
103
DependentTemplateSpecializationTypeTester<HasApply, int> DTSTCheck; // expected-
note
{{in instantiation of template class}}
112
DependentTemplateSpecializationTypeTester2<HasApply, int> DTSTCheck2; // expected-
note
{{in instantiation of template class}}
121
DependentTemplateSpecializationTypeTester3<HasApply, int> DTSTCheck3; // expected-
note
{{in instantiation of template class}}
130
DependentTemplateSpecializationTypeTester4<HasApply, int> DTSTCheck4; // expected-
note
{{in instantiation of template class}
[
all
...]
overload-0x.cpp
4
struct A { // expected-
note
{{candidate function (the implicit copy assignment operator) not viable: 'this' argument has type 'const test0::A', but method is not marked const}} expected-
note
{{candidate function (the implicit move assignment operator) not viable: 'this' argument has type 'const test0::A', but method is not marked const}}
5
A &operator=(void*); // expected-
note
{{candidate function not viable: 'this' argument has type 'const test0::A', but method is not marked const}}
ref-init-ambiguous.cpp
6
operator E2&(); // expected-
note
3 {{candidate function}}
10
operator E2&(); // expected-
note
3 {{candidate function}}
20
void foo(const E2 &);// expected-
note
{{passing argument to parameter here}}
Completed in 3934 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>