/external/clang/test/SemaObjC/ |
undef-protocol-methods-1.m | 4 - (void) P1proto; // expected-note {{method 'P1proto' declared here}} 5 + (void) ClsP1Proto; // expected-note {{method 'ClsP1Proto' declared here}} 9 - (void) P2proto; // expected-note {{method 'P2proto' declared here}} 10 + (void) ClsP2Proto; // expected-note {{method 'ClsP2Proto' declared here}} 14 - (void) P3proto; // expected-note {{method 'P3proto' declared here}} 15 + (void) ClsP3Proto; // expected-note {{method 'ClsP3Proto' declared here}} 20 - (void) meth; // expected-note {{method 'meth' declared here}} 21 - (void) meth : (int) arg1; // expected-note {{method 'meth:' declared here}} 22 + (void) cls_meth : (int) arg1; // expected-note {{method 'cls_meth:' declared here}} 25 @interface INTF <PROTO> // expected-note 3 {{required for direct or indirect protocol 'PROTO'}} [all...] |
/external/clang/test/SemaTemplate/ |
instantiate-exception-spec.cpp | 3 // FIXME: the "note" should be down at the call site! 5 // expected-note{{instantiation of}} 6 struct Incomplete; // expected-note{{forward}}
|
recursive-template-instantiation.cpp | 3 template<typename T> void f(T* t) { // expected-note{{failed template argument deduction}} 5 // expected-note 3{{requested here}} 9 f(p); // expected-note{{requested here}}
|
/external/elfutils/backends/ |
ppc_reloc.def | 31 RELOC_TYPE (ADDR16, REL|EXEC|DYN) /* note 1 */ 32 RELOC_TYPE (ADDR16_LO, REL|EXEC|DYN) /* note 1 */ 33 RELOC_TYPE (ADDR16_HI, REL|EXEC|DYN) /* note 1 */ 34 RELOC_TYPE (ADDR16_HA, REL|EXEC|DYN) /* note 1 */ 35 RELOC_TYPE (ADDR14, REL|EXEC|DYN) /* note 1 */ 36 RELOC_TYPE (ADDR14_BRTAKEN, REL|EXEC|DYN) /* note 1 */ 37 RELOC_TYPE (ADDR14_BRNTAKEN, REL|EXEC|DYN) /* note 1 */ 38 RELOC_TYPE (REL24, REL|EXEC|DYN) /* note 1 */ 39 RELOC_TYPE (REL14, REL|EXEC|DYN) /* note 1 */ 40 RELOC_TYPE (REL14_BRTAKEN, REL|EXEC|DYN) /* note 1 * [all...] |
/external/clang/test/CXX/special/class.inhctor/ |
p7.cpp | 5 B1(int); // expected-note {{previous constructor}} expected-note {{conflicting constructor}} 8 B2(int); // expected-note {{conflicting constructor}} 11 using B1::B1; // expected-note {{inherited here}} 21 B3(T); // expected-note {{previous constructor}} 25 using B3<T>::B3; // expected-note {{inherited here}} 29 B4<int> b4i; // expected-note {{here}}
|
/external/icu4c/test/testdata/ |
ra.txt | 11 * @note Comments for tag named ra 17 * @note {0} represents the position of OSNAME and {1} represents the position of job name 23 * @note This resource is for test2 31 * @note This resource is for TestTable 37 * @note This resource is for test3 43 * @note This resource is for test4 49 * @note This resource is for test5 55 * @note This resource is for test6 62 * @note This resource is for Tag name: Array 68 * @note This resource is un-named strin [all...] |
/external/clang/test/CXX/basic/basic.scope/basic.scope.local/ |
p4-0x.cpp | 7 if (bool b = true) // expected-note 2{{previous definition}} 11 while (bool b = true) // expected-note {{previous definition}} 13 for (int c; // expected-note 2{{previous definition}} 16 switch (int n = 37 + 5) // expected-note {{previous definition}} 18 for (int a : arr) // expected-note {{previous definition}} 21 if (bool b = true) { // expected-note 2{{previous definition}} 26 while (bool b = true) { // expected-note {{previous definition}} 29 for (int c; // expected-note 2{{previous definition}} 33 switch (int n = 37 + 5) { // expected-note {{previous definition}} 36 for (int &a : arr) { // expected-note {{previous definition} [all...] |
/external/clang/test/SemaCXX/ |
implicit-virtual-member-functions.cpp | 9 void operator delete (void *, int); // expected-note {{'operator delete' declared here}} 12 void B::f() { // expected-note {{implicit default destructor for 'B' first required here}} 17 void operator delete(void *, int); // expected-note {{'operator delete' declared here}} 20 C::C() { } // expected-note {{implicit default destructor for 'C' first required here}} 23 void operator delete(void *, int); // expected-note {{'operator delete' declared here}} 27 new D; // expected-note {{implicit default destructor for 'D' first required here}}
|
/development/tutorials/NotepadCodeLab/Notepadv2/res/values/ |
strings.xml | 5 <string name="menu_insert">Add Note</string> 6 <string name="menu_delete">Delete Note</string> 10 <string name="edit_note">Edit Note</string>
|
/development/tutorials/NotepadCodeLab/Notepadv2Solution/res/values/ |
strings.xml | 5 <string name="menu_insert">Add Note</string> 6 <string name="menu_delete">Delete Note</string> 10 <string name="edit_note">Edit Note</string>
|
/development/tutorials/NotepadCodeLab/Notepadv3/res/values/ |
strings.xml | 5 <string name="menu_insert">Add Note</string> 6 <string name="menu_delete">Delete Note</string> 10 <string name="edit_note">Edit Note</string>
|
/development/tutorials/NotepadCodeLab/Notepadv3Solution/res/values/ |
strings.xml | 5 <string name="menu_insert">Add Note</string> 6 <string name="menu_delete">Delete Note</string> 10 <string name="edit_note">Edit Note</string>
|
/external/clang/test/Parser/ |
missing-end-2.m | 4 @interface A // expected-note {{class started here}} 10 @interface B { // expected-note {{class started here}} 16 @interface C // expected-note 2 {{class started here}}
|
/external/clang/test/Sema/ |
cast-incomplete.c | 4 enum x; // expected-note {{forward declaration}} 5 extern struct y a; // expected-note {{forward declaration}} 6 extern union z b; // expected-note 2 {{forward declaration}}
|
/external/llvm/utils/llvm-build/llvmbuild/ |
util.py | 8 note = lambda message: _write_message('note', message) variable 13 __all__ = ['note', 'warning', 'error', 'fatal']
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/ |
p7.cpp | 3 namespace NIL {} // expected-note {{previous definition}} 5 inline namespace IL {} // expected-note {{previous definition}} 8 namespace {} // expected-note {{previous definition}} 11 inline namespace {} // expected-note {{previous definition}}
|
/external/clang/test/CXX/temp/temp.decls/temp.friend/ |
p4.cpp | 6 // expected-note{{previous definition}} 10 X1<float> x1b; // expected-note {{in instantiation of}} 17 // expected-note{{previous definition}} 21 int array1[sizeof(X2<float>)]; // expected-note{{instantiation of}}
|
/external/clang/test/Misc/ |
error-limit.c | 3 // error and note emitted 7 // error and note suppressed by error-limit 12 // CHECK: 4:8: note: previous definition is here 15 // CHECK-NOT: 8:8: note: previous definition is here
|
diag-macro-backtrace.c | 20 // CHECK: :13:14: note: expanded from macro 'FOOL' 23 // CHECK: :12:15: note: expanded from macro 'DROOL' 26 // CHECK: :11:13: note: expanded from macro 'WAZ' 29 // CHECK: :10:13: note: expanded from macro 'ZAZ' 32 // CHECK: :9:13: note: expanded from macro 'BAB' 35 // CHECK: :8:13: note: expanded from macro 'ABA' 38 // CHECK: :7:13: note: expanded from macro 'TAZ' 41 // CHECK: :6:13: note: expanded from macro 'QUZ' 44 // CHECK: :5:13: note: expanded from macro 'BAZ' 47 // CHECK: :4:13: note: expanded from macro 'BAR [all...] |
/external/clang/test/Modules/Inputs/NoUmbrella.framework/Headers/ |
A.h | 6 // Note: warning here is suppressed because this module is considered a
|
/external/clang/test/SemaObjCXX/ |
ivar-construct.mm | 6 ~Y(); // expected-note 3{{declared private here}} 12 struct Z; // expected-note{{forward declaration}} 15 X<Y> x; // expected-note{{implicit default destructor}} 20 @implementation A // expected-note{{implicit default constructor}}
|
warn-strict-selector-match.mm | 4 - (id) meth1: (Base *)arg1; // expected-note {{using}} 5 - (id) window; // expected-note {{using}} 9 - (id) meth1: (Derived *)arg1; // expected-note {{also found}} 10 - (Base *) window; // expected-note {{also found}}
|
/frameworks/compile/slang/tests/P_redefine_RS_VERSION/ |
stderr.txt.expect | 2 <built-in>:1:9: note: previous definition is here
|
/external/clang/include/clang/Basic/ |
DiagnosticASTKinds.td | 13 def note_expr_divide_by_zero : Note<"division by zero">; 14 def note_constexpr_invalid_cast : Note< 17 def note_constexpr_invalid_downcast : Note< 19 def note_constexpr_overflow : Note< 21 def note_constexpr_negative_shift : Note<"negative shift count %0">; 22 def note_constexpr_large_shift : Note< 24 def note_constexpr_lshift_of_negative : Note<"left shift of negative value %0">; 25 def note_constexpr_lshift_discards : Note<"signed left shift discards bits">; 26 def note_constexpr_invalid_function : Note< 29 def note_constexpr_virtual_call : Note< [all...] |
/external/clang/test/CXX/special/class.dtor/ |
p5-0x.cpp | 7 ~DeletedDtor() = delete; // expected-note 5 {{deleted here}} 19 NonTrivDtor n; // expected-note {{destructor of union 'A1' is implicitly deleted because field 'n' has a non-trivial destructor}} 25 NonTrivDtor n; // expected-note {{because field 'n' has a non-trivial destructor}} 31 NonTrivDtor n[3]; // expected-note {{because field 'n' has a non-trivial destructor}} 37 NonTrivDtor n[3]; // expected-note {{because field 'n' has a non-trivial destructor}} 46 DeletedDtor a; // expected-note {{because field 'a' has a deleted destructor}} 51 InaccessibleDtor a; // expected-note {{because field 'a' has an inaccessible destructor}} 56 DeletedDtor a[4]; // expected-note {{because field 'a' has a deleted destructor}} 61 InaccessibleDtor a[4]; // expected-note {{because field 'a' has an inaccessible destructor}} 67 union { // expected-note {{because field '' has a deleted destructor} [all...] |