Searched refs:warning (Results 1 – 25 of 2106) sorted by relevance
12345678910>>...85
/external/stlport/src/ |
D | warning_disable.h | 8 # pragma warning( disable : 4097 ) /* typedef-name used as based class of (...) */ 9 # pragma warning( disable : 4251 ) /* DLL interface needed */ 10 # pragma warning( disable : 4284 ) /* for -> operator */ 11 # pragma warning( disable : 4503 ) /* decorated name length exceeded, name was truncated */ 12 # pragma warning( disable : 4514 ) /* unreferenced inline function has been removed */ 13 # pragma warning( disable : 4660 ) /* template-class specialization '...' is already instantiate… 14 # pragma warning( disable : 4701 ) /* local variable 'base' may be used without having been init… 15 # pragma warning( disable : 4710 ) /* function (...) not inlined */ 16 # pragma warning( disable : 4786 ) /* identifier truncated to 255 characters */ 20 # pragma warning( disable : 4511 ) /* copy constructor cannot be generated */ [all …]
|
/external/clang/test/Preprocessor/ |
D | pragma_microsoft.c | 32 __pragma(warning(push)); \ 33 __pragma(warning(disable: 10000)); \ 35 __pragma(warning(pop)); \ 92 #pragma warning(push) 93 #pragma warning(push, 1) 94 #pragma warning(disable : 4705) 95 #pragma warning(disable : 123 456 789 ; error : 321) 96 #pragma warning(once : 321) 97 #pragma warning(suppress : 321) 98 #pragma warning(default : 321) [all …]
|
/external/llvm/test/MC/ARM/ |
D | v8_IT_manual.s | 4 @ CHECK-NOT: [[@LINE+2]]:1: warning 8 @ CHECK-NOT: [[@LINE+2]]:1: warning 11 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block 14 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block 18 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block 22 @ CHECK-NOT: [[@LINE+2]]:1: warning 26 @ CHECK-NOT: [[@LINE+2]]:1: warning 30 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block 34 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block 38 @ CHECK-NOT: [[@LINE+2]]:1: warning [all …]
|
D | deprecated-v8.s | 7 @ CHECK-ARMV8: warning: deprecated 8 @ CHECK-THUMBV8: warning: deprecated 9 @ CHECK-ARMV7-NOT: warning: deprecated 10 @ CHECK-THUMBV7-NOT: warning: deprecated 12 @ CHECK-ARMV8: warning: deprecated since v7, use 'isb' 13 @ CHECK-THUMBV8: warning: deprecated since v7, use 'isb' 14 @ CHECK-ARMV7: warning: deprecated since v7, use 'isb' 15 @ CHECK-THUMBV7: warning: deprecated since v7, use 'isb' 16 @ CHECK-ARMV6-NOT: warning: deprecated since v7, use 'isb' 18 @ CHECK-ARMV8: warning: deprecated since v7, use 'dsb' [all …]
|
/external/stlport/stlport/stl/config/ |
D | _warnings_off.h | 12 # pragma warning ( disable : 4251 ) // ignore template classes being exported in .dll's 16 # pragma warning( disable : 4097 ) // typedef-name used as based class of (...) 17 # pragma warning( disable : 4231 ) // non standard extension : 'extern' before template instanci… 18 # pragma warning( disable : 4244 ) // implicit conversion: possible loss of data 19 # pragma warning( disable : 4284 ) // for -> operator 21 # pragma warning( disable : 4290 ) // c++ exception specification ignored 22 # pragma warning( disable : 4514 ) // unreferenced inline function has been removed 23 # pragma warning( disable : 4660 ) // template-class specialization '...' is already instantiated 24 # pragma warning( disable : 4701 ) // local variable '...' may be used without having been initi… 25 # pragma warning( disable : 4710 ) // function (...) not inlined [all …]
|
/external/clang/test/Analysis/ |
D | global_region_invalidation.mm | 12 clang_analyzer_eval(p == 0); // expected-warning{{TRUE}} 20 clang_analyzer_eval(globalIntRef == 42); // expected-warning{{UNKNOWN}} 31 clang_analyzer_eval(globalInt == 42); // expected-warning{{UNKNOWN}} 32 clang_analyzer_eval(globalStruct.value == 43); // expected-warning{{UNKNOWN}} 38 clang_analyzer_eval(globalInt == 42); // expected-warning{{TRUE}} 39 clang_analyzer_eval(globalStruct.value == 43); // expected-warning{{TRUE}} 42 clang_analyzer_eval(globalInt == 42); // expected-warning{{UNKNOWN}} 43 clang_analyzer_eval(globalStruct.value == 43); // expected-warning{{UNKNOWN}} 50 clang_analyzer_eval(globalInt == 42); // expected-warning{{TRUE}} 51 clang_analyzer_eval(globalStruct.value == 43); // expected-warning{{TRUE}} [all …]
|
D | ctor.mm | 22 *(char *)0 = 1; // expected-warning{{Dereference of null pointer}} 35 clang_analyzer_eval(b.x == 42); // expected-warning{{TRUE}} 49 clang_analyzer_eval(b.x == 42); // expected-warning{{TRUE}} 87 clang_analyzer_eval(a == 1); // expected-warning{{TRUE}} 88 clang_analyzer_eval(b == 2); // expected-warning{{TRUE}} 89 clang_analyzer_eval(c == 3); // expected-warning{{TRUE}} 91 clang_analyzer_eval(obj.get() == 3); // expected-warning{{TRUE}} 95 clang_analyzer_eval(base->get() == 3); // expected-warning{{TRUE}} 103 clang_analyzer_checkInlined(true); // expected-warning{{TRUE}} 126 clang_analyzer_eval(result); // expected-warning{{TRUE}} [all …]
|
D | ivars.m | 15 clang_analyzer_eval(savedID == obj->uniqueID); // expected-warning{{TRUE}} 18 clang_analyzer_eval(savedID == obj->uniqueID); // expected-warning{{UNKNOWN}} 28 clang_analyzer_eval(savedID == self->uniqueID); // expected-warning{{TRUE}} 31 clang_analyzer_eval(savedID == self->uniqueID); // expected-warning{{UNKNOWN}} 61 clang_analyzer_eval(s.a == 1); // expected-warning{{TRUE}} 62 clang_analyzer_eval(s.b == 2); // expected-warning{{TRUE}} 63 clang_analyzer_eval(c == 3); // expected-warning{{TRUE}} 64 clang_analyzer_eval(d == 4); // expected-warning{{TRUE}} 68 clang_analyzer_eval(s.a == 1); // expected-warning{{TRUE}} 69 clang_analyzer_eval(s.b == 2); // expected-warning{{TRUE}} [all …]
|
D | uninit-vals.m | 26 if (bogus) // no-warning 39 test_PR10163(x[1]); // no-warning 64 clang_analyzer_eval(testObj->size == 0); // expected-warning{{TRUE}} 67 if (testObj->size > 0) { ; } // warning occurs here 73 clang_analyzer_eval(testObj->size == 0); // expected-warning{{UNKNOWN}} 80 clang_analyzer_eval(testObj->size == oldSize); // expected-warning{{TRUE}} 83 clang_analyzer_eval(testObj->size == oldSize); // expected-warning{{TRUE}} 108 clang_analyzer_eval(testObj->size == 0); // expected-warning{{TRUE}} 109 clang_analyzer_eval(testObj->origin.x == 0); // expected-warning{{TRUE}} 110 clang_analyzer_eval(testObj->origin.y == 0); // expected-warning{{TRUE}} [all …]
|
D | MismatchedDeallocator-checker-test.mm | 23 …delete p; // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not '… 29 …delete q; // expected-warning{{Memory allocated by realloc() should be deallocated by free(), not … 34 …delete p; // expected-warning{{Memory allocated by calloc() should be deallocated by free(), not '… 39 …delete p; // expected-warning{{Memory allocated by strdup() should be deallocated by free(), not '… 44 …delete p; // expected-warning{{Memory allocated by my_malloc() should be deallocated by free(), no… 49 …operator delete(p); // expected-warning{{Memory allocated by malloc() should be deallocated by fre… 54 …delete[] p; // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not… 59 …operator delete[](p); // expected-warning{{Memory allocated by malloc() should be deallocated by f… 65 …free(p); // expected-warning{{Memory allocated by 'new' should be deallocated by 'delete', not fre… 70 …free(p); // expected-warning{{Memory allocated by operator new should be deallocated by 'delete', … [all …]
|
D | objc-for.m | 55 clang_analyzer_eval(x != nil); // expected-warning{{TRUE}} 58 clang_analyzer_eval(x != nil); // expected-warning{{TRUE}} 61 clang_analyzer_eval(x != nil); // expected-warning{{TRUE}} 64 clang_analyzer_eval(x != nil); // expected-warning{{TRUE}} 67 clang_analyzer_eval(x != nil); // expected-warning{{UNKNOWN}} 72 clang_analyzer_eval(x != nil); // expected-warning{{TRUE}} 74 clang_analyzer_eval(x != nil); // expected-warning{{UNKNOWN}} 78 clang_analyzer_eval(a != nil); // expected-warning{{UNKNOWN}} 80 clang_analyzer_eval(a != nil); // expected-warning{{TRUE}} 85 *(volatile int *)0 = 1; // no-warning [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/tests/ |
D | x86id.errwarn | 1 -:37: warning: Standard COFF does not support read-only data sections 2 -:6284: warning: Standard COFF does not support read-only data sections 3 -:6527: warning: Standard COFF does not support read-only data sections 4 -:6540: warning: Standard COFF does not support read-only data sections 5 -:6549: warning: Standard COFF does not support read-only data sections 6 -:6559: warning: Standard COFF does not support read-only data sections 7 -:6562: warning: Standard COFF does not support read-only data sections 8 -:6629: warning: Standard COFF does not support read-only data sections 9 -:7499: warning: Standard COFF does not support read-only data sections 10 -:7518: warning: Standard COFF does not support read-only data sections [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
D | riprel2.errwarn | 1 -:20: warning: `es' segment register ignored in 64-bit mode 2 -:21: warning: `es' segment register ignored in 64-bit mode 3 -:22: warning: `es' segment register ignored in 64-bit mode 4 -:23: warning: `es' segment register ignored in 64-bit mode 5 -:24: warning: `es' segment register ignored in 64-bit mode 6 -:25: warning: `es' segment register ignored in 64-bit mode 7 -:26: warning: `es' segment register ignored in 64-bit mode 8 -:27: warning: `es' segment register ignored in 64-bit mode 9 -:28: warning: `es' segment register ignored in 64-bit mode 10 -:30: warning: `es' segment register ignored in 64-bit mode [all …]
|
D | strict.errwarn | 1 -:25: warning: value does not fit in signed 8 bit field 2 -:26: warning: value does not fit in signed 8 bit field 3 -:38: warning: value does not fit in signed 8 bit field 4 -:39: warning: value does not fit in signed 8 bit field 5 -:56: warning: value does not fit in signed 8 bit field 6 -:57: warning: value does not fit in signed 8 bit field 7 -:69: warning: value does not fit in signed 8 bit field 8 -:70: warning: value does not fit in signed 8 bit field 9 -:82: warning: value does not fit in signed 8 bit field 10 -:83: warning: value does not fit in signed 8 bit field [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/tests/passwin64/ |
D | dwarfwin64_testhd.errwarn | 1 -:2: warning: Unrecognized qualifier `progbits' 2 -:4: warning: Unrecognized qualifier `progbits' 3 -:6: warning: Unrecognized qualifier `progbits' 4 -:10: warning: unrecognized section attribute: `M' 5 -:10: warning: unrecognized section attribute: `S' 6 -:10: warning: Unrecognized qualifier `progbits' 7 -:24: warning: .type pseudo-op used outside of .def/.endef; ignored 8 -:152: warning: directive `.size' not recognized 9 -:153: warning: Unrecognized qualifier `progbits' 10 -:190: warning: Unrecognized qualifier `progbits' [all …]
|
/external/clang/test/Parser/ |
D | objc-messaging-1.m | 7 [a ii]; // expected-warning{{not found}} 8 [a if: 1 :2]; // expected-warning{{not found}} 9 [a inout: 1 :2 another:(2,3,4)]; // expected-warning{{not found}} \ 10 // expected-warning 2{{expression result unused}} 11 [a inout: 1 :2 another:(2,3,4), 6,6,8]; // expected-warning{{not found}} \ 12 // expected-warning 2{{expression result unused}} 13 [a inout: 1 :2 another:(2,3,4), (6,4,5),6,8]; // expected-warning{{not found}} \ 14 // expected-warning 4{{expression result unused}} 15 [a inout: 1 :2 another:(i+10), (i,j-1,5),6,8]; // expected-warning{{not found}} \ 16 // expected-warning 2{{expression result unused}} [all …]
|
/external/clang/test/SemaObjC/ |
D | comptypes-7.m | 27 …obj = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'id' from '… 28 obj = j; // expected-warning {{incompatible pointer types assigning to 'id' from 'int *'}} 30 …obj_p = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'id<MyPro… 31 …obj_p = j; // expected-warning {{incompatible pointer types assigning to 'id<MyProtocol>' from 'in… 33 …obj_c = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'MyClass … 34 …obj_c = j; // expected-warning {{incompatible pointer types assigning to 'MyClass *' from 'int *'}} 36 …obj_C = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'Class' f… 37 obj_C = j; // expected-warning {{incompatible pointer types assigning to 'Class' from 'int *'}} 39 …i = obj; // expected-warning {{incompatible pointer to integer conversion assigning to 'int' fro… 40 …i = obj_p; // expected-warning {{incompatible pointer to integer conversion assigning to 'int' fro… [all …]
|
D | arc-repeated-weak.mm | 22 …use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times in this … 26 use(a.strongProp); // no-warning 32 use(a.weakProp); // no-warning 33 use(a.strongProp); // no-warning 37 a.weakProp = get(); // no-warning 41 a.weakProp = next; // no-warning 43 a->weakIvar = get(); // no-warning 46 a->weakIvar = next; // no-warning 49 x = get(); // no-warning 52 x = next; // no-warning [all …]
|
D | attr-deprecated.m | 14 [self F]; // no warning, since the caller is also deprecated. 19 X++; // expected-warning{{'X' is deprecated}} 20 self->X++; // expected-warning{{'X' is deprecated}} 21 [self f]; // expected-warning{{'f' is deprecated}} 26 [self f]; // no warning, the caller is deprecated in its interface. 36 [super F]; // expected-warning{{'F' is deprecated}} 41 [super f]; // // expected-warning{{'f' is deprecated}} 51 [A F]; // expected-warning{{'F' is deprecated}} 52 [a f]; // expected-warning{{'f' is deprecated}} 62 [a f]; // expected-warning{{'f' is deprecated}} [all …]
|
D | nonnull.m | 9 int f1(int x); // no warning 14 int f6(NSObject *x) __attribute__ ((nonnull (1))); // no-warning 15 int f7(NSObject *x) __attribute__ ((nonnull)); // no-warning 34 …func1(0, cp2, i1); // expected-warning {{null passed to a callee which requires a non-null argume… 35 …func1(cp1, 0, i1); // expected-warning {{null passed to a callee which requires a non-null argume… 39 …func3(0, i2, cp3, i3); // expected-warning {{null passed to a callee which requires a non-null arg… 40 …func3(cp3, i2, 0, i3); // expected-warning {{null passed to a callee which requires a non-null ar… 42 func4(0, cp1); // expected-warning {{null passed to a callee which requires a non-null argument}} 43 func4(cp1, 0); // expected-warning {{null passed to a callee which requires a non-null argument}} 47 func6((NSObject*) 0); // no-warning [all …]
|
D | arc-non-pod-memaccess.m | 24 …memcpy(sip, ptr, 17); // expected-warning{{destination for this 'memcpy' call is a pointer to owne… 25 // expected-note{{explicitly cast the pointer to silence this warning}} 26 …memcpy(wip, ptr, 17); // expected-warning{{destination for this 'memcpy' call is a pointer to owne… 27 // expected-note{{explicitly cast the pointer to silence this warning}} 28 …memcpy(aip, ptr, 17); // expected-warning{{destination for this 'memcpy' call is a pointer to owne… 29 // expected-note{{explicitly cast the pointer to silence this warning}} 32 …memcpy(ptr, sip, 17); // expected-warning{{source of this 'memcpy' call is a pointer to ownership-… 33 // expected-note{{explicitly cast the pointer to silence this warning}} 34 …memcpy(ptr, wip, 17); // expected-warning{{source of this 'memcpy' call is a pointer to ownership-… 35 // expected-note{{explicitly cast the pointer to silence this warning}} [all …]
|
/external/libvorbis/symbian/ |
D | config.h | 40 #pragma warning(disable: 4100) /* unreferenced formal parameter */ 41 #pragma warning(disable: 4127) /* conditional expression is constant */ 42 #pragma warning(disable: 4189) /* local variable is initialized but not referenced */ 43 #pragma warning(disable: 4244) /* conversion from '...' to '...', possible loss of data */ 44 #pragma warning(disable: 4305) /* truncation from '...' to '...' */ 45 #pragma warning(disable: 4505) /* unreferenced local function has been removed */ 46 #pragma warning(disable: 4514) /* unreferenced inline function has been removed */ 47 #pragma warning(disable: 4702) /* unreachable code */ 48 #pragma warning(disable: 4701) /* local variable may be be used without having been initialized */ 49 #pragma warning(disable: 4706) /* assignment within conditional expression */ [all …]
|
/external/clang/test/FixIt/ |
D | format.m | 9 printf("%d", x); // no-warning 10 …printf("%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'in… 11 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i… 15 NSLog(@"%d", x); // no-warning 16 …NSLog(@"%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'in… 17 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i… 18 NSLog(@"%@", x); // expected-warning{{format specifies type 'id' but the argument has type 'int'}} 25 …printf("%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'char … 26 printf("%s", x); // no-warning 27 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'c… [all …]
|
/external/eclipse-windowbuilder/propertysheet/.settings/ |
D | org.eclipse.jdt.core.prefs | 15 org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning 18 org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning 19 org.eclipse.jdt.core.compiler.problem.deadCode=warning 20 org.eclipse.jdt.core.compiler.problem.deprecation=warning 23 org.eclipse.jdt.core.compiler.problem.discouragedReference=warning 27 org.eclipse.jdt.core.compiler.problem.fallthroughCase=warning 29 org.eclipse.jdt.core.compiler.problem.fieldHiding=warning 30 org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning 31 org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning 33 org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning [all …]
|
/external/clang/test/Lexer/ |
D | pragma-operators.cpp | 13 #define A(X) extern "C" { __pragma(warning(push)) \ 17 #pragma warning(push) 19 #pragma warning(pop) 39 #pragma warning(disable : 1 2L 3U ; error : 4 5 6 ; suppress : 7 8 9) 46 #pragma warning(push) 47 #pragma warning(push, 1L) 48 #pragma warning(push, 4U) 49 #pragma warning(push, 0x1) 50 #pragma warning(push, 03) 51 #pragma warning(push, 0b10) [all …]
|
12345678910>>...85