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

<<31323334353637383940>>

  /hardware/qcom/msm8x09/kernel-headers/sound/
lsm_params.h 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
  /libcore/luni/src/test/resources/bundles/java/util/logging/
res.properties 3 WARNING=US_WARNING
res_en_US.properties 3 WARNING=US_WARNING
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arc/
warn.s 8 j.d foo ; { dg-warning "inappropriate arguments for opcode" "inappropriate arguments for opcode" }
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
arm-it-bad.l 3 [^:]*:10: Warning: conditional outside an IT block for Thumb.
armv1-bad.l 6 [^:]*:8: Warning: writeback of base register is UNPREDICTABLE
7 [^:]*:9: Warning: writeback of base register when in register list is UNPREDICTABLE
8 [^:]*:10: Warning: writeback of base register is UNPREDICTABLE
9 [^:]*:12: Warning: if writeback register is in list, it must be the lowest reg in the list
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
return.s 2 ; warning is added to the assembler.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/d10v/
warning-014.s 2 ; There is no resource conflict so no warning.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
section2.l 2 .*:2: Warning: .*
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m32r/
interfere.s 8 ; { dg-warning "same" "out->in" { target *-*-* } { 7 } }
10 ; { dg-warning "same" "out->in" { target *-*-* } { 9 } }
12 ; { dg-warning "same" "out->in" { target *-*-* } { 11 } }
14 ; { dg-warning "same" "out->in" { target *-*-* } { 13 } }
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/msp430/
errata_warns.d 1 #name: Warning Messages for Silicon Errata
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
beginwarn.c 2 __attribute__ ((used, section (".gnu.warning.foo")))
orphan-5.d 1 #name: Report warning for orphan sections
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
alloc.d 4 #warning: .*section `.foo' can't be allocated in segment 0.*
  /external/clang/test/Analysis/
coverage.c 36 } // expected-warning {{Potential leak of memory pointed to by 'm'}}
43 } // expected-warning {{Potential leak of memory pointed to by 'm'}}
49 } // expected-warning {{Potential leak of memory pointed to by 'm'}}
55 } // expected-warning {{Potential leak of memory pointed to by 'm'}}
61 char *m = (char*)malloc(12); // no-warning
69 } // expected-warning {{Potential leak of memory pointed to by 'm'}}
73 return *i; // expected-warning {{Dereference}}
79 y = (*x)/y; // expected-warning {{Division by zero}}
81 } // expected-warning {{Potential leak of memory pointed to by 'm'}}
93 y = (*x); // no warning
    [all...]
