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

<<31323334353637383940>>

  /external/clang/test/Sema/
warn-shift-negative.c 5 return a << i; // expected-warning{{shift count is negative}}
warn-sizeof-arrayarg.c 11 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'int [10]'}}
13 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'int [10]'}}
15 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'int [10]'}}
17 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'Arr' (aka 'int [10]')}}
  /external/clang/test/SemaCXX/Inputs/
override-system-header.h 1 // override-system-header.h to test out 'override' warning.
  /external/clang/test/SemaCXX/
attr-flag-enum-reject.cpp 3 enum __attribute__((flag_enum)) flag { // expected-warning {{ignored}}
attr-sentinel.cpp 19 S s(1,2,3); // expected-warning {{missing sentinel in function call}}
20 S* s2 = new (1,2,3) S(1, __null); // expected-warning {{missing sentinel in function call}}
21 s2->a(1,2,3); // expected-warning {{missing sentinel in function call}}
22 s(1,2,3); // expected-warning {{missing sentinel in function call}}
cxx11-gnu-attrs.cpp 6 // expected-warning@-1 {{unknown attribute 'this_attribute_does_not_exist' ignored}}
10 // expected-warning@-1 {{attribute 'unused' ignored, because it cannot be applied to a type}}
12 // expected-warning@-1 {{calling convention 'fastcall' ignored for this target}}
14 // expected-warning@-1 {{calling convention 'fastcall' ignored for this target}}
15 // expected-warning@-2 {{calling convention 'stdcall' ignored for this target}}
17 // expected-warning@-1 {{calling convention 'fastcall' ignored for this target}}
18 // expected-warning@-2 {{calling convention '__stdcall' ignored for this target}}
20 // expected-warning@-1 {{calling convention 'fastcall' ignored for this target}}
21 // expected-warning@-2 {{attribute 'stdcall' ignored, because it cannot be applied to a type}}
22 // expected-warning@-3 {{calling convention 'stdcall' ignored for this target}
    [all...]
ms-layout_version.cpp 4 enum __declspec(layout_version(19)) E {}; // expected-warning{{'layout_version' attribute only applies to classes}}
5 int __declspec(layout_version(19)) I; // expected-warning{{'layout_version' attribute only applies to classes}}
6 typedef struct T __declspec(layout_version(19)) U; // expected-warning{{'layout_version' attribute only applies to classes}}
7 auto z = []() __declspec(layout_version(19)) { return nullptr; }; // expected-warning{{'layout_version' attribute only applies to classes}}
no-warn-unused-const-variables.cpp 4 int i = 0; // expected-warning {{unused variable 'i'}}
parentheses.cpp 7 return false && false || array[f.get()]; // expected-warning {{'&&' within '||'}} expected-note {{parentheses}}
pr9812.cpp 5 bool signed; // expected-error {{'bool' cannot be signed or unsigned}} expected-warning {{declaration does not declare anything}}
warn-member-not-needed.cpp 5 void g() {} // expected-warning {{is not needed and will not be emitted}}
warn-self-comparisons.cpp 5 if (array1 == array2) { } // no warning
warn-sign-conversion.cpp 3 // NOTE: When a 'enumeral mismatch' warning is implemented then expect several
28 int d1a = 1 ? i : Foo<bool>::D; // expected-warning {{test1::Foo<bool>::(anonymous enum at }}
29 int d1b = 1 ? i : Foo<bool>::D; // expected-warning {{warn-sign-conversion.cpp:13:5)' to 'int'}}
30 int d2a = 1 ? Foo<bool>::D : i; // expected-warning {{operand of ? changes signedness: 'test1::Foo<bool>::(anonymous enum at }}
31 int d2b = 1 ? Foo<bool>::D : i; // expected-warning {{warn-sign-conversion.cpp:13:5)' to 'int'}}
32 int d3a = 1 ? B : Foo<bool>::D; // expected-warning {{operand of ? changes signedness: 'test1::Foo<bool>::(anonymous enum at }}
33 int d3b = 1 ? B : Foo<bool>::D; // expected-warning {{warn-sign-conversion.cpp:13:5)' to 'int'}}
34 int d4a = 1 ? Foo<bool>::D : B; // expected-warning {{operand of ? changes signedness: 'test1::Foo<bool>::(anonymous enum at }}
35 int d4b = 1 ? Foo<bool>::D : B; // expected-warning {{warn-sign-conversion.cpp:13:5)' to 'int'}}
37 int e1a = 1 ? i : E; // expected-warning {{operand of ? changes signedness: 'test1::(anonymous enum at }
    [all...]
  /external/clang/test/SemaObjC/
legacy-implementation-1.m 3 @implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}}
method-typecheck-2.m 19 - (void) doSomething: (int) x {} // expected-warning {{conflicting parameter types}}
20 + (void) doSomethingClassy: (float) x{} // expected-warning {{conflicting parameter types}}
21 - (void) doSomethingInProtocol: (id) x {} // expected-warning {{conflicting parameter types}}
22 + (void) doSomethingClassyInProtocol: (id) x {} // expected-warning {{conflicting parameter types}}
objc-container-subscripting-1.m 14 id oldObject = array[10]; // expected-warning {{instance method '-objectAtIndexedSubscript:' not found (return type defaults to 'id')}}
16 array[10] = 0; // expected-warning {{instance method '-setObject:atIndexedSubscript:' not found (return type defaults to 'id')}}
19 oldObject = p_array[10]; // expected-warning {{instance method '-objectAtIndexedSubscript:' not found (return type defaults to 'id')}}
21 p_array[10] = 0; // expected-warning {{instance method '-setObject:atIndexedSubscript:' not found (return type defaults to 'id')}}
return.m 17 void test3(int a) { // expected-warning {{function 'test3' could be declared with attribute 'noreturn'}}
25 // issue a noreturn warning.
28 NSString *rdar_4289832() { // no-warning
47 - (void)method { // expected-warning{{method 'method' could be declared with attribute 'noreturn'}}
warn-unused-exception-param.m 3 @try {} @catch(id a) {} // expected-warning{{unused exception parameter 'a'}}
warn-write-strings.m 4 char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
  /external/clang/test/SemaObjCXX/Inputs/
nullability-pragmas-1.h 11 void f1(int *x); // expected-warning{{pointer is missing a nullability type specifier}}
41 void f18(A **); // expected-warning 2{{pointer is missing a nullability type specifier}}
42 void f19(CFErrorRefPtr error); // expected-warning{{pointer is missing a nullability type specifier}}
45 void g2(int (^ *bp)(int, int)); // expected-warning{{block pointer is missing a nullability type specifier}}
46 // expected-warning@-1{{pointer is missing a nullability type specifier}}
47 void g3(block_ptr *bp); // expected-warning{{block pointer is missing a nullability type specifier}}
48 // expected-warning@-1{{pointer is missing a nullability type specifier}}
50 void g5(int (**fp)(int, int)); // expected-warning 2{{pointer is missing a nullability type specifier}}
59 // expected-warning@-1{{pointer is missing a nullability type specifier}}
62 @property NSError **anError; // expected-warning 2{{pointer is missing a nullability type specifier}
    [all...]
  /external/clang/test/SemaOpenCL/
warn-missing-prototypes.cl 3 void f() { } // expected-warning {{no previous prototype for function 'f'}}
  /external/compiler-rt/test/profile/Linux/
instrprof-value-prof-warn.test 2 RUN: env LLVM_PROFILE_FILE=%t.ir.profraw LLVM_VP_MAX_NUM_VALS_PER_SITE=255 %run %t.ir.warn 2>&1 |FileCheck --check-prefix=WARNING %s
6 # WARNING: LLVM Profile Warning:
7 # NOWARNING-NOT: LLVM Profile Warning:
  /external/compiler-rt/test/tsan/Linux/
mutex_robust2.cc 36 // CHECK-NOT: WARNING: ThreadSanitizer WARNING: double lock of mutex
37 // CHECK: WARNING: ThreadSanitizer: data race
40 // CHECK-NOT: WARNING: ThreadSanitizer
  /external/deqp/external/vulkancts/framework/vulkan/
vkPlatformFunctionPointers.inl 0 /* WARNING: This is auto-generated file. Do not modify, since changes will
  /external/fio/compiler/
compiler-gcc4.h 13 #define __compiletime_warning(message) __attribute__((warning(message)))

Completed in 564 milliseconds

<<31323334353637383940>>