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

12 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaObjCXX/
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
  /ndk/tests/build/issue41297-atomic-64bit/jni/
Application.mk 0 # Note that MIPS doesn't support 64-bit atomic built-in yet
  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/lib/
crtend_so.o 
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/lib/
crtend_so.o 
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/lib/
crtend_android.o 
crtend_so.o 
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/lib/
crtend_so.o 
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/lib/
crtend_so.o 
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/lib/
crtend_so.o 
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/lib/
crtend_so.o 
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/lib/
crtend_so.o 
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/lib/
crtend_so.o 
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/lib/
crtend_android.o 
crtend_so.o 
  /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 'A1' is implicitly deleted because variant field 'n' has a non-trivial destructor}}
25 NonTrivDtor n; // expected-note {{because variant field 'n' has a non-trivial destructor}}
31 NonTrivDtor n[3]; // expected-note {{because variant field 'n' has a non-trivial destructor}}
37 NonTrivDtor n[3]; // expected-note {{because variant 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...]
  /external/clang/test/SemaObjC/
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 CFBridgingRelease call to}}
48 x = (id) (cond ? auditedCreateString() : (void*) 0); // expected-error {{requires a bridged cast}} expected-note {{use CFBridgingRelease call to}
    [all...]
  /external/clang/test/SemaCXX/
incomplete-call.cpp 2 struct A; // expected-note 14 {{forward declaration of 'A'}}
4 A f(); // expected-note {{'f' declared here}}
7 A f(); // expected-note {{'f' declared here}}
8 A operator()(); // expected-note 2 {{'operator()' declared here}}
9 operator A(); // expected-note {{'operator A' declared here}}
10 A operator!(); // expected-note 2 {{'operator!' declared here}}
11 A operator++(int); // expected-note {{'operator++' declared here}}
12 A operator[](int); // expected-note {{'operator[]' declared here}}
13 A operator+(int); // expected-note {{'operator+' declared here}}
14 A operator->(); // expected-note {{'operator->' declared here}
    [all...]
overload-call-copycon.cpp 2 class X { }; // expected-note {{the implicit copy constructor}} \
3 // expected-note{{the implicit default constructor}}
5 int& copycon(X x); // expected-note{{passing argument to parameter}}
16 A(A&); // expected-note{{would lose const qualifier}} \
17 // expected-note{{no known conversion}}
20 class B : public A { }; // expected-note{{would lose const qualifier}} \
21 // expected-note{{would lose volatile qualifier}} \
22 // expected-note 2{{requires 0 arguments}}
24 short& copycon2(A a); // expected-note{{passing argument to parameter}}
25 int& copycon2(B b); // expected-note 2{{passing argument to parameter}
    [all...]
expressions.cpp 38 // expected-note {{use '&' for a bitwise operation}} \
39 // expected-note {{remove constant to silence this warning}}
48 // expected-note {{use '&' for a bitwise operation}} \
49 // expected-note {{remove constant to silence this warning}}
52 // expected-note {{use '|' for a bitwise operation}}
55 // expected-note {{use '|' for a bitwise operation}}
57 // expected-note {{use '|' for a bitwise operation}}
59 // expected-note {{use '|' for a bitwise operation}}
61 // expected-note {{use '|' for a bitwise operation}}
63 // expected-note {{use '&' for a bitwise operation}}
    [all...]
warn-assignment-condition.cpp 16 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
17 // expected-note{{place parentheses around the assignment to silence this warning}}
21 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
22 // expected-note{{place parentheses around the assignment to silence this warning}}
26 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
27 // expected-note{{place parentheses around the assignment to silence this warning}}
31 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
32 // expected-note{{place parentheses around the assignment to silence this warning}}
36 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
37 // expected-note{{place parentheses around the assignment to silence this warning}
    [all...]
  /external/clang/test/CXX/basic/basic.scope/basic.scope.hiding/
p2.cpp 5 struct X { // expected-note{{candidate found by name lookup}}
14 } X; // expected-note{{candidate found by name lookup}}
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p9.cpp 3 struct S; // expected-note 2{{forward declaration of 'S'}}
5 extern S f(); // expected-note {{'f' declared here}}
  /external/clang/test/CXX/dcl.decl/dcl.init/
p7.cpp 7 A() = default; // expected-note {{here}}
12 explicit B() = default; // expected-note {{here}}

Completed in 1297 milliseconds

12 3 4 5 6 7 8 91011>>