HomeSort by relevance Sort by last modified time
    Searched full:note (Results 51 - 75 of 18033) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/SemaObjC/
scope-check.m 9 @try { // expected-note {{jump bypasses initialization of @try block}}
11 } @catch (A *x) { // expected-note {{jump bypasses initialization of @catch block}}
15 } @finally {// expected-note {{jump bypasses initialization of @finally block}}
22 } @catch (C *c) { // expected-note {{jump bypasses initialization of @catch block}}
25 } @catch (B *c) { // expected-note {{jump bypasses initialization of @catch block}}
27 } @finally { // expected-note {{jump bypasses initialization of @finally block}}
32 @try { // expected-note 2 {{jump bypasses initialization of @try block}}
44 } @catch (C *c) { // expected-note {{jump bypasses initialization of @catch block}}
52 @synchronized // expected-note {{jump bypasses initialization of @synchronized block}}
83 } @catch (...) { // expected-note {{jump bypasses initialization of @catch block}
    [all...]
arc-unbridged-cast.m 42 x = (id) unauditedString(); // expected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CFBridgingRelease call to}}
43 x = (id) (cond ? unauditedString() : (void*) 0); // expected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CFBridgingRelease call to}}
44 x = (id) (cond ? (void*) 0 : unauditedString()); // expected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CFBridgingRelease call to}}
45 x = (id) (cond ? (CFStringRef) @"help" : unauditedString()); // expected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CFBridgingRelease call to}}
47 x = (id) auditedCreateString(); // expected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CFBridgingRelease call to}
    [all...]
check-dup-objc-decls-1.m 3 @interface Foo // expected-note {{previous definition is here}}
8 @class Bar; // expected-note {{previous definition is here}}
16 typedef int OBJECT; // expected-note {{previous definition is here}}
21 typedef int Gorf; // expected-note {{previous definition is here}}
23 @interface Gorf @end // expected-error {{redefinition of 'Gorf' as different kind of symbol}} expected-note {{previous definition is here}}
32 @interface A<P> @end // expected-note {{previous definition is here}}
35 @protocol PP<P> @end // expected-note {{previous definition is here}}
38 @interface A(Cat)<P> @end // expected-note {{previous definition is here}}
43 NSString * TestBaz; // expected-note {{previous definition is here}}
alias-test-2.m 3 // Note: GCC doesn't produce any of the following errors.
4 @interface Super @end // expected-note {{previous definition is here}}
6 @interface MyWpModule @end // expected-note {{previous definition is here}}
duplicate-ivar-in-class-extension.m 7 int iSuper; // expected-note {{previous declaration is here}}
19 int ivar; // expected-note {{previous declaration is here}}
24 int another_ivar; // expected-note {{previous declaration is here}}
ivar-sem-check-1.m 3 struct S; // expected-note{{forward declaration of 'struct S'}}
11 struct T { // expected-note {{previous definition is here}}
15 int kaka; // expected-note {{previous declaration is here}}
  /external/clang/test/CXX/class/class.union/
p1.cpp 10 virtual void foo() { abort(); } // expected-note 4 {{because type 'Virtual' has a virtual member function}}
13 class VirtualBase : virtual Okay { // expected-note 4 {{because type 'VirtualBase' has a virtual base class}}
17 Ctor() { abort(); } // expected-note 4 {{because type 'Ctor' has a user-declared constructor}}
20 Ctor2(); // expected-note 3 {{because type 'Ctor2' has a user-declared constructor}}
23 template<typename T> CtorTmpl(); // expected-note {{because type 'CtorTmpl' has a user-declared constructor}}
27 CopyCtor(CopyCtor &cc) { abort(); } // expected-note 4 {{because type 'CopyCtor' has a user-declared copy constructor}}
31 class CopyAssign { // expected-note 4 {{because type 'CopyAssign' has a user-declared copy assignment operator}}
36 ~Dtor() { abort(); } // expected-note 4 {{because type 'Dtor' has a user-declared destructor}}
53 Virtual v; // expected-note {{because type 'U2::<anonymous struct}}
56 VirtualBase vbase; // expected-note {{because type 'U2::<anonymous struct}
    [all...]
  /external/clang/test/Misc/
caret-diags-macros.c 9 // CHECK: :4:{{[0-9]+}}: note: expanded from macro 'M2'
10 // CHECK: :3:{{[0-9]+}}: note: expanded from macro 'M1'
19 // CHECK: :15:11: note: expanded from macro 'C'
20 // CHECK: :14:11: note: expanded from macro 'B'
21 // CHECK: :13:11: note: expanded from macro 'A'
49 // CHECK: {{.*}}:36:36: note: expanded from macro 'macro_args3'
50 // CHECK: {{.*}}:35:36: note: expanded from macro 'macro_args2'
51 // CHECK: {{.*}}:34:24: note: expanded from macro 'macro_args1'
58 // CHECK: {{.*}}:40:55: note: expanded from macro 'macro_many_args3'
59 // CHECK: {{.*}}:39:55: note: expanded from macro 'macro_many_args2
    [all...]
macro-backtrace.c 23 // CHECK-LIMIT: macro-backtrace.c:15:19: note: expanded from macro 'M12'
25 // CHECK-LIMIT: macro-backtrace.c:14:19: note: expanded from macro 'M11'
27 // CHECK-LIMIT: note: (skipping 7 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
28 // CHECK-LIMIT: macro-backtrace.c:6:18: note: expanded from macro 'M3'
30 // CHECK-LIMIT: macro-backtrace.c:5:18: note: expanded from macro 'M2'
32 // CHECK-LIMIT: macro-backtrace.c:4:23: note: expanded from macro 'M1'
38 // CHECK-NO-CARETS-NEXT: macro-backtrace.c:15:19: note: expanded from macro 'M12'
39 // CHECK-NO-CARETS-NEXT: macro-backtrace.c:14:19: note: expanded from macro 'M11'
40 // CHECK-NO-CARETS-NEXT: macro-backtrace.c:13:19: note: expanded from macro 'M10'
41 // CHECK-NO-CARETS-NEXT: note: (skipping 6 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/
p14-0x.cpp 4 NoDefault() = delete; // expected-note {{here}}
7 struct Explicit { // expected-note 2 {{candidate}} expected-note {{here}}
12 NoCopy(const NoCopy &) = delete; // expected-note {{here}}
16 NoMove(NoMove &&) = delete; // expected-note {{here}}
19 Private(int); // expected-note {{here}}
32 Explicit e1; // expected-note {{here}}
  /external/clang/test/SemaCXX/
direct-initializer.cpp 16 class X { // expected-note{{candidate constructor (the implicit copy constructor)}}
18 explicit X(int); // expected-note{{candidate constructor}}
19 X(float, float, float); // expected-note{{candidate constructor}}
20 X(float, Y); // expected-note{{candidate constructor}}
23 class Z { // expected-note{{candidate constructor (the implicit copy constructor)}}
25 Z(int); // expected-note{{candidate constructor}}
43 operator int*(); // expected-note {{candidate function}}
ambig-user-defined-conversions.cpp 5 operator int &(); // expected-note {{candidate function}}
8 operator int &(); // expected-note {{candidate function}}
16 void func(const int ci, const char cc); // expected-note {{candidate function}}
17 void func(const char ci, const B b); // expected-note {{candidate function}}
18 void func(const B b, const int ci); // expected-note {{candidate function}}
27 void func2(const char cc); // expected-note {{candidate function}}
28 void func2(const int ci); // expected-note {{candidate function}}
48 void f1(A); // expected-note {{candidate function}}
49 void f1(C); // expected-note {{candidate function}}
default-constructor-initializers.cpp 7 struct X2 : X1 { // expected-note 2 {{'X2' declared here}}
13 X3 x3; // expected-note {{first required here}}
18 X2 x2; // expected-note {{member is declared here}}
19 X2 & rx2; // expected-note {{declared here}}
22 X4 x4; // expected-note {{first required here}}
48 int& z; // expected-note {{declared here}}
49 const int c1; // expected-note {{declared here}}
54 Z1 z1; // expected-note {{first required here}}
58 // Note that this is also non-POD to ensure we don't just special case PODs.
  /external/clang/test/SemaObjCXX/
arc-unbridged-cast.mm 42 x = (id) unauditedString(); // expected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CFBridgingRelease call to}}
43 x = (id) (cond ? unauditedString() : (void*) 0); // expected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CFBridgingRelease call to}}
44 x = (id) (cond ? (void*) 0 : unauditedString()); // expected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CFBridgingRelease call to}}
45 x = (id) (cond ? (CFStringRef) @"help" : unauditedString()); // expected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CFBridgingRelease call to}}
47 x = (id) auditedCreateString(); // expected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CFBridgingRelease call to}
    [all...]
objc-extern-c.mm 3 @protocol P // expected-note {{previous}}
7 @interface I // expected-note {{previous}}
12 @interface I2(C) // expected-note {{previous}}
overload-1.mm 7 void f(id<Proto1> *) { } // expected-note {{previous definition is here}}
11 void f(Class<Proto1> *) { } // expected-note {{previous definition is here}}
17 void f(I<Proto1> *) { } // expected-note {{previous definition is here}}
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForNote.java 23 import android.provider.ContactsContract.CommonDataKinds.Note;
26 * Handler for note data rows.
32 super(context, dbHelper, aggregator, Note.CONTENT_ITEM_TYPE);
42 return values.containsKey(Note.NOTE);
47 builder.appendContentFromColumn(Note.NOTE);
  /external/clang/test/Analysis/
retain-release-path-notes.m 45 id leaked = [[NSObject alloc] init]; // expected-warning{{leak}} expected-note{{Method returns an Objective-C object with a +1 retain count}}
46 return; // expected-note{{Object leaked: object allocated and stored into 'leaked' is not referenced later in this execution path and has a retain count of +1}}
50 CFTypeRef leaked = CFCreateSomething(); // expected-warning{{leak}} expected-note{{Call to function 'CFCreateSomething' returns a Core Foundation object with a +1 retain count}}
51 return; // expected-note{{Object leaked: object allocated and stored into 'leaked' is not referenced later in this execution path and has a retain count of +1}}
55 id leaked = [foo methodWithValue]; // expected-warning{{leak}} expected-note{{Method returns an Objective-C object with a +0 retain count}}
56 [leaked retain]; // expected-note{{Reference count incremented. The object now has a +1 retain count}}
57 [leaked retain]; // expected-note{{Reference count incremented. The object now has a +2 retain count}}
58 [leaked release]; // expected-note{{Reference count decremented. The object now has a +1 retain count}}
59 return; // expected-note{{Object leaked: object allocated and stored into 'leaked' is not referenced later in this execution path and has a retain count of +1}}
63 id leaked = foo.propertyValue; // expected-warning{{leak}} expected-note{{Property returns an Objective-C object with a +0 retain count}
    [all...]
  /external/clang/test/CXX/over/over.over/
p4.cpp 3 template<typename T> T f0(T); // expected-note{{candidate function}}
4 int f0(int); // expected-note{{candidate function}}
13 int f0(int); // expected-note{{candidate function}}
  /external/clang/test/CXX/temp/temp.param/
p11.cpp 5 template<class T1 = int, // expected-note{{previous default template argument defined here}}
9 template<template<class> class = Y1, // expected-note{{previous default template argument defined here}}
13 template<int N = 5, // expected-note{{previous default template argument defined here}}
  /external/clang/test/Sema/
array-declared-as-incorrect-type.c 6 extern int a2[]; // expected-note {{previous definition is here}}
12 extern int a4[][2]; // expected-note {{previous definition is here}}
15 extern int a5[1][2][3]; // expected-note {{previous definition is here}}
  /external/elfutils/backends/
ppc64_reloc.def 31 RELOC_TYPE (ADDR16, REL) /* note 1 */
32 RELOC_TYPE (ADDR16_LO, REL) /* note 1 */
33 RELOC_TYPE (ADDR16_HI, REL) /* note 1 */
34 RELOC_TYPE (ADDR16_HA, REL) /* note 1 */
35 RELOC_TYPE (ADDR14, REL) /* note 1 */
36 RELOC_TYPE (ADDR14_BRTAKEN, REL) /* note 1 */
37 RELOC_TYPE (ADDR14_BRNTAKEN, REL) /* note 1 */
62 RELOC_TYPE (ADDR30, REL) /* note 1 */
64 RELOC_TYPE (ADDR16_HIGHER, REL) /* note 1 */
65 RELOC_TYPE (ADDR16_HIGHERA, REL) /* note 1 *
    [all...]
  /external/clang/test/FixIt/
fixit-vexing-parse.cpp 34 S s1(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
38 S s2, // expected-note {{change this ',' to a ';' to call 'F2'}}
39 F2(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
43 T t1(), // expected-warning {{function declaration}} expected-note {{remove parentheses}}
44 t2(); // expected-warning {{function declaration}} expected-note {{remove parentheses}}
47 U u(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
50 V v(); // expected-warning {{function declaration}} expected-note {{remove parentheses}}
53 W w(); // expected-warning {{function declaration}} expected-note {{remove parentheses}}
61 int n1(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
65 int n2, // expected-note {{change this ',' to a ';' to call 'F1'}
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x.cpp 11 char c2{x}; // expected-error {{ cannot be narrowed }} expected-note {{override}}
12 char c3{y}; // expected-error {{ cannot be narrowed }} expected-note {{override}} expected-warning {{changes value}}
15 unsigned char uc2 = {-1}; // expected-error {{ cannot be narrowed }} expected-note {{override}}
16 unsigned int ui1 = {-1}; // expected-error {{ cannot be narrowed }} expected-note {{override}}
18 { (unsigned int)-1 }; // expected-error {{ cannot be narrowed }} expected-note {{override}}
19 int ii = {2.0}; // expected-error {{ cannot be narrowed }} expected-note {{override}}
20 float f1 { x }; // expected-error {{ cannot be narrowed }} expected-note {{override}}
47 Agg<char> a1 = {1.0F}; // expected-error {{type 'float' cannot be narrowed to 'char'}} expected-note {{override}}
48 Agg<char> a2 = {1.0}; // expected-error {{ cannot be narrowed }} expected-note {{override}}
49 Agg<char> a3 = {1.0L}; // expected-error {{ cannot be narrowed }} expected-note {{override}
    [all...]
p7-cxx11-nowarn.cpp 12 char c2{x}; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
13 char c3{y}; // expected-warning {{ cannot be narrowed }} expected-note {{override}} expected-warning {{changes value}}
16 unsigned char uc2 = {-1}; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
17 unsigned int ui1 = {-1}; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
19 { (unsigned int)-1 }; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
20 int ii = {2.0}; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
21 float f1 { x }; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
48 Agg<char> a1 = {1.0F}; // expected-warning {{type 'float' cannot be narrowed to 'char'}} expected-note {{override}}
49 Agg<char> a2 = {1.0}; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
50 Agg<char> a3 = {1.0L}; // expected-warning {{ cannot be narrowed }} expected-note {{override}
    [all...]

Completed in 213 milliseconds

1 23 4 5 6 7 8 91011>>