HomeSort by relevance Sort by last modified time
    Searched full:note (Results 426 - 450 of 20550) sorted by null

<<11121314151617181920>>

  /external/clang/test/Sema/
arg-duplicate.c 6 x, // expected-note {{previous declaration is here}}
attr-deprecated-message.c 4 typedef int INT1 __attribute__((deprecated("Please avoid INT1"))); // expected-note 3 {{'INT1' declared here}}
15 INT1 f1(void) __attribute__ ((deprecated("Please avoid f1"))); // expected-note {{'f1' declared here}}
18 typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expected-note {{'Color' declared here}}
24 int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2' declared here}}
attr-visibility.c 10 struct __attribute__((visibility("hidden"))) test4; // expected-note {{previous attribute is here}}
15 struct __attribute__((visibility("hidden"))) test5; // expected-note {{previous attribute is here}}
18 void test6() __attribute__((visibility("hidden"), // expected-note {{previous attribute is here}}
21 extern int test7 __attribute__((visibility("default"))); // expected-note {{previous attribute is here}}
gnu89.c 5 void main() {} // expected-warning {{return type of 'main' is not 'int'}} expected-note {{change return type to 'int'}}
incompatible-sign.c 3 int a(int* x); // expected-note{{passing argument to parameter 'x' here}}
uninit-variables-vectors.c 9 __m128 x, y, z, w, X; // expected-note {{variable 'x' is declared here}} expected-note {{variable 'y' is declared here}} expected-note {{variable 'w' is declared here}} expected-note {{variable 'z' is declared here}}
variadic-incomplete-arg-type.c 4 typedef struct __CFError * CFErrorRef; // expected-note {{forward declaration of 'struct __CFError'}}
vfprintf-invalid-redecl.c 6 char vfprintf(); // expected-warning {{incompatible redeclaration of library function 'vfprintf'}} expected-note {{'vfprintf' is a builtin}}
  /external/clang/test/SemaCXX/
PR10177.cpp 12 template<int N> struct S; // expected-note 2{{here}}
22 (void)func_ref<int, int&, U<1>::a>(); // expected-note {{here}}
23 (void)class_ref<int, int&, U<2>::a>(); // expected-note {{here}}
27 f<int>(); // expected-note 2{{here}}
PR6618.cpp 2 class bar; // expected-note {{forward declaration of 'bar'}}
PR7410.cpp 6 virtual BaseReturn Foo() = 0; // expected-note{{overridden virtual function is here}}
address-space-references.cpp 6 void f0(int_1 &); // expected-note{{candidate function not viable: 1st argument ('int') is in address space 0, but parameter must be in address space 1}} \
7 // expected-note{{candidate function not viable: 1st argument ('int_2' (aka '__attribute__((address_space(2))) int')) is in address space 2, but parameter must be in address space 1}}
8 void f0(const int_1 &); // expected-note{{candidate function not viable: 1st argument ('int') is in address space 0, but parameter must be in address space 1}} \
9 // expected-note{{candidate function not viable: 1st argument ('int_2' (aka '__attribute__((address_space(2))) int')) is in address space 2, but parameter must be in address space 1}}
anonymous-struct.cpp 4 S(); // expected-note {{because type 'S' has a user-provided default constructor}}
array-bounds-system-header.cpp 5 char a[3]; // expected-note 2 {{declared here}}
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'}}
48 void Check(); // expected-note {{'Check' declared here}}
attr-after-definition.cpp 5 bool f0(X) { return true; } // expected-note{{definition}}
compound-literal.cpp 5 struct S; // expected-note {{forward declaration}}
cxx0x-class.cpp 20 float foo(); // expected-note {{here}}
23 static const float x = 5.0f; // expected-warning {{requires 'constexpr'}} expected-note {{add 'constexpr'}}
24 static const float y = foo(); // expected-warning {{requires 'constexpr'}} expected-note {{add 'constexpr'}}
26 static constexpr float y2 = foo(); // expected-error {{must be initialized by a constant expression}} expected-note {{non-constexpr function 'foo'}}
function-overloaded-redecl.cpp 8 void f (int) { } // expected-note {{previous definition is here}}
member-location.cpp 4 float a(int *); // expected-note{{passing argument to parameter here}}
namespace.cpp 2 namespace A { // expected-note 2 {{previous definition is here}}
11 class B {}; // expected-note {{previous definition is here}} \
12 // expected-note{{candidate function (the implicit copy assignment operator)}}
14 void C(); // expected-note {{previous definition is here}}
scope-check.cpp 24 C c; // expected-note {{jump bypasses variable initialization}}
71 C c1; // expected-note {{jump bypasses variable initialization}}
72 lbl1: // expected-note {{possible target of indirect goto}}
88 lbl1: // expected-note {{possible target of indirect goto}}
92 D d; // expected-note {{jump exits scope of variable with non-trivial destructor}}
143 int x = 56; // expected-note {{jump bypasses variable initialization}}
151 l1: int x = 5; // expected-note {{jump bypasses variable initialization}}
200 int a = 3; // expected-note {{jump bypasses variable initialization}}
214 l0: // expected-note {{possible target of indirect goto}}
215 C c0 = 42; // expected-note {{jump exits scope of variable with non-trivial destructor}
    [all...]
statements.cpp 14 X x; // expected-note {{jump bypasses variable initialization}}
static-cast-complete-type.cpp 6 struct T; // expected-note{{forward declaration of 'T'}}
switch-0x.cpp 5 explicit operator int(); // expected-note{{conversion to integral type}}

Completed in 616 milliseconds

<<11121314151617181920>>