/external/bluetooth/glib/ |
msvc_recommended_pragmas.h | 8 #pragma warning(error:4002) /* too many actual parameters for macro */ 9 #pragma warning(error:4003) /* not enough actual parameters for macro */ 10 #pragma warning(1:4010) /* single-line comment contains line-continuation character */ 11 #pragma warning(error:4013) /* 'function' undefined; assuming extern returning int */ 12 #pragma warning(1:4016) /* no function return type; using int as default */ 13 #pragma warning(error:4020) /* too many actual parameters */ 14 #pragma warning(error:4021) /* too few actual parameters */ 15 #pragma warning(error:4027) /* function declared without formal parameter list */ 16 #pragma warning(error:4029) /* declared formal parameter list different from definition */ 17 #pragma warning(error:4033) /* 'function' must return a value * [all...] |
/external/stlport/src/ |
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 instantiated */ 14 # pragma warning( disable : 4701 ) /* local variable 'base' may be used without having been initialized */ 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...] |
/development/ide/intellij/ |
IndecentExposure.xml | 5 <inspection_tool class="FieldCanBeLocal" level="WARNING" enabled="false" /> 6 <inspection_tool class="UnnecessaryModuleDependencyInspection" level="WARNING" enabled="false" /> 8 <inspection_tool class="RedundantTypeArguments" level="WARNING" enabled="false" /> 10 <inspection_tool class="CssOverwrittenProperties" level="WARNING" enabled="false" /> 11 <inspection_tool class="MissedExecutable" level="WARNING" enabled="false" /> 14 <inspection_tool class="EmptyCatchBlock" level="WARNING" enabled="false"> 19 <inspection_tool class="StringToString" level="WARNING" enabled="false" /> 22 <inspection_tool class="MalformedRegex" level="WARNING" enabled="false" /> 24 <inspection_tool class="TrivialIfJS" level="WARNING" enabled="false" /> 25 <inspection_tool class="CaughtExceptionImmediatelyRethrown" level="WARNING" enabled="false" / [all...] |
/build/tools/apicheck/src/com/android/apicheck/ |
Errors.java | 55 String which = (!warningsAreErrors && error.level == WARNING) ? " warning " : " error "; 64 if (error.level == ERROR || (warningsAreErrors && error.level == WARNING)) { 76 public static int WARNING = 1; 95 public static Error ADDED_PACKAGE = new Error(2, WARNING); 96 public static Error ADDED_CLASS = new Error(3, WARNING); 97 public static Error ADDED_METHOD = new Error(4, WARNING); 98 public static Error ADDED_FIELD = new Error(5, WARNING); 99 public static Error ADDED_INTERFACE = new Error(6, WARNING); 100 public static Error REMOVED_PACKAGE = new Error(7, WARNING); [all...] |
/external/stlport/stlport/stl/config/ |
_warnings_off.h | 10 * we have to disable this warning as the string are used as data members type of many iostream classes. 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 instanciation 18 # pragma warning( disable : 4244 ) // implicit conversion: possible loss of data 19 # pragma warning( disable : 4284 ) // for -> operator 20 //This warning is necessary because of the native platform headers: 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 instantiate [all...] |
/external/neven/Embedded/common/src/b_BasicEm/ |
Config.h | 41 #pragma message("Warning: deprecated define HW_TMS470R2X, use HW_ARMv4 instead") 46 #pragma message("Warning: deprecated define HW_ARM9E, use HW_ARMv5TE instead") 53 /* disable warning "unreferenced formal parameter": */ 54 #pragma warning( disable : 4100 ) 56 /* disable warning for constant expression in condition: */ 57 #pragma warning( disable : 4127 ) 59 /* disable warning for short += short: */ 60 #pragma warning( disable : 4244 ) 62 /* disable warning 'unreachable code' in release build: */ 63 /* this warning occurs due to a wrong code evaluation of the compiler * [all...] |
/build/tools/droiddoc/src/ |
Errors.java | 56 int level = (!warningsAreErrors && error.level == WARNING) ? WARNING : ERROR; 57 String which = level == WARNING ? " warning " : " error "; 66 if (error.level == ERROR || (warningsAreErrors && error.level == WARNING)) { 73 if (m.level == WARNING) { 85 public static int WARNING = 1; 103 public static Error UNRESOLVED_LINK = new Error(1, WARNING); 104 public static Error BAD_INCLUDE_TAG = new Error(2, WARNING); 105 public static Error UNKNOWN_TAG = new Error(3, WARNING); [all...] |
/dalvik/libcore/logging/src/test/resources/bundles/java/util/logging/ |
res.properties | 3 WARNING=US_WARNING
|
res_en_US.properties | 3 WARNING=US_WARNING
|
res2.properties | 3 WARNING=WARNING2
|
res3.properties | 3 WARNING=WARNING3
|
res_zh_CN.properties | 3 WARNING=zh_CN_WARNING
|
/development/host/windows/usb/legacy/driver/ |
precomp.h | 20 #pragma warning(disable:4200)
21 #pragma warning(disable:4201) // nameless struct/union
22 #pragma warning(disable:4214) // bit field types other than int
33 #pragma warning(default:4200)
34 #pragma warning(default:4201)
35 #pragma warning(default:4214)
|
/external/bison/tests/ |
reduce.at | 92 [[input.y: warning: 9 useless nonterminals 93 input.y:4.8-15: warning: useless nonterminal: useless1 94 input.y:5.8-15: warning: useless nonterminal: useless2 95 input.y:6.8-15: warning: useless nonterminal: useless3 96 input.y:7.8-15: warning: useless nonterminal: useless4 97 input.y:8.8-15: warning: useless nonterminal: useless5 98 input.y:9.8-15: warning: useless nonterminal: useless6 99 input.y:10.8-15: warning: useless nonterminal: useless7 100 input.y:11.8-15: warning: useless nonterminal: useless8 101 input.y:12.8-15: warning: useless nonterminal: useless [all...] |
/cts/tools/annotation-helper/.settings/ |
org.eclipse.jdt.core.prefs | 9 org.eclipse.jdt.core.compiler.problem.emptyStatement=warning 12 org.eclipse.jdt.core.compiler.problem.fieldHiding=warning 14 org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning 15 org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 16 org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning 17 org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning 21 org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning 25 org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning 26 org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning 29 org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning [all...] |
/frameworks/base/awt/javax/imageio/event/ |
IIOReadWarningListener.java | 34 * warning messages generated by image and thumbnail reading methods. 41 * Notifies this listener about a warning (non-fatal error) during decoding. 45 * @param warning 46 * the string describing the warning. 48 public void warningOccurred(ImageReader source, String warning);
|
IIOWriteWarningListener.java | 36 * Notifies this listener about a warning (non-fatal error) during encoding. 41 * the index of the image generating the warning. 42 * @param warning 43 * the string describing the warning. 45 void warningOccurred(ImageWriter source, int imageIndex, String warning);
|
/build/tools/ |
warn.py | 39 'patterns':[r".*: warning: overriding commands for target .+", 40 r".*: warning: ignoring old commands for target .+"] }, 43 'patterns':[r".*: warning: implicit declaration of function .+"] }, 46 'patterns':[r".*: warning: conflicting types for '.+'"] }, 49 'patterns':[r".*: warning: comparison is always false due to limited range of data type", 50 r".*: warning: comparison of unsigned expression >= 0 is always true", 51 r".*: warning: comparison of unsigned expression < 0 is always false"] }, 54 'patterns':[r".*: warning: assignment from incompatible pointer type", 55 r".*: warning: return from incompatible pointer type", 56 r".*: warning: passing argument [0-9]+ of '.*' from incompatible pointer type" [all...] |
/dalvik/dx/src/com/android/dx/util/ |
Warning.java | 20 * Exception which is meant to indicate a non-fatal warning. 22 public class Warning extends RuntimeException { 28 public Warning(String message) {
|
/external/proguard/src/proguard/classfile/util/ |
WarningPrinter.java | 72 * Prints out the given warning and increments the warning count, if 75 public void print(String className, String warning) 79 print(warning); 95 * Prints out the given warning and increments the warning count, if 98 public void print(String className1, String className2, String warning) 102 print(warning); 119 * Prints out the given warning and increments the warning count [all...] |
/external/webkit/WebKit/win/ |
CodeAnalysisConfig.h | 29 // warning C6011: dereferencing NULL pointer <name> 30 // warning C6031: return value ignored: <function> could return unexpected value 31 // warning C6211: Leaking memory due to an exception. Consider using a local catch block to clean up memory. 32 // warning C6255: _alloca indicates failure by raising a stack overflow exception. Consider using _alloca_s instead 33 // warning C6387: <argument> may be <value>: this does not adhere to the specification for the function <function name>: Lines: x, y 34 #pragma warning(disable: 6011 6031 6211 6255 6387)
|
/external/e2fsprogs/config/ |
parse-types.sh | 30 #warning __U8_TYPEDEF not defined 39 #warning __S8_TYPEDEF not defined 48 #warning __U16_TYPEDEF not defined 57 #warning __S16_TYPEDEF not defined 67 #warning __U32_TYPEDEF not defined 76 #warning __S32_TYPEDEF not defined 86 #warning __U64_TYPEDEF not defined 95 #warning __S64_TYPEDEF not defined
|
/bionic/libc/kernel/common/linux/ |
list.h | 15 #warning "don't include kernel headers in userspace"
|
/external/icu4c/extra/scrptrun/ |
srtest.dsw | 2 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
/external/icu4c/test/threadtest/ |
threadtest.dsw | 2 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|