/external/clang/test/SemaObjC/ |
objc-container-subscripting.m | 7 - (id)objectAtIndexedSubscript:(double)index; // expected-note {{parameter of type 'double' is declared here}} 8 - (void)setObject:(id *)object atIndexedSubscript:(void *)index; // expected-note {{parameter of type 'void *' is declared here}} \ 9 // expected-note {{parameter of type 'id *' is declared here}} 29 - (id)objectForKeyedSubscript:(id*)key; // expected-note {{parameter of type 'id *' is declared here}} 30 - (void)setObject:(void*)object forKeyedSubscript:(id*)key; // expected-note {{parameter of type 'void *' is declared here}} \ 31 // expected-note {{parameter of type 'id *' is declared here}}
|
/external/clang/test/SemaObjCXX/ |
instantiate-stmt.mm | 13 template void throw_test(int); // expected-note{{in instantiation of}} 24 template void synchronized_test(int); // expected-note{{in instantiation of}} 59 template void fast_enumeration_test<int>(NSArray*); // expected-note{{in instantiation of}} 60 template void fast_enumeration_test<NSString *>(vector); // expected-note{{in instantiation of}} 77 template void try_catch_finally_test<NSString *>(int*); // expected-note{{in instantiation of}} 78 template void try_catch_finally_test<NSString>(int); // expected-note{{in instantiation of function template specialization 'try_catch_finally_test<NSString, int>' requested here}}
|
/external/clang/test/SemaTemplate/ |
instantiate-template-template-parm.cpp | 23 template<int> struct B; // expected-note{{has a different type 'int'}} 27 // expected-note{{with type 'long'}} 31 X0<float, B> x0b2; // expected-note{{while substituting}} 34 template<template<int V> class TT> // expected-note{{parameter with type 'int'}} 43 template<long V> struct X3l { }; // expected-note{{different type 'long'}} 46 X2<long, X3l> x2bad; // expected-note{{instantiation}}
|
instantiate-member-template.cpp | 7 // expected-note{{candidate}} 12 X0<int&> x0ir; // expected-note{{instantiation}} 47 void f0(T t, U u) { // expected-note{{passing argument to parameter 't' here}} 83 X1<void>::Inner0<int> xvi; // expected-note{{instantiation}} 86 X1<int>::Inner1<void> xiv; // expected-note{{instantiation}} 89 X1<int>::Inner2<void>::SuperInner xisiv; // expected-note{{instantiation}} 95 id3.f1(ip, i, dp); // expected-note{{instantiation}} 98 id3b.f0(ip, dp); // expected-note{{instantiation}} 101 id4.f2(ip, i, dp); // expected-note{{instantiation}} 104 i = X1<int*>::Inner4<int&>::value; // expected-note{{instantiation} [all...] |
/external/llvm/utils/ |
clang-parse-diagnostics-file | 20 parser.add_option("-n", "--note", action="store_true", dest="note", 21 default=False, help="dump 'note' messages.") 30 'note': False, 'warning': False} 37 if opts.note: 38 levels['note'] = True
|
/external/clang/test/SemaCXX/ |
cxx0x-initializer-constructor.cpp | 41 struct X2 { explicit X2(int); }; // expected-note {{constructor declared here}} 58 D(std::initializer_list<int>) { static_assert(N == 0, ""); } // expected-note 1 {{candidate}} 59 D(std::initializer_list<double>) { static_assert(N == 1, ""); } // expected-note 1 {{candidate}} 125 struct B { // expected-note 2 {{candidate constructor}} 126 B(C, int, C); // expected-note {{candidate constructor not viable: cannot convert initializer list argument to 'objects::C'}} 135 one ov1(B); // expected-note {{not viable: cannot convert initializer list}} 136 two ov1(C); // expected-note {{not viable: cannot convert initializer list}} 150 struct G { // expected-note 6 {{not viable}} 153 G(std::initializer_list<int>, T ...); // expected-note 3 {{not viable}} 156 struct H { // expected-note 6 {{not viable} [all...] |
/external/oprofile/daemon/liblegacy/ |
init.c | 72 fprintf(stderr, "Failed to open note device. Possibly you have passed incorrect\n" 75 perror("Failed to open note device"); 117 * @param nbuf note buffer area 118 * @param nsize size of note buffer 132 /* it's always OK to read the note device */ 159 * @param nbuf note buffer 160 * @param nsize size of note buffer 215 struct op_note const * note; local 218 note = &opd_buf[i]; 222 switch (note->type) [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
TelephonyIntents.java | 49 * <p class="note"> 52 * <p class="note">This is a protected intent that can only be sent 64 * <p class="note"> 70 * <p class="note"> 73 * <p class="note">This is a protected intent that can only be sent 83 * <p class="note"> 89 * <p class="note"> 92 * <p class="note">This is a protected intent that can only be sent 109 * <p class="note"> 115 * <p class="note"> [all...] |
/development/samples/training/multiscreen/newsreader/ |
_index.html | 6 <p class="note"><strong>Note:</strong> This sample uses the Android Support Library. To build the
|
/external/chromium/chrome/browser/chromeos/ |
cros_settings_provider.h | 19 // Note that this takes ownership of |in_value|. 23 // Note that |out_value| is owned by the caller, not this class.
|
/external/chromium/chrome/browser/extensions/ |
convert_user_script.h | 21 // NOTE: This function does file IO and should not be called on the UI thread. 22 // NOTE: The caller takes ownership of the directory at extension->path() on the
|
/external/clang/test/ASTMerge/ |
class.cpp | 6 // CHECK: class1.cpp:6:9: note: field 'y' has type 'float' here 7 // CHECK: class2.cpp:6:7: note: field 'y' has type 'int' here
|
/external/clang/test/CXX/basic/basic.def.odr/ |
p1-var.cpp | 8 int i; // expected-note {{previous}} 20 int l = 1; // expected-note {{previous}}
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/ |
p2.cpp | 9 typedef int A; // expected-note {{declared here}} 18 template <class> class A; // expected-note {{declared here}}
|
/external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/ |
p2.cpp | 22 void* operator new(std::size_t) throw(std::bad_alloc); // expected-note{{previous declaration}} 24 void operator delete(void*) throw(); // expected-note{{previous declaration}}
|
/external/clang/test/CXX/class/class.base/class.base.init/ |
p5-0x.cpp | 11 E() : a(1), // expected-note{{previous initialization is here}} 22 F() : a(1), // expected-note{{previous initialization is here}}
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/ |
p4-cxx0x.cpp | 24 int f0(int); // expected-note{{possible target}} 25 float f0(float); // expected-note{{possible target}}
|
/external/clang/test/CXX/except/except.spec/ |
p3.cpp | 24 extern void (*r5)() throw(int); // expected-note {{previous declaration}} 28 extern void f5() throw(int); // expected-note {{previous declaration}} 32 extern void (*r7)() throw(int); // expected-note {{previous declaration}} 53 extern void (*r12)() noexcept; // expected-note {{previous declaration}} 61 extern void (*r14)() noexcept(true); // expected-note {{previous declaration}} 73 extern void (*r17)(); // expected-note {{previous declaration}} 90 extern void (*r20)() throw(); // expected-note {{previous declaration}} 93 extern void (*r21)() throw(int); // expected-note {{previous declaration}}
|
/external/clang/test/CXX/expr/expr.unary/expr.new/ |
p19.cpp | 23 new X0<3>; // expected-note 2{{instantiation}} 45 new X1<3> [17]; // expected-note 2{{instantiation}}
|
/external/clang/test/CXX/expr/expr.unary/expr.unary.op/ |
p6.cpp | 32 bool f() { } // expected-note{{possible target for call}} 33 void f(char) { } // expected-note{{possible target for call}}
|
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.copy/ |
p1.cpp | 4 struct X { }; // expected-note 2{{candidate constructor}} 18 struct C { }; // expected-note 2 {{candidate constructor}}
|
/external/clang/test/CXX/stmt.stmt/stmt.dcl/ |
p3-0x.cpp | 34 Y y; // expected-note{{jump bypasses variable with a non-trivial destructor}} 39 Y y2; // expected-note{{jump bypasses variable with a non-trivial destructor}}
|
p3.cpp | 33 Y y; // expected-note{{jump bypasses variable with a non-trivial destructor}} 44 Z z; // expected-note{{jump bypasses initialization of non-POD variable}}
|
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/ |
p1-inst.cpp | 17 struct CannotInit { }; // expected-note{{candidate constructor (the implicit copy constructor) not viable}} 27 return X<CannotInit>::value; // expected-note{{instantiation}}
|
p1.cpp | 15 struct X2 { }; // expected-note{{candidate constructor (the implicit copy constructor) not viable}} 23 return X0<X2>::value; // expected-note{{instantiation}}
|