OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:note
(Results
226 - 250
of
18033
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Modules/
decldef.mm
5
// in other file: expected-
note
{{previous definition is here}}
11
// in other file: expected-
note
{{previous definition is here}}
27
B b2; //
Note
: the reundant error was silenced.
/external/clang/test/PCH/
cxx0x-default-delete.cpp
12
void bar() = delete; // expected-
note
{{deleted here}}
16
~baz() = delete; // expected-
note
{{deleted here}}
20
~quux() = default; // expected-
note
{{private here}}
cxx11-constexpr.cpp
9
B(); // expected-
note
{{here}}
13
struct C { // expected-
note
{{not an aggregate and has no constexpr constructors}}
27
constexpr B b; // expected-error {{constant expression}} expected-
note
{{non-constexpr}}
/external/clang/test/SemaCXX/
arrow-operator.cpp
7
T* operator->(); // expected-
note
{{candidate function}}
11
T* operator->(); // expected-
note
{{candidate function}}
19
struct E; // expected-
note
{{forward declaration of 'E'}}
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(}}
default-arg-special-member.cpp
5
foo(foo&, int); // expected-
note
{{was not a special member function}}
6
foo(int); // expected-
note
{{was not a special member function}}
7
foo(const foo&); // expected-
note
{{was a copy constructor}}
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}}
conversion-delete-expr.cpp
5
operator char *(); // expected-
note
{{candidate function}}
9
operator int *(); // expected-
note
{{candidate function}}
33
operator const int *(); // expected-
note
{{candidate function}}
37
operator int *(); // expected-
note
{{candidate function}}
47
operator const int *(); // expected-
note
{{candidate function}}
51
operator const int *(); // expected-
note
{{candidate function}}
default1.cpp
3
void f(int i = 0); // expected-
note
{{previous definition is here}}
18
// expected-
note
{{passing argument to parameter here}}
26
struct Y { // expected-
note
2{{candidate}}
31
// expected-
note
{{passing argument to parameter 'y' here}}
34
// expected-
note
{{passing argument to parameter here}}
49
void j (int f); // expected-
note
{{'j' declared here}}
/external/clang/test/SemaObjC/
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}}
method-undef-extension-warn-1.m
3
@interface MyClass // expected-
note
{{required for direct or indirect protocol 'P'}}
8
- (void)Pmeth1; // expected-
note
{{method 'Pmeth1' declared here}}
13
- (void)meth2; // expected-
note
{{method definition for 'meth2' not found}}
method-undef-category-warn-1.m
7
- (void) Pmeth; // expected-
note
{{method 'Pmeth' declared here}}
8
- (void) Pmeth1; // expected-
note
{{method 'Pmeth1' declared here}}
11
@interface MyClass1(CAT) <P> // expected-
note
{{required for direct or indirect protocol 'P'}}
12
- (void) meth2; // expected-
note
{{method definition for 'meth2' not found}}
20
@interface MyClass1(DOG) <P> // expected-
note
{{required for direct or indirect protocol 'P'}}
21
- (void)ppp; // expected-
note
{{method definition for 'ppp' not found}}
/external/clang/test/SemaTemplate/
instantiate-overload-candidates.cpp
8
template <typename T> struct S_ : S<T> { typedef int type; }; // expected-
note
{{in instantiation}}
16
class NoDefinition; // expected-
note
{{forward declaration}}
17
template <typename T> S_<NoDefinition>::type f(T*, NoDefinition*); // expected-
note
{{in instantiation}}
ms-lookup-template-base-classes.cpp
7
void f(T a) { }// expected-
note
{{must qualify identifier to find this declaration in dependent base class}}
8
void g();// expected-
note
{{must qualify identifier to find this declaration in dependent base class}}
22
template class B<int>; // expected-
note
{{requested here}}
58
static void static_func();// expected-
note
{{must qualify identifier to find this declaration in dependent base class}}
59
void func();// expected-
note
{{must qualify identifier to find this declaration in dependent base class}}
71
template class B<int>; // expected-
note
{{requested here}}
82
static int f1(); // expected-
note
{{must qualify identifier to find this declaration in dependent base class}}
83
int f2(); // expected-
note
{{must qualify identifier to find this declaration in dependent base class}}
96
b.g1(); // expected-
note
{{required here}}
97
b.g2(); // expected-
note
{{required here}
[
all
...]
/external/clang/test/ARCMT/
no-canceling-bridge-to-bridge-cast.m
27
// expected-
note
{{use __bridge to convert directly (no change in ownership)}} \
28
// expected-
note
{{use CFBridgingRelease call to transfer ownership of a +1 'CFTypeRef' (aka 'const void *') into ARC}}
31
// expected-
note
{{use __bridge to convert directly (no change in ownership)}} \
32
// expected-
note
{{use CFBridgingRelease call to transfer ownership of a +1 'CFTypeRef' (aka 'const void *') into ARC}}
35
// expected-
note
{{use __bridge to convert directly (no change in ownership)}} \
36
// expected-
note
{{use CFBridgingRelease call to transfer ownership of a +1 'CFTypeRef' (aka 'const void *') into ARC}}
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
p2.cpp
4
int zero = 0; // expected-
note
{{candidate found by name lookup is 'Ints::zero'}}
5
void f(int); // expected-
note
3 {{candidate function}}
10
float zero = 0.0f; // expected-
note
{{candidate found by name lookup is 'Floats::zero'}}
11
void f(float); // expected-
note
3 {{candidate function}}
34
struct Number { // expected-
note
2 {{candidate}}
39
void g(Number); // expected-
note
2{{passing argument to parameter here}}
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udir/
p1.cpp
19
opaque0 foo(); // expected-
note
{{candidate}}
24
opaque1 foo(); // expected-
note
{{candidate}}
43
opaque0 foo(); // expected-
note
{{candidate}}
48
opaque1 foo(); // expected-
note
{{candidate}}
103
opaque0 foo(); // expected-
note
{{candidate}}
111
opaque1 foo(); // expected-
note
{{candidate}}
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p12.cpp
36
void immediately_enclosing(int i) { // expected-
note
{{'i' declared here}}
45
[]() { // expected-
note
{{lambda expression begins here}}
50
void f1(int i) { // expected-
note
{{declared here}}
64
void work(int n) { // expected-
note
{{declared here}}
66
int j = 40; // expected-
note
{{declared here}}
67
auto m3 = [this,m] { // expected-
note
3{{lambda expression begins here}}
/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp
5
auto begin(T &&t) -> decltype(t.begin()) { return t.begin(); } // expected-
note
4{{ignored: substitution failure}}
7
auto end(T &&t) -> decltype(t.end()) { return t.end(); } // expected-
note
{{candidate template ignored: substitution failure [with T = }}
10
auto begin(T &&t) -> decltype(t.alt_begin()) { return t.alt_begin(); } // expected-
note
{{selected 'begin' template [with T = }} \
11
expected-
note
4{{candidate template ignored: substitution failure [with T = }}
13
auto end(T &&t) -> decltype(t.alt_end()) { return t.alt_end(); } // expected-
note
{{candidate template ignored: substitution failure [with T = }}
24
struct A { // expected-
note
2 {{candidate constructor}}
26
int *begin(); // expected-
note
3{{selected 'begin' function with iterator type 'int *'}} expected-
note
{{'begin' declared here}}
76
extern struct Incomplete also_incomplete[2]; // expected-
note
{{forward declaration}}
81
void begin(); // expected-
note
{{selected 'begin' function with iterator type 'void'}
[
all
...]
Completed in 651 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>