HomeSort by relevance Sort by last modified time
    Searched refs:warning (Results 201 - 225 of 4231) sorted by null

1 2 3 4 5 6 7 891011>>

  /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)
  /external/libcxx/test/support/
msvc_stdlib_force_include.hpp 54 #pragma warning(disable: 4180) // qualifier applied to function type has no meaning; ignored
55 #pragma warning(disable: 4521) // multiple copy constructors specified
56 #pragma warning(disable: 4702) // unreachable code
57 #pragma warning(disable: 6294) // Ill-defined for-loop: initial condition does not satisfy test. Loop body not executed.
58 #pragma warning(disable: 28251) // Inconsistent annotation for 'new': this instance has no annotations.
  /external/llvm/test/MC/Mips/
set-nomacro-micromips.s 7 # CHECK-NOT: warning: macro instruction expanded into multiple instructions
21 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
23 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
25 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
28 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
30 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
33 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
set-nomacro.s 3 # CHECK-NOT: warning: macro instruction expanded into multiple instructions
81 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
83 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
85 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
88 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
90 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
92 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
94 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
96 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
99 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instruction
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/efi/X64/
ProcessorBind.h 34 // Disable ICC's remark #869: "Parameter" was never referenced warning.
37 #pragma warning ( disable : 869 )
43 #pragma warning ( disable : 1418 )
49 #pragma warning ( disable : 1419 )
57 // Disable warning that make it impossible to compile at /W4
64 #pragma warning ( disable : 4214 )
69 #pragma warning ( disable : 4100 )
72 // Disable slightly different base types warning as CHAR8 * can not be set
75 #pragma warning ( disable : 4057 )
78 // ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/Ebc/
EfiBind.h 29 // Disable warning that make it impossible to compile at /W3
36 #pragma warning ( disable : 167 )
41 #pragma warning ( disable : 186 )
46 #pragma warning ( disable : 188 )
  /external/chromium-trace/catapult/telemetry/telemetry/internal/forwarders/
android_forwarder.py 28 logging.warning('Failed to create forwarder. '
31 logging.warning(' %s', line)
33 logging.warning('Exception raised while listing forwarded connections.')
35 logging.warning('Relevant device tcp sockets in use:')
41 logging.warning(' %s', line)
43 logging.warning('Exception raised while listing tcp sockets.')
45 logging.warning('Possibly relevant lsof entries:')
52 logging.warning(' %s', line)
54 logging.warning('Exception raised running lsof.')
56 logging.warning('Alive webpagereplay instances:'
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/
android_power_monitor_base.py 23 logging.warning('Unable to get device voltage. Using %s.', voltage)
32 logging.warning('Power data is returning 0 for system total usage. %s'
35 logging.warning('Power data is returning 0 usage for %s. %s'
  /external/clang/test/Lexer/
pragma-message.c 13 #pragma message(":O I'm a message! " STRING(__LINE__)) // expected-warning {{:O I'm a message! 13}}
14 #pragma message ":O gcc accepts this! " STRING(__LINE__) // expected-warning {{:O gcc accepts this! 14}}
18 // GCC supports a similar pragma, #pragma GCC warning (which generates a warning
21 #pragma GCC warning(":O I'm a message! " STRING(__LINE__)) // expected-warning {{:O I'm a message! 21}}
22 #pragma GCC warning ":O gcc accepts this! " STRING(__LINE__) // expected-warning {{:O gcc accepts this! 22}}
31 #pragma GCC warning("" // expected-error {{pragma warning requires parenthesized string}
    [all...]
  /external/clang/test/Preprocessor/
pragma_diagnostic.c 7 #pragma GCC diagnostic warning "-Wundef"
9 #if FOO // expected-warning {{'FOO' is not defined}}
24 #pragma GCC diagnostic foo "-Wundef" // expected-warning {{pragma diagnostic expected 'error', 'warning', 'ignored', 'fatal', 'push', or 'pop'}}
28 #pragma GCC diagnostic error "-Wundef" 42 // expected-warning {{unexpected token in pragma diagnostic}}
29 #pragma GCC diagnostic error "invalid-name" // expected-warning {{pragma diagnostic expected option name (e.g. "-Wundef")}}
31 #pragma GCC diagnostic error "-Winvalid-name" // expected-warning {{unknown warning group '-Winvalid-name', ignored}}
37 #pragma clang diagnostic warning "-Weverything"
38 void ppp(){} // expected-warning {{no previous prototype for function 'ppp'}
    [all...]
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/llvm/include/llvm/Support/
thread.h 30 #pragma warning(push)
31 #pragma warning(disable:4530)
37 #pragma warning(pop)
  /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/Misc/
warn-sysheader.cpp 7 int f() { return (int)0; } // Use the old-style-cast warning as an arbitrary "ordinary" diagnostic for the purpose of testing.
9 #warning "custom message"
12 // expected-warning@9 {{"custom message"}}
14 // expected-warning@7 {{use of old-style cast}}
15 // expected-warning@9 {{"custom message"}}
21 // expected-warning@9 {{"custom message"}}
  /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/google-breakpad/src/common/mac/
bootstrap_compat.cc 40 #pragma GCC diagnostic warning "-Wdeprecated-declarations"
  /external/skia/src/sksl/
disable_flex_warnings.h 24 #pragma warning(push)
25 #pragma warning(disable:4018)
  /external/strace/
nsig.h 7 # warning NSIG is not defined, using 32
  /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
  /toolchain/binutils/binutils-2.25/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.25/ld/testsuite/ld-arm/
attr-merge-wchar-24.d 5 #warning: warning: .* uses 4-byte wchar_t yet the output is to use 2-byte wchar_t; use of wchar_t values across objects may fail
attr-merge-wchar-42.d 5 #warning: warning: .* uses 2-byte wchar_t yet the output is to use 4-byte wchar_t; use of wchar_t values across objects may fail
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
warn3.d 7 #warning: warning: isatty is not implemented and will always fail$
warn4.d 7 #warning: warning: isatty is not implemented and will always fail$
11 # warning construct.

Completed in 1223 milliseconds

1 2 3 4 5 6 7 891011>>