HomeSort by relevance Sort by last modified time
    Searched full:warning (Results 376 - 400 of 21668) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaCXX/
ms-empty_bases.cpp 4 enum __declspec(empty_bases) E {}; // expected-warning{{'empty_bases' attribute only applies to classes}}
5 int __declspec(empty_bases) I; // expected-warning{{'empty_bases' attribute only applies to classes}}
6 typedef struct T __declspec(empty_bases) U; // expected-warning{{'empty_bases' attribute only applies to classes}}
7 auto z = []() __declspec(empty_bases) { return nullptr; }; // expected-warning{{'empty_bases' attribute only applies to classes}}
ms-novtable.cpp 4 enum __declspec(novtable) E {}; // expected-warning{{'novtable' attribute only applies to classes}}
5 int __declspec(novtable) I; // expected-warning{{'novtable' attribute only applies to classes}}
6 typedef struct T __declspec(novtable) U; // expected-warning{{'novtable' attribute only applies to classes}}
7 auto z = []() __declspec(novtable) { return nullptr; }; // expected-warning{{'novtable' attribute only applies to classes}}
warn-consumed-parsing.cpp 9 // FIXME: This test is here because the warning is issued by the Consumed
14 int returnTypestateForUnconsumable() RETURN_TYPESTATE(consumed); // expected-warning {{return state set for an unconsumable type 'int'}}
25 int var0 SET_TYPESTATE(consumed); // expected-warning {{'set_typestate' attribute only applies to methods}}
26 int var1 TEST_TYPESTATE(consumed); // expected-warning {{'test_typestate' attribute only applies to methods}}
27 int var2 CALLABLE_WHEN("consumed"); // expected-warning {{'callable_when' attribute only applies to methods}}
28 int var3 CONSUMABLE(consumed); // expected-warning {{'consumable' attribute only applies to classes}}
29 int var4 RETURN_TYPESTATE(consumed); // expected-warning {{'return_typestate' attribute only applies to functions}}
31 void function0() SET_TYPESTATE(consumed); // expected-warning {{'set_typestate' attribute only applies to methods}}
32 void function1() TEST_TYPESTATE(consumed); // expected-warning {{'test_typestate' attribute only applies to methods}}
33 void function2() CALLABLE_WHEN("consumed"); // expected-warning {{'callable_when' attribute only applies to methods}
    [all...]
warn-unused-comparison.cpp 18 x == 7; // expected-warning {{equality comparison result unused}} \
20 x != 7; // expected-warning {{inequality comparison result unused}} \
22 x < 7; // expected-warning {{relational comparison result unused}}
23 x > 7; // expected-warning {{relational comparison result unused}}
24 x <= 7; // expected-warning {{relational comparison result unused}}
25 x >= 7; // expected-warning {{relational comparison result unused}}
27 7 == x; // expected-warning {{equality comparison result unused}}
28 p == p; // expected-warning {{equality comparison result unused}} \
30 // expected-warning {{self-comparison always evaluates to true}}
31 a == a; // expected-warning {{equality comparison result unused}}
    [all...]
warn-unused-label-error.cpp 7 A: // expected-warning {{unused label 'A'}}
10 __attribute__((unused)); int j; // expected-warning {{unused variable 'j'}}
21 D: // expected-warning {{unused label 'D'}}
23 __attribute__((unused)) // expected-warning {{declaration does not declare anything}}
  /external/clang/test/SemaObjC/