malloc-sizeof.c 17 long *lp1 = malloc(sizeof(short)); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'long', which is incompatible with sizeof operand type 'short'}}
18 long *lp2 = malloc(5 * sizeof(double)); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'long', which is incompatible with sizeof operand type 'double'}}
19 char *cp3 = malloc(5 * sizeof(char) + 2); // no warning
20 unsigned char *buf = malloc(readSize + sizeof(unsignedInt)); // no warning
24 struct A *ap3 = calloc(2, sizeof(ap1)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct A *'}}
25 struct A *ap4 = calloc(3, sizeof(struct A*)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct A *'}}
26 struct A *ap5 = calloc(4, sizeof(struct B)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct B'}}
28 struct A *ap7 = realloc(ap5, sizeof(struct B)); // expected-warning {{Result of 'realloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct B'}}
33 const char **x = (const char **)malloc(1 * sizeof(char *)); // no-warning
34 const char ***y = (const char ***)malloc(1 * sizeof(char *)); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'const char **', which is incompatible with (…)
    [all...]
stream.c 19 fread(buf, 1, 1, p); // expected-warning {{Stream pointer might be NULL}}
25 fseek(p, 1, SEEK_SET); // expected-warning {{Stream pointer might be NULL}}
31 ftell(p); // expected-warning {{Stream pointer might be NULL}}
37 rewind(p); // expected-warning {{Stream pointer might be NULL}}
45 fseek(p, 1, SEEK_SET); // no-warning
46 fseek(p, 1, 3); // expected-warning {{The whence argument to fseek() should be SEEK_SET, SEEK_END, or SEEK_CUR}}
53 fclose(p); // expected-warning {{Try to close a file Descriptor already closed. Cause undefined behaviour}}
58 ftell(p); // expected-warning {{Stream pointer might be NULL}}
65 return; // expected-warning {{Opened File never closed. Potential Resource leak}}
72 return p; // no-warning
    [all...]
  /external/clang/test/Analysis/objc/
direct-ivar-assignment-in-annotated-functions.m 47 (__A) = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
48 _X = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
49 _Y = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
50 _Z = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
51 _nonSynth = 0; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
52 _NotX = 0; // no-warning
53 _NotA = 0; // no-warning
57 _X = In; // no-warning
58 _Y = In; // no-warning
59 _Z = In; // no-warning
    [all...]
  /external/clang/test/Sema/
format-strings-non-iso.c 10 printf("%qd", (long long)42); // expected-warning{{'q' length modifier is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
11 scanf("%qd", (long long *)0); // expected-warning{{'q' length modifier is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
14 scanf("%ms", &cp); // expected-warning{{'m' length modifier is not supported by ISO C}}
17 printf("%S", L"foo"); // expected-warning{{'S' conversion specifier is not supported by ISO C}}
18 printf("%C", L'x'); // expected-warning{{'C' conversion specifier is not supported by ISO C}}
21 printf("%Li", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'i' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
22 printf("%Lo", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'o' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
23 printf("%Lu", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'u' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
24 printf("%Lx", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'x' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
25 printf("%LX", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'X' is not supported by ISO C}} expected-note (…)
    [all...]
static-array.c 3 void cat0(int a[static 0]) {} // expected-warning {{'static' has no effect on zero-length arrays}}
14 cat(0); // expected-warning {{null passed to a callee that requires a non-null argument}}
15 cat(a); // expected-warning {{array argument is too small; contains 2 elements, callee requires at least 3}}
20 vat(1, 0); // expected-warning {{null passed to a callee that requires a non-null argument}}
26 typedef void(*fp)(int[static 42]); // no-warning
38 void h(int [static const 10][42]); // no-warning
47 void l(int (x)[static 10]); // no-warning
48 void m(int *x[static 10]); // no-warning
49 void n(int *(x)[static 10]); // no-warning
53 void q(int (^x[static 10])()); // no-warning
    [all...]
  /external/clang/test/SemaCXX/
function-extern-c.cpp 27 extern "C" U f3( void ); // expected-warning {{'f3' has C-linkage specified, but returns user-defined type 'U' which is incompatible with C}}
28 extern "C" S f0(void); // expected-warning {{'f0' has C-linkage specified, but returns user-defined type 'S' which is incompatible with C}}
29 extern "C" A f4( void ); // expected-warning {{'f4' has C-linkage specified, but returns user-defined type 'A' which is incompatible with C}}
40 extern "C" struct mypodstruct f12(); // expected-warning {{'f12' has C-linkage specified, but returns incomplete type 'struct mypodstruct' which could be incompatible with C}}
43 // FIXME: we should probably suppress the first warning as the second one
46 // the warning.
48 extern "C" A f(void); // expected-warning {{'f' has C-linkage specified, but returns incomplete type 'test2::A' which could be incompatible with C}}
52 A f(void); // no warning. warning is already issued on first declaration.
77 A bbb(); // expected-warning {{'bbb' has C-linkage specified, but returns user-defined type 'rdar13364028::A' which is incompat (…)
    [all...]
pragma-vtordisp.cpp 5 #pragma vtordisp(pop) // expected-warning {{#pragma vtordisp(pop, ...) failed: stack empty}}
13 #pragma vtordisp(pop) // expected-warning {{#pragma vtordisp(pop, ...) failed: stack empty}}
15 #pragma vtordisp(push, 3) // expected-warning {{expected integer between 0 and 2 inclusive in '#pragma vtordisp' - ignored}}
28 #pragma vtordisp( // expected-warning {{unknown action for '#pragma vtordisp' - ignored}}
29 #pragma vtordisp(asdf) // expected-warning {{unknown action for '#pragma vtordisp' - ignored}}
30 #pragma vtordisp(,) // expected-warning {{unknown action for '#pragma vtordisp' - ignored}}
31 #pragma vtordisp // expected-warning {{missing '(' after '#pragma vtordisp' - ignoring}}
32 #pragma vtordisp(3) // expected-warning {{expected integer between 0 and 2 inclusive in '#pragma vtordisp' - ignored}}
33 #pragma vtordisp(), stuff // expected-warning {{extra tokens}}
47 #pragma vtordisp(pop) // expected-warning {{#pragma vtordisp(pop, ...) failed: stack empty}
    [all...]
switch-implicit-fallthrough.cpp 13 case -1: // no warning here, ignore fall-through from unreachable code
15 case 0: {// expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
17 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
19 case 3: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
22 case 4: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
25 case 5: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' (…)
    [all...]
warn-reorder-ctor-initialization.cpp 10 : s2(1), // expected-warning {{field 's2' will be initialized after field 's1'}}
12 s3(3), // expected-warning {{field 's3' will be initialized after base 'BB1'}}
13 BB1(), // expected-warning {{base class 'BB1' will be initialized after base 'BB'}}
48 D() : A(), V() { } // expected-warning {{base class 'A' will be initialized after base 'V'}}
53 E() : A(), V() { } // expected-warning {{base class 'A' will be initialized after base 'V'}}
66 F() : A1(), V() { } // expected-warning {{base class 'A1' will be initialized after base 'V'}}
70 X(): A(), V(), B() {} // expected-warning {{base class 'A' will be initialized after base 'V'}}
80 d(10), // expected-warning {{field 'd' will be initialized after field 'b'}}
95 S4() : S2(), // expected-warning {{base class 'T1::S2' will be initialized after base 'T1::S3'}}
104 y(), // expected-warning {{field 'y' will be initialized after field 'x'}
    [all...]
warn-shadow.cpp 25 int i; // expected-warning {{declaration shadows a variable in namespace '(anonymous)'}}
26 int j; // expected-warning {{declaration shadows a variable in namespace 'one::two'}}
39 f1 = 3; // expected-warning {{modifying constructor parameter 'f1' that shadows a field of 'A'}}
40 f1 = 4; // one warning per shadow
41 f2++; // expected-warning {{modifying constructor parameter 'f2' that shadows a field of 'A'}}
42 --f3; // expected-warning {{modifying constructor parameter 'f3' that shadows a field of 'A'}}
43 f4 += 2; // expected-warning {{modifying constructor parameter 'f4' that shadows a field of 'A'}}
47 // expected-warning-re@+1 4 {{constructor parameter 'f{{[0-4]}}' shadows the field 'f{{[0-9]}}' of 'A'}}
51 char *field; // expected-warning {{declaration shadows a field of 'A'}}
52 char *data; // expected-warning {{declaration shadows a static data member of 'A'}
    [all...]

Completed in 366 milliseconds

<<31323334353637383940>>