/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/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-string.mm | 7 clang_analyzer_eval(@""); // expected-warning{{TRUE}} 8 clang_analyzer_eval(@"abc"); // expected-warning{{TRUE}} 18 clang_analyzer_eval(kConstantGlobalString); // expected-warning{{TRUE}} 19 clang_analyzer_eval(globalString); // expected-warning{{UNKNOWN}} 22 clang_analyzer_eval(globalString); // expected-warning{{TRUE}} 26 clang_analyzer_eval(kConstantGlobalString); // expected-warning{{TRUE}} 27 clang_analyzer_eval(globalString); // expected-warning{{UNKNOWN}} 35 clang_analyzer_eval(returnString(@"")); // expected-warning{{TRUE}} 36 clang_analyzer_eval(returnString(0)); // expected-warning{{FALSE}} 37 clang_analyzer_eval(returnString()); // expected-warning{{TRUE}}
|
/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/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/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 | 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 | 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 | 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 …]
|
D | objc-literal-comparison.m | 9 // (test the warning flag as well) 39 …if (obj == @"") return; // expected-warning{{direct comparison of a string literal has undefined b… 40 …if (obj != @"") return; // expected-warning{{direct comparison of a string literal has undefined b… 41 …if (@"" == obj) return; // expected-warning{{direct comparison of a string literal has undefined b… 42 …if (@"" == @"") return; // expected-warning{{direct comparison of a string literal has undefined b… 44 …if (@[] == obj) return; // expected-warning{{direct comparison of an array literal has undefined b… 45 …if (@{} == obj) return; // expected-warning{{direct comparison of a dictionary literal has undefin… 46 …if (@12 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined … 47 …if (@1.0 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined… 48 …if (@__objc_yes == obj) return; // expected-warning{{direct comparison of a numeric literal has un… [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/nist-sip/java/gov/nist/javax/sip/parser/ |
D | WarningParser.java | 53 public WarningParser(String warning) { in WarningParser() argument 54 super(warning); in WarningParser() 83 Warning warning = new Warning(); in parse() local 84 warning.setHeaderName(SIPHeaderNames.WARNING); in parse() 91 warning.setCode(code); in parse() 107 warning.setAgent(token.getTokenValue() + ":" in parse() 110 warning.setAgent(token.getTokenValue()); in parse() 117 warning.setText(text); in parse() 120 warningList.add(warning); in parse() 126 warning = new Warning(); in parse() [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/ |
D | xdfsect-err.errwarn | 2 -:2: warning: Unrecognized qualifier `use16' 3 -:3: warning: Unrecognized qualifier `use32' 4 -:4: warning: Unrecognized qualifier `use64' 5 -:5: warning: Unrecognized qualifier `bss' 6 -:6: warning: Unrecognized qualifier `flat' 7 -:7: warning: Unrecognized qualifier `foo' 8 -:8: warning: Unrecognized qualifier `foo' 13 -:11: warning: Unrecognized qualifier `absolute' 16 -:14: warning: Unrecognized qualifier `virtual' 19 -:17: warning: Unrecognized qualifier `align' [all …]
|
/external/chromium_org/tools/clang/plugins/tests/ |
D | overridden_methods.txt | 2 ./overridden_methods.h:48:28: warning: [chromium-style] Overriding method must be marked with OVERR… 6 ./overridden_methods.h:52:34: warning: [chromium-style] Overriding method must be marked with OVERR… 10 ./overridden_methods.h:56:39: warning: [chromium-style] Overriding method must be marked with OVERR… 14 ./overridden_methods.h:58:53: warning: [chromium-style] Overriding method must be marked with OVERR… 18 ./overridden_methods.h:61:67: warning: [chromium-style] Overriding method must be marked with OVERR… 22 ./overridden_methods.h:63:39: warning: [chromium-style] Overriding method must be marked with OVERR… 26 ./overridden_methods.h:65:39: warning: [chromium-style] Overriding method must be marked with OVERR… 30 ./overridden_methods.h:67:46: warning: [chromium-style] Overriding method must be marked with OVERR… 34 overridden_methods.cpp:24:28: warning: [chromium-style] Overriding method must be marked with OVERR… 38 overridden_methods.cpp:28:34: warning: [chromium-style] Overriding method must be marked with OVERR… [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/bin/ |
D | reptwarn.errwarn | 1 -:2: warning: value does not fit in 8 bit field 2 -:4: warning: value does not fit in 8 bit field 3 -:7: warning: value does not fit in 8 bit field 4 -:4: warning: value does not fit in 8 bit field 5 -:7: warning: value does not fit in 8 bit field 6 -:4: warning: value does not fit in 8 bit field 7 -:7: warning: value does not fit in 8 bit field 8 -:10: warning: value does not fit in 8 bit field 9 -:11: warning: value does not fit in 8 bit field
|