OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:note
(Results
26 - 50
of
18033
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaCXX/
incomplete-call.cpp
2
struct A; // expected-
note
14 {{forward declaration of 'A'}}
4
A f(); // expected-
note
{{'f' declared here}}
7
A f(); // expected-
note
{{'f' declared here}}
8
A operator()(); // expected-
note
2 {{'operator()' declared here}}
9
operator A(); // expected-
note
{{'operator A' declared here}}
10
A operator!(); // expected-
note
2 {{'operator!' declared here}}
11
A operator++(int); // expected-
note
{{'operator++' declared here}}
12
A operator[](int); // expected-
note
{{'operator[]' declared here}}
13
A operator+(int); // expected-
note
{{'operator+' declared here}}
14
A operator->(); // expected-
note
{{'operator->' declared here}
[
all
...]
overload-call-copycon.cpp
2
class X { }; // expected-
note
{{the implicit copy constructor}} \
3
// expected-
note
{{the implicit default constructor}}
5
int& copycon(X x); // expected-
note
{{passing argument to parameter}}
16
A(A&); // expected-
note
{{would lose const qualifier}} \
17
// expected-
note
{{no known conversion}}
20
class B : public A { }; // expected-
note
{{would lose const qualifier}} \
21
// expected-
note
{{would lose volatile qualifier}} \
22
// expected-
note
2{{requires 0 arguments}}
24
short& copycon2(A a); // expected-
note
{{passing argument to parameter}}
25
int& copycon2(B b); // expected-
note
2{{passing argument to parameter}
[
all
...]
expressions.cpp
38
// expected-
note
{{use '&' for a bitwise operation}} \
39
// expected-
note
{{remove constant to silence this warning}}
48
// expected-
note
{{use '&' for a bitwise operation}} \
49
// expected-
note
{{remove constant to silence this warning}}
52
// expected-
note
{{use '|' for a bitwise operation}}
55
// expected-
note
{{use '|' for a bitwise operation}}
57
// expected-
note
{{use '|' for a bitwise operation}}
59
// expected-
note
{{use '|' for a bitwise operation}}
61
// expected-
note
{{use '|' for a bitwise operation}}
63
// expected-
note
{{use '&' for a bitwise operation}}
[
all
...]
warn-assignment-condition.cpp
16
// expected-
note
{{use '==' to turn this assignment into an equality comparison}} \
17
// expected-
note
{{place parentheses around the assignment to silence this warning}}
21
// expected-
note
{{use '==' to turn this assignment into an equality comparison}} \
22
// expected-
note
{{place parentheses around the assignment to silence this warning}}
26
// expected-
note
{{use '==' to turn this assignment into an equality comparison}} \
27
// expected-
note
{{place parentheses around the assignment to silence this warning}}
31
// expected-
note
{{use '==' to turn this assignment into an equality comparison}} \
32
// expected-
note
{{place parentheses around the assignment to silence this warning}}
36
// expected-
note
{{use '==' to turn this assignment into an equality comparison}} \
37
// expected-
note
{{place parentheses around the assignment to silence this warning}
[
all
...]
PR8755.cpp
5
typedef int iterator; // expected-
note
{{declared here}}
14
f<int>(); // expected-
note
{{in instantiation of function template}}
access-control-check.cpp
8
int iP; // expected-
note
{{declared private here}}
9
int PPR(); // expected-
note
{{declared private here}}
decltype-overloaded-functions.cpp
3
void f(); // expected-
note
{{possible target for call}}
4
void f(int); // expected-
note
{{possible target for call}}
12
void f(); // expected-
note
{{possible target for call}}
13
void f(int); // expected-
note
{{possible target for call}}
15
S<K> b; // expected-
note
{{in instantiation of template class 'S<K>' requested here}}
deleted-operator.cpp
4
bool operator~() = delete; // expected-
note
{{explicitly deleted}}
5
bool operator==(const PR10757&) = delete; // expected-
note
{{explicitly deleted}}
11
if(~a1) {} // expected-error {{overload resolution selected deleted operator}} expected-
note
6 {{built-in candidate}}
12
if(a1==a1) {} // expected-error {{overload resolution selected deleted operator}} expected-
note
81 {{built-in candidate}}
17
void operator delete(void*) = delete; // expected-
note
{{deleted here}}
dr1301.cpp
2
struct A { // expected-
note
2{{candidate}}
3
A(int); // expected-
note
{{candidate}}
9
B() = delete; // expected-
note
3{{here}}
15
B b; // expected-
note
{{deleted default constructor}}
20
D() = default; // expected-
note
{{here}}
21
B b; // expected-
note
{{'b' has a deleted default constructor}}
38
F f; // expected-
note
{{non-trivial default constructor}}
45
H(); // expected-
note
{{here}}
50
H h; // expected-
note
{{inaccessible default constructor}}
63
J j; // expected-
note
2{{non-trivial default constructor}
[
all
...]
/external/clang/test/CXX/basic/basic.scope/basic.scope.hiding/
p2.cpp
5
struct X { // expected-
note
{{candidate found by name lookup}}
14
} X; // expected-
note
{{candidate found by name lookup}}
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p9.cpp
3
struct S; // expected-
note
2{{forward declaration of 'S'}}
5
extern S f(); // expected-
note
{{'f' declared here}}
/external/clang/test/CXX/special/class.copy/
p9.cpp
18
struct ImplicitNonConstCopy1 : NonConstCopy { // expected-
note
{{candidate constructor}}
19
ImplicitNonConstCopy1(); // expected-
note
{{candidate constructor}}
22
struct ImplicitNonConstCopy2 { // expected-
note
{{candidate constructor}}
23
ImplicitNonConstCopy2(); // expected-
note
{{candidate constructor}}
27
struct ImplicitNonConstCopy3 { // expected-
note
{{candidate constructor}}
28
ImplicitNonConstCopy3(); // expected-
note
{{candidate constructor}}
32
struct ImplicitNonConstCopy4 : VirtualInheritsNonConstCopy { // expected-
note
{{candidate constructor}}
33
ImplicitNonConstCopy4(); // expected-
note
{{candidate constructor}}
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p4.cpp
3
struct IntHolder { // expected-
note
{{here}} // expected-
note
2{{candidate constructor (the implicit copy constructor)}}
4
IntHolder(int); // expected-
note
2{{candidate constructor}}
8
struct X { // expected-
note
{{here}}
16
T value; // expected-
note
{{member is declared here}}
27
xih.f(); // expected-
note
{{instantiation}}
29
X<IntHolder, int>::Inner inner; // expected-
note
{{first required here}}
31
return X<IntHolder, int>::value; // expected-
note
{{instantiation}}
/external/clang/test/Parser/
offsetof.c
5
int a = __builtin_offsetof(struct a, x; // expected-error{{expected ')'}} expected-
note
{{to match this '('}}
7
int b = __builtin_offsetof(struct a, x->b); // expected-error{{expected ')'}} expected-
note
{{to match this '('}}
/external/clang/test/SemaCUDA/
function-target.cu
6
__device__ void h1d(void); // expected-
note
{{candidate function not viable: call to __device__ function from __host__ function}}
10
struct h1ds { // expected-
note
{{requires 1 argument}}
11
__device__ h1ds(); // expected-
note
{{candidate constructor not viable: call to __device__ function from __host__ function}}
22
__host__ void d1h(void); // expected-
note
{{candidate function not viable: call to __host__ function from __device__ function}}
25
__global__ void d1g(void); // expected-
note
{{'d1g' declared here}}
34
__host__ void hd1h(void); // expected-
note
{{candidate function not viable: call to __host__ function from __host__ __device__ function}}
35
__device__ void hd1d(void); // expected-
note
{{candidate function not viable: call to __device__ function from __host__ __device__ function}}
37
__global__ void hd1g(void); // expected-
note
{{'hd1g' declared here}}
/external/clang/test/SemaObjC/
forward-class-receiver.m
4
+ new; // expected-
note
{{method 'new' is used for the forward class}}
8
@class NotKnown; // expected-
note
{{forward declaration of class here}}
arc-cf.m
16
x = (id) CFMakeString0(); // expected-error {{requires a bridged cast}} expected-
note
{{__bridge to convert directly}} expected-
note
{{CFBridgingRelease call to transfer}}
17
x = (id) CFCreateString0(); // expected-error {{requires a bridged cast}} expected-
note
{{__bridge to convert directly}} expected-
note
{{CFBridgingRelease call to transfer}}
25
x = (id) CFCreateString1(); // expected-error {{requires a bridged cast}} expected-
note
{{__bridge to convert directly}} expected-
note
{{CFBridgingRelease call to transfer}}
43
x = (id) CFMakeString3(); // expected-error {{requires a bridged cast}} expected-
note
{{__bridge to convert directly}} expected-
note
{{CFBridgingRelease call to transfer}}
44
x = (id) CFCreateString3(); // expected-error {{requires a bridged cast}} expected-
note
{{__bridge to convert directly}} expected-
note
{{CFBridgingRelease call to transfer}
[
all
...]
/external/clang/test/SemaTemplate/
ambiguous-ovl-print.cpp
3
void f(void*, int); // expected-
note
{{candidate function}}
5
void f(T*, long); // expected-
note
{{candidate function}}
instantiate-case.cpp
15
alpha(1); // expected-
note
{{instantiation of function template}}
19
_shexp_match<char>(); // expected-
note
{{instantiation of function template}}
instantiation-backtrace.cpp
2
template<typename T> struct A; // expected-
note
4{{template is declared here}}
7
template<typename T> struct C : B<T> { } ; // expected-
note
{{instantiation of template class}}
9
template<typename T> struct D : C<T> { }; // expected-
note
{{instantiation of template class}}
11
template<typename T> struct E : D<T> { }; // expected-
note
{{instantiation of template class}}
13
template<typename T> struct F : E<T(T)> { }; // expected-
note
{{instantiation of template class}}
16
(void)sizeof(F<int>); // expected-
note
{{instantiation of template class}}
22
(void)sizeof(B<X>); // expected-
note
{{in instantiation of template class 'B<X>' requested here}}
31
(void)sizeof(G<int>); // expected-
note
{{in instantiation of template class 'G<int>' requested here}}
/ndk/tests/device/test-gabi++/jni/
Application.mk
0
#
Note
: by default, build for all supported ABIs
8
#
Note
: we use APP_STL because we explicitely import
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p4-neg.cpp
3
template<typename T> void f0(T) { } // expected-
note
{{previous}}
6
template<int I> void f0() { } // expected-
note
{{previous}}
12
void f0() { } // expected-
note
{{previous}}
20
typename MetaFun<T*>::type f0(const T&) { while (1) {} } // expected-
note
{{previous}}
26
// template<int I> void f0(A<I>) { } // Xpected-
note
{{previous}}
/external/clang/test/Sema/
predefined-function.c
7
int eli(float b); // expected-
note
{{previous declaration is here}} \
8
// expected-
note
{{passing argument to parameter 'b' here}}
19
int bar(int i) // expected-
note
{{previous definition is here}}
28
int foobar(int); //
note
{{previous declaration is here}}
34
int wibble(); // expected-
note
{{previous declaration 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
...]
/external/clang/test/Misc/
include-stack-for-note-flag.cpp
1
// RUN: %clang_cc1 -fsyntax-only -fdiagnostics-show-
note
-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACK
2
// RUN: %clang_cc1 -fsyntax-only -fno-diagnostics-show-
note
-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACKLESS
3
// RUN: %clang_cc1 -fsyntax-only -fno-diagnostics-show-
note
-include-stack -fdiagnostics-show-
note
-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACK
4
// RUN: %clang_cc1 -fsyntax-only -fdiagnostics-show-
note
-include-stack -fno-diagnostics-show-
note
-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACKLESS
18
// STACK:
note
: candidate function not viable
21
// STACK:
note
: expanded from macro
25
// STACKLESS:
note
: candidate function not viable
28
// STACKLESS:
note
: expanded from macr
[
all
...]
Completed in 207 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>