OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:note
(Results
176 - 200
of
20550
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaObjCXX/
parameters.mm
11
X0<A> x0a; // expected-
note
{{instantiation}}
14
struct test2 { virtual void foo() = 0; }; // expected-
note
{{unimplemented}}
/external/clang/test/SemaTemplate/
instantiate-typeof.cpp
5
int buffer[n]; // expected-
note
{{declared here}}
9
f<int>(1); // expected-
note
{{in instantiation}}
recovery-crash.cpp
6
static void Work(int); // expected-
note
{{must qualify identifier}}
16
B<int> b(0); // expected-
note
{{in instantiation of function template}}
/ndk/tests/device/test-stlport_shared-exception/jni/
crossjump1.cpp
2
// one with REG_EH_REGION
note
with no handlers (ie. termination)
3
// and one without REG_EH_REGION
note
.
/ndk/tests/device/test-stlport_static-exception/jni/
crossjump1.cpp
2
// one with REG_EH_REGION
note
with no handlers (ie. termination)
3
// and one without REG_EH_REGION
note
.
/prebuilts/ndk/8/platforms/android-14/arch-arm/usr/lib/
crtbegin_dynamic.o
crtbegin_static.o
/prebuilts/ndk/8/platforms/android-3/arch-arm/usr/lib/
crtbegin_dynamic.o
crtbegin_static.o
/prebuilts/ndk/8/platforms/android-4/arch-arm/usr/lib/
crtbegin_dynamic.o
crtbegin_static.o
/prebuilts/ndk/8/platforms/android-5/arch-arm/usr/lib/
crtbegin_dynamic.o
crtbegin_static.o
/prebuilts/ndk/8/platforms/android-8/arch-arm/usr/lib/
crtbegin_dynamic.o
crtbegin_static.o
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/lib/
crtbegin_dynamic.o
crtbegin_static.o
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
p5.cpp
4
struct x {}; // expected-
note
{{candidate found by name lookup is 'A::x'}}
5
int x; // expected-
note
{{candidate found by name lookup is 'A::x'}}
7
struct y {}; // expected-
note
{{type declaration hidden}}
14
struct x {}; // expected-
note
{{candidate found by name lookup is 'B::x'}}
15
float x; // expected-
note
{{candidate found by name lookup is 'B::x'}}
17
float y; // expected-
note
{{declaration hides type}}
/external/clang/test/CXX/basic/basic.scope/basic.scope.local/
p2.cpp
3
void func1(int i) { // expected-
note
{{previous definition is here}}
7
void func2(int i) try { // expected-
note
{{previous definition is here}}
12
void func3(int i) try { // FIXME:
note
{{previous definition is here}}
16
void func4(int i) try { // expected-
note
{{previous definition is here}}
28
} catch (int i) { // expected-
note
{{previous definition is here}}
34
} catch (int i) { // expected-
note
{{previous definition is here}}
/external/clang/test/CXX/class/
p2-0x.cpp
4
class A final { }; // expected-
note
{{'A' declared here}}
11
template<typename T> struct A final { }; // expected-
note
2 {{'A' declared here}}
15
struct D : C<int> { }; // expected-
note
{{in instantiation of template class 'Test2::C<int>' requested here}}
22
template<> struct A<int> final { }; // expected-
note
{{'A' declared here}}
31
struct A final { virtual void func() = 0; }; // expected-warning {{abstract class is marked 'final'}} expected-
note
{{unimplemented pure virtual method 'func' in 'A'}}
32
struct B { virtual void func() = 0; }; // expected-
note
{{unimplemented pure virtual method 'func' in 'C'}}
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p10.cpp
3
int GlobalVar; // expected-
note
{{declared here}}
6
int AmbiguousVar; // expected-
note
{{candidate}}
8
int AmbiguousVar; // expected-
note
{{candidate}}
19
int variable; // expected-
note
{{declared here}}
28
int local; // expected-
note
{{declared here}}
29
static int local_static; // expected-
note
{{'local_static' declared here}}
/external/clang/test/CXX/temp/temp.param/
p12.cpp
2
template<typename> struct Y1; // expected-
note
{{too few template parameters in template template argument}}
7
class T2 = int> // expected-
note
{{previous default template argument defined here}}
15
template<class> class = Y1> // expected-
note
{{previous default template argument defined here}}
25
int M = 5> // expected-
note
{{previous default template argument defined here}}
35
template<template<class, int> class // expected-
note
{{previous template template parameter is here}}
39
C1<> c1; // expected-
note
{{while checking a default template argument}}
/external/clang/test/CXX/temp/temp.spec/
p5.cpp
4
template void f(int); // expected-
note
{{previous explicit instantiation}}
19
template struct X0<int>; // expected-
note
{{previous explicit instantiation}} \
20
expected-
note
{{requested here}}
23
template void X0<float>::f(float); // expected-
note
{{previous explicit instantiation}}
26
template union X0<float>::Inner; // expected-
note
{{previous explicit instantiation}}
29
template float X0<float>::value; // expected-
note
{{previous explicit instantiation}}
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p6.cpp
16
int &use_X0_int(X0<int> x0i, // expected-
note
{{implicit instantiation first required here}}
18
x0i.f(); // expected-
note
{{implicit instantiation first required here}}
19
x0i.g(i); // expected-
note
{{implicit instantiation first required here}}
20
X0<int>::Nested nested; // expected-
note
{{implicit instantiation first required here}}
21
return X0<int>::member; // expected-
note
{{implicit instantiation first required here}}
50
sort(v); // expected-
note
{{required}}
/external/clang/test/Sema/
typeof-use-deprecated.c
3
struct s { int a; } __attribute__((deprecated)) x; // expected-warning {{'s' is deprecated}} expected-
note
2 {{'s' declared here}}
7
union un{ int a; } __attribute__((deprecated)) u; // expected-warning {{'un' is deprecated}} expected-
note
2 {{'un' declared here}}
11
enum E{ one} __attribute__((deprecated)) e; // expected-warning {{'E' is deprecated}} expected-
note
2 {{'E' declared here}}
15
struct foo { int x; } __attribute__((deprecated)); // expected-
note
{{'foo' declared here}}
16
typedef struct foo bar __attribute__((deprecated)); // expected-
note
{{'bar' declared here}}
22
typedef struct gorf T __attribute__((deprecated)); // expected-
note
{{'T' declared here}}
Completed in 1912 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>