HomeSort by relevance Sort by last modified time
    Searched refs:warning (Results 51 - 75 of 1196) sorted by null

1 23 4 5 6 7 8 91011>>

  /development/host/windows/usb/winusb/
stdafx.h 58 // turns off ATL's hiding of some common and often safely ignored warning messages
64 #pragma warning(disable: 4702)
65 #pragma warning(disable: 4201)
72 #pragma warning(default: 4201)
73 #pragma warning(disable: 4200)
  /external/clang/test/Frontend/
rewrite-macros.c 11 // RUN: grep "//#warning eek" %t
12 /* expected-warning {{eek}} */ #warning eek
  /external/nist-sip/java/gov/nist/javax/sip/parser/
WarningParser.java 34 * Parser for Warning header.
50 * @param warning -
51 * Warning header to parse
53 public WarningParser(String warning) {
54 super(warning);
80 headerName(TokenTypes.WARNING);
83 Warning warning = new Warning(); local
84 warning.setHeaderName(SIPHeaderNames.WARNING)
    [all...]
  /external/stlport/stlport/stl/config/
_prolog.h 4 # pragma warning (push)
40 # pragma warning 604 10 /* must lookahead to determine... */
41 # pragma warning 594 10 /* resolved as declaration/type */
42 # pragma warning 595 10 /* resolved as an expression */
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 4 # pragma warning (push)
40 # pragma warning 604 10 /* must lookahead to determine... */
41 # pragma warning 594 10 /* resolved as declaration/type */
42 # pragma warning 595 10 /* resolved as an expression */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
asoundlib.h 0 #warning This header is deprecated, use <alsa/asoundlib.h> instead.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
asoundlib.h 0 #warning This header is deprecated, use <alsa/asoundlib.h> instead.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
asoundlib.h 0 #warning This header is deprecated, use <alsa/asoundlib.h> instead.
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 4 # pragma warning (push)
40 # pragma warning 604 10 /* must lookahead to determine... */
41 # pragma warning 594 10 /* resolved as declaration/type */
42 # pragma warning 595 10 /* resolved as an expression */
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 4 # pragma warning (push)
40 # pragma warning 604 10 /* must lookahead to determine... */
41 # pragma warning 594 10 /* resolved as declaration/type */
42 # pragma warning 595 10 /* resolved as an expression */
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 4 # pragma warning (push)
40 # pragma warning 604 10 /* must lookahead to determine... */
41 # pragma warning 594 10 /* resolved as declaration/type */
42 # pragma warning 595 10 /* resolved as an expression */
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3cyclicdfa.h 53 #pragma warning (push)
54 #pragma warning (disable : 4510)
55 #pragma warning (disable : 4512)
56 #pragma warning (disable : 4610)
93 #pragma warning (pop)
  /sdk/lint/cli/src/com/android/tools/lint/
TextReporter.java 49 public void write(int errorCount, int warningCount, List<Warning> issues) throws IOException {
59 for (Warning warning : issues) {
62 if (warning.path != null) {
63 output.append(warning.path);
66 if (warning.line >= 0) {
67 output.append(Integer.toString(warning.line + 1));
75 output.append(warning.severity.getDescription());
79 output.append(warning.message);
80 if (warning.issue != null)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
ANTLRErrorListener.java 40 public void warning(Message msg); method in interface:ANTLRErrorListener
  /external/clang/test/Parser/
cxx0x-literal-operators.cpp 6 expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
8 expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
  /external/clang/test/Preprocessor/
pragma_diagnostic_output.c 2 // CHECK: #pragma GCC diagnostic warning "-Wall"
3 #pragma GCC diagnostic warning "-Wall"
15 // CHECK: #pragma clang diagnostic warning "-Wall"
16 #pragma clang diagnostic warning "-Wall"
  /external/e2fsprogs/util/
gcc-wall-cleanup 19 /warning: missing initializer/d
20 /warning: (near initialization for/d
  /external/skia/bench/
BenchSysTimer_c.h 13 #warning standard clocks
  /external/webkit/Source/WebKit/mac/Misc/
WebAssertions.h 30 #warning <WebKit/WebAssertions.h> is deprecated. Please move away from this SPI as soon as is possible.
  /libcore/luni/src/main/java/javax/xml/transform/
ErrorListener.java 50 * Receive notification of a warning.
60 * @param exception The warning information encapsulated in a
68 public abstract void warning(TransformerException exception) method in interface:ErrorListener
  /libcore/luni/src/main/java/org/xml/sax/
ErrorHandler.java 26 * <p><strong>WARNING:</strong> If an application does <em>not</em>
53 * Receive notification of a warning.
67 * @param exception The warning information encapsulated in a
73 public abstract void warning (SAXParseException exception) method in interface:ErrorHandler
  /development/host/windows/usb/adb_winapi_test/
stdafx.h 55 #pragma warning(disable: 4200)
60 #pragma warning(default: 4200)
  /external/clang/test/SemaCXX/
warn-func-as-bool.cpp 21 b = f1; // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
22 expected-note {{prefix with the address-of operator to silence this warning}}
23 if (f1) {} // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
24 expected-note {{prefix with the address-of operator to silence this warning}}
25 b = S::f2; // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
26 expected-note {{prefix with the address-of operator to silence this warning}}
27 if (S::f2) {} // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
28 expected-note {{prefix with the address-of operator to silence this warning}}
29 b = f5; // expected-warning {{address of function 'f5' will always evaluate to 'true'}} \
30 expected-note {{prefix with the address-of operator to silence this warning}} \
    [all...]
  /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...]
  /device/moto/stingray/
BoardConfig.mk 24 $(warning The stingray device can only be used)
25 $(warning with the following TARGET_PRODUCT:)
26 $(warning trygon trygon_l10n calgon full_stingray tyranid stingray)
27 $(warning and you are using $(TARGET_PRODUCT).)
28 $(warning If that's correct, you need to modify)
29 $(warning the following files:)
30 $(warning device/moto/stingray/BoardConfig.mk)
31 $(warning device/moto/wingray/device_base.mk)
32 $(warning and (if it comes from git))
33 $(warning vendor/moto/stingray/stingray-vendor.mk
    [all...]

Completed in 871 milliseconds

1 23 4 5 6 7 8 91011>>