HomeSort by relevance Sort by last modified time
    Searched full:here (Results 301 - 325 of 33179) sorted by null

<<11121314151617181920>>

  /external/clang/test/CXX/special/class.inhctor/
p4.cpp 13 A(X<2>) {} // expected-note {{declared private here}}
18 using A::A; // expected-error {{private constructor}} expected-note {{implicitly declared protected here}}
24 B b2{X<2>{}}; // expected-note {{first required here}}
37 using A::A; // expected-note 2{{here}}
46 G(int) = delete; // expected-note {{function has been explicitly marked deleted here}}
47 template<typename T> G(T*) = delete; // expected-note {{function has been explicitly marked deleted here}}
50 using G::G; // expected-note 2{{deleted constructor was inherited here}}
66 using A::A; // expected-note {{here}}
  /external/clang/test/CXX/stmt.stmt/stmt.label/
p1.cpp 8 label1: // expected-note{{previous definition is here}}
23 default:; // expected-note{{previous case defined here}}
  /external/clang/test/CXX/temp/temp.param/
p1.cpp 9 class T = A, // expected-note{{previous default template argument defined here}}
11 class X0 {}; // expected-note{{template is declared here}}
p5.cpp 5 int &&r = I; // expected-warning 2{{binding reference member 'r' to a temporary value}} expected-note 2{{declared here}}
11 int &&r = v; // expected-warning {{binding reference member 'r' to a temporary value}} expected-note {{declared here}}
  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p1.cpp 23 ScopedEnum2<void*> se2; // expected-note {{here}}
34 ScopedEnum1<double>::E e2 = decltype(e2)::e; // expected-note {{in instantiation of enumeration 'ScopedEnum::ScopedEnum1<double>::E' requested here}}
53 return E::e; // expected-note {{here}}
55 int test2 = g<int>(); // expected-note {{here}}
67 UnscopedEnum1<int> ue1; // expected-note {{here}}
74 UnscopedEnum2<void*> ue2; // expected-note {{here}}
91 int test1 = f<int>(); // expected-note {{here}}
100 int test2 = g<int>(); // expected-note {{here}}
  /external/clang/test/Misc/
error-limit.c 12 // CHECK: 4:8: note: previous definition is here
15 // CHECK-NOT: 8:8: note: previous definition is here
  /external/clang/test/PCH/
cxx-trailing-return.cpp 13 // expected-note@7 {{here}}
15 // expected-note@8 {{here}}
  /external/clang/test/Parser/
cxx11-base-spec-attributes.cpp 7 struct E : public [[]] virtual A {}; // expected-error {{an attribute list cannot appear here}}
8 struct F : virtual [[]] public A {}; // expected-error {{an attribute list cannot appear here}}
  /external/clang/test/Preprocessor/
extension-warning.c 8 // But we should warn here
10 TY(1) x; // FIXME: And we should warn here
  /external/clang/test/Sema/
attr-sentinel.c 7 void foo1 (int x, ...) ATTR; // expected-note 3 {{function has been explicitly marked sentinel here}}
8 void foo5 (int x, ...) __attribute__ ((__sentinel__(1))); // expected-note {{function has been explicitly marked sentinel here}}
9 void foo6 (int x, ...) __attribute__ ((__sentinel__(5))); // expected-note {{function has been explicitly marked sentinel here}}
10 void foo7 (int x, ...) __attribute__ ((__sentinel__(0))); // expected-note {{function has been explicitly marked sentinel here}}
12 void foo12 (int x, ... ) ATTR; // expected-note {{function has been explicitly marked sentinel here}}
45 void (*b) (int arg, const char * format, ...) __attribute__ ((__sentinel__)); // expected-note {{function has been explicitly marked sentinel here}}
46 void (*z) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (2))); // expected-note {{function has been explicitly marked sentinel here}}
49 void (*y) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (5))); // expected-note {{function has been explicitly marked sentinel here}}
c11-typedef-redef.c 12 typedef int vla[N]; // expected-note{{previous definition is here}}
16 typedef vla2 vla3; // expected-note{{previous definition is here}}
no-documentation-warn-tagdecl-specifier.c 18 /** @return s3 Test 3 - expected warning here */
27 /** @return s5 Test 5 - expected warning here */
32 /** @return s6 Test 6 - expected warning here */
37 /** @return s7 Test 7 - expected warning here */
60 /** @return e3 Test 3 - expected warning here */
69 /** @return e5 Test 5 - expected warning here */
74 /** @return e6 Test 6 - expected warning here */
79 /** @return e7 Test 7 - expected warning here */
uninit-det-order.c 9 // CHECK: 5:8: warning: variable 'b' is uninitialized when used here
11 // CHECK: 6:8: warning: variable 'c' is uninitialized when used here
  /external/clang/test/SemaCXX/
conversion-incomplete-type.cpp 9 void expectStringPiece(const StringPiece& blah) {}; // expected-note {{passing argument to parameter 'blah' here}}
17 static void expectStringPiece(const StringPiece& blah) {}; // expected-note {{passing argument to parameter 'blah' here}}
fntype-decl.cpp 5 fn f; // expected-note {{previous declaration is here}}
13 int h(int x) { // expected-note {{previous definition is here}}
warn-char-subscripts.cpp 18 t1<char>(); // expected-note {{in instantiation of function template specialization 't1<char>' requested here}}
19 t2<char>(); // expected-note {{in instantiation of function template specialization 't2<char>' requested here}}
  /external/clang/test/SemaObjC/
DoubleMethod.m 8 - (void) method; // expected-note {{previous declaration is here}}
13 - (void) method {;} // expected-note {{previous declaration is here}}
alias-test-2.m 4 @interface Super @end // expected-note {{previous definition is here}}
6 @interface MyWpModule @end // expected-note {{previous definition is here}}
class-conforming-protocol-2.m 9 - (void)setDelegate:(id <NSWindowDelegate>)anObject; // expected-note {{previous definition is here}}
10 - (id <IBStringsTableWindowDelegate>) delegate; // expected-note {{previous definition is here}}
forward-protocol-incomplete-impl-warn.m 7 - (void)invalidate; // expected-note {{method 'invalidate' declared here}}
8 @property int Prop; // expected-note {{property declared here}}
gc-attributes.m 6 void f0(__strong A**); // expected-note{{passing argument to parameter here}}
15 void f1(__weak A**); // expected-note{{passing argument to parameter here}}
ivar-sem-check-1.m 11 struct T { // expected-note {{previous definition is here}}
15 int kaka; // expected-note {{previous declaration is here}}
ivar-sem-check-2.m 4 id value2; // expected-note {{previously declared 'value2' here}}
18 @synthesize value; // expected-note {{previous use is here}}
mismatched-undefined-method.m 9 - (void)BrightnessAssistantUnregisterForNotifications:(void*) observer; // expected-note {{previous definition is here}}
11 @implementation BrightnessAssistant // expected-note {{implementation started here}}
warn-implicit-atomic-property.m 7 @property (readwrite) int P2; // expected-note {{property declared here}}
8 @property int P3; // expected-note {{property declared here}}

Completed in 325 milliseconds

<<11121314151617181920>>