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

1 2 3 4 5 6 7 8 91011>>

  /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/CXX/special/class.copy/
p23-cxx11.cpp 31 DeletedCopyAssign &operator=(const DeletedCopyAssign &) = delete; // expected-note 2{{deleted}}
34 DeletedMoveAssign &operator=(DeletedMoveAssign &&) = delete; // expected-note 2{{deleted}}
50 NonTrivialCopyAssign x; // expected-note {{variant field 'x' has a non-trivial copy assign}}
53 template struct CopyAssign<A1>; // expected-note {{here}}
56 A2 &operator=(A2 &&) = default; // expected-note {{here}}
58 NonTrivialMoveAssign x; // expected-note {{variant field 'x' has a non-trivial move assign}}
61 template struct MoveAssign<A2>; // expected-note {{here}}
65 const int a; // expected-note 2{{field 'a' is of const-qualified type}}
68 const void *const a[3][9][2]; // expected-note 2{{field 'a' is of const-qualified type 'const void *const [3][9][2]'}}
73 template struct CopyAssign<B1>; // expected-note {{here}
    [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{{could not match 'T *' against 'int'}}
5 // expected-note 3{{requested here}}
9 f(p); // expected-note{{requested here}}
instantiation-backtrace.cpp 2 template<typename T> struct A; // expected-note 4{{template is declared here}}
7 template<typename T> struct C : B<T> { } ; // expected-note{{instantiation of template class}}
9 template<typename T> struct D : C<T> { }; // expected-note{{instantiation of template class}}
11 template<typename T> struct E : D<T> { }; // expected-note{{instantiation of template class}}
13 template<typename T> struct F : E<T(T)> { }; // expected-note{{instantiation of template class}}
16 (void)sizeof(F<int>); // expected-note{{instantiation of template class}}
22 (void)sizeof(B<X>); // expected-note{{in instantiation of template class 'B<X>' requested here}}
31 (void)sizeof(G<int>); // expected-note{{in instantiation of template class 'G<int>' requested here}}
36 T t; // expected-note {{reference member 't' will never be initialized}}
41 // expected-note {{instantiation of template class 'PR13365::ResultTy<int &>'}}
    [all...]
  /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/Analysis/diagnostics/
deref-track-symbolic-region.cpp 10 S &r = *p; //expected-note {{'r' initialized here}}
12 //expected-note@-1{{Taking false branch}}
13 //expected-note@-2{{Assuming 'p' is null}}
15 // expected-note@-1{{Access to field 'y' results in a dereference of a null pointer (loaded from variable 'r')}}
19 int &ref = *ptr; // expected-note {{'ref' initialized here}}
21 // expected-note@-1{{Assuming 'ptr' is null}}
22 // expected-note@-2{{Taking false branch}}
27 // expected-note@-1{{Forming reference to null pointer}}
31 int *p = 0; // expected-note {{'p' initialized to a null pointer value}}
32 int *const &p2 = p; // expected-note{{'p2' initialized here}
    [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/smack/src/org/jivesoftware/smackx/commands/
AdHocCommandNote.java 24 * Notes can be added to a command execution response. A note has a type and value.
34 * Creates a new adhoc command note with the specified type and value.
36 * @param type the type of the note.
37 * @param value the value of the note.
45 * Returns the value or message of the note.
47 * @return the value or message of the note.
54 * Return the type of the note.
56 * @return the type of the note.
63 * Represents a note type.
68 * The note is informational only. This is not really an exceptional
    [all...]
  /development/ndk/platforms/android-9/arch-x86/lib-bootstrap/
crtend_android.o 
  /external/clang/docs/
Block-ABI-Apple.txt 0 *NOTE* This document has moved to http://clang.llvm.org/docs/Block-ABI-Apple.html.
  /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
  /external/clang/test/Modules/Inputs/NoUmbrella.framework/Headers/
A.h 6 // Note: warning here is suppressed because this module is considered a

Completed in 7608 milliseconds

1 2 3 4 5 6 7 8 91011>>