arc-unsafe-assigns.m 24 self.unsafe_prop = [Foo new]; // expected-warning {{assigning retained object to unsafe property}}
25 self->unsafe_ivar = [Foo new]; // expected-warning {{assigning retained object to unsafe_unretained}}
26 self.unsafe_prop = [[Foo alloc] init]; // expected-warning {{assigning retained object to unsafe property}}
27 self->unsafe_ivar = [[Foo alloc] init]; // expected-warning {{assigning retained object to unsafe_unretained}}
30 unsafe_var = [Foo new]; // expected-warning {{assigning retained object to unsafe_unretained}}
31 unsafe_var = [[Foo alloc] init]; // expected-warning {{assigning retained object to unsafe_unretained}}
36 f.unsafe_prop = [Foo new]; // expected-warning {{assigning retained object to unsafe property}}
39 unsafe_var = [Foo new]; // expected-warning {{assigning retained object to unsafe_unretained}}
40 unsafe_var = [[Foo alloc] init]; // expected-warning {{assigning retained object to unsafe_unretained}}
conversion.m 10 f.otherStuff = !f.stuff; // no-warning
11 BOOL b = !f.stuff; // no-warning
13 // True positive to sanity check warning is working.
14 x = y; // expected-warning {{implicit conversion loses integer precision: 'int' to 'char'}}
method-not-defined.m 10 [[Foo alloc] init]; // expected-warning {{class method '+alloc' not found (return type defaults to 'id')}} expected-warning {{instance method '-init' not found (return type defaults to 'id')}}
11 [fooObj notdefined]; // expected-warning {{instance method '-notdefined' not found (return type defaults to 'id')}}
12 [obj whatever:1 :2 :3]; // expected-warning {{instance method '-whatever:::' not found (return type defaults to 'id')}}
warn-incompatible-builtin-types.m 13 [f foo:f]; // expected-warning {{incompatible pointer types sending 'Foo *' to parameter of type 'Class'}}
14 c = f; // expected-warning {{incompatible pointer types assigning to 'Class' from 'Foo *'}}
24 s1 = i; // expected-warning {{incompatible pointer types assigning to 'SEL' from 'id'}}
25 i = s1; // expected-warning {{incompatible pointer types assigning to 'id' from 'SEL'}}
29 s1 = c; // expected-warning {{incompatible pointer types assigning to 'SEL' from 'Class'}}
31 c = s1; // expected-warning {{incompatible pointer types assigning to 'Class' from 'SEL'}}
35 f = c; // expected-warning {{incompatible pointer types assigning to 'Foo *' from 'Class'}}
37 f = s1; // expected-warning {{incompatible pointer types assigning to 'Foo *' from 'SEL'}}
41 s1 = f; // expected-warning {{incompatible pointer types assigning to 'SEL' from 'Foo *'}}
  /external/clang/test/SemaOpenCL/
endian-attr.cl 3 constant long a __attribute__((endian(host))) = 100; // expected-warning {{unknown attribute 'endian' ignored}}
  /external/libxml2/result/errors/
attr3.xml.err 1 ./test/errors/attr3.xml:4: validity warning : Attribute a1 of element doc: already defined
attr3.xml.str 1 ./test/errors/attr3.xml:4: validity warning : Attribute a1 of element doc: already defined
  /external/libxml2/result/scripts/
set3.err 1 ./test/scripts/set3.xml:1: namespace warning : xmlns: URI bar is not absolute
  /external/llvm/test/
TestRunner.sh 4 echo "warning: '$0' is deprecated, use 'llvm-lit' instead."
  /external/llvm/test/YAMLParser/
spec-07-01.test 4 # with a warning.
spec-07-02.test 4 # with a warning
  /external/mesa3d/src/gallium/targets/omx/
omx.sym 5 # Workaround for an LLVM warning with -simplifycfg-sink-common
  /external/mesa3d/src/gallium/targets/pipe-loader/
pipe.sym 6 # Workaround for an LLVM warning with -simplifycfg-sink-common
  /external/mesa3d/src/gallium/targets/va/
va.sym 5 # Workaround for an LLVM warning with -simplifycfg-sink-common
  /external/swiftshader/third_party/LLVM/test/MC/Disassembler/X86/
truncated-input.txt 3 # CHECK: warning
  /external/swiftshader/third_party/LLVM/test/
TestRunner.sh 4 echo "warning: '$0' is deprecated, use 'llvm-lit' instead."
  /external/swiftshader/third_party/LLVM/utils/lit/lit/ExampleTests/Clang/
fsyntax-only.c 3 int f0(void) {} // expected-warning {{control reaches end of non-void function}}
  /frameworks/compile/slang/tests/P_redefine_RS_VERSION/
stderr.txt.expect 1 redefine_RS_VERSION.rs:4:9: warning: 'RS_VERSION' macro redefined
  /frameworks/layoutlib/bridge/.settings/
README.txt 2 This ensure proper compilation compliance and warning/error levels
  /frameworks/layoutlib/create/.settings/
README.txt 2 This ensure proper compilation compliance and warning/error levels

Completed in 429 milliseconds

<<11121314151617181920>>