Searched refs:warning (Results 1 - 25 of 1298) sorted by relevance

1234567891011>>

/external/clang/test/Misc/
H A Ddiag-mapping2.c2 // RUN: %clang_cc1 %s 2>&1 | grep "warning: foo"
11 // -Werror can map this one warning to error.
15 // RUN: %clang_cc1 %s -Werror -Wno-error=#warnings 2>&1 | grep "warning: foo"
18 // RUN: %clang_cc1 %s -Werror -Wno-error 2>&1 | grep "warning: foo"
20 #warning foo
H A Dwarn-in-system-header.h4 #warning the cake is a lie
/external/libvorbis/symbian/
H A Dconfig.h40 #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(disabl
[all...]
/external/llvm/test/MC/AsmParser/
H A Ddirective-warning.s3 .warning
4 // CHECK: warning: .warning directive invoked in source file
5 // CHECK-NEXT: .warning
9 .warning
11 // CHECK: warning: .warning directive invoked in source file
12 // CHECK-NEXT: .warning
16 .warning
18 // CHECK-NOT: warning
[all...]
/external/libnetfilter_conntrack/include/libnetfilter_conntrack/
H A Dlibnetfilter_conntrack_ipv4.h4 #warning "Please, remove libnetfilter_conntrack_ipv4.h from your includes!"
H A Dlibnetfilter_conntrack_ipv6.h4 #warning "Please, remove libnetfilter_conntrack_ipv6.h from your includes!"
/external/clang/test/Index/
H A Dcrash-recovery-code-complete.c14 #warning parsing original file
H A Dcrash-recovery-reparse.c11 #warning parsing original file
/external/clang/test/Preprocessor/
H A Dfile_to_include.h2 #warning file successfully included
H A Dpragma_microsoft.cpp3 #pragma warning(push, 4_D) // expected-warning {{requires a level between 0 and 4}}
H A Dpragma_microsoft.c48 __pragma(warning(push)); \
49 __pragma(warning(disable: 10000)); \
51 __pragma(warning(pop)); \
56 __pragma() // expected-warning{{unknown pragma ignored}}
59 // If we ever actually *support* __pragma(warning(disable: x)),
60 // this warning should go away.
61 MACRO_WITH__PRAGMA // expected-warning {{lower precedence}} \
63 // CHECK: #pragma warning(push)
64 // CHECK: #pragma warning(disable: 10000)
66 // CHECK: #pragma warning(po
[all...]
/external/lzma/C/
H A DCompiler.h11 /* #pragma warning(disable : 4115) // '_RPC_ASYNC_STATE' : named type definition in parentheses */
12 #pragma warning(disable : 4201) // nonstandard extension used : nameless struct/union
13 #pragma warning(disable : 4214) // nonstandard extension used : bit field types other than int
17 #pragma warning(disable : 4996) // This function or variable may be unsafe
19 #pragma warning(disable : 4511) // copy constructor could not be generated
20 #pragma warning(disable : 4512) // assignment operator could not be generated
21 #pragma warning(disable : 4702) // unreachable code
22 #pragma warning(disable : 4710) // not inlined
23 #pragma warning(disable : 4786) // identifier was truncated to '255' characters in the debug information
/external/syslinux/gnu-efi/gnu-efi-3.0/gnuefi/
H A Dsetjmp_ia64.S2 #warning not implemented
/external/skia/tools/
H A DSkJSONCPP.h19 // json includes xlocale which generates warning 4530 because we're
22 #pragma warning(push)
23 #pragma warning(disable : 4530)
29 #pragma warning(pop)
/external/clang/test/Frontend/
H A Dverify3.c17 #warning X
18 // expected-warning@-1 {{X}}
37 #warning X
38 // expected-warning@-1 {{X}}
H A Dverify-ignore-unexpected.c12 #warning MyWarning1
13 // expected-warning@-1 {{MyWarning1}}
24 // RUN: not %clang_cc1 -DTEST2 -verify -verify-ignore-unexpected=warning %s 2>&1 \
29 #warning MyWarning2
36 // CHECK-UNEXP-NEXT: 'warning' diagnostics seen but not expected
45 // CHECK-NOTE-NEXT: 'warning' diagnostics seen but not expected
57 // CHECK-ERR-NEXT: 'warning' diagnostics seen but not expected
73 // RUN: not %clang_cc1 -DTEST4 -verify -verify-ignore-unexpected=warning,error,note %s 2>&1 \
76 #warning MyWarning4
H A Dwarning-mapping-5.c1 // Check that #pragma diagnostic warning overrides -Werror. This matches GCC's
6 #pragma clang diagnostic warning "-Wsign-compare"
8 return x < y; // expected-warning {{comparison of integers}}
/external/clang/test/Lexer/
H A Dpragma-message2.c3 #pragma message "\\test" // expected-warning {{\test}}
6 #pragma message("\\test") // expected-warning {{\test}}
9 #pragma GCC warning "\"" "te" "st" "\"" // expected-warning {{"test"}}
10 // CHECK: #pragma GCC warning "\042test\042"
12 #pragma GCC warning("\"" "te" "st" "\"") // expected-warning {{"test"}}
13 // CHECK: #pragma GCC warning "\042test\042"
H A Dpragma-operators.cpp7 // CHECK: #pragma warning(push)
10 // CHECK: #pragma warning(push)
12 // CHECK: #pragma warning(pop)
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)
40 // CHECK: #pragma warning(disable: 1 2 3)
42 // CHECK: #pragma warning(error: 4 5 6)
44 // CHECK: #pragma warning(suppres
[all...]
/external/neven/Embedded/common/src/b_BasicEm/
H A DConfig.h53 /* 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 */
64 #pragma warning( disable : 4702 )
66 /* disable warning fo
[all...]
/external/libusb/msvc/
H A Dconfig.h13 /* Disable: warning C4200: nonstandard extension used : zero-sized array in struct/union */
14 #pragma warning(disable:4200)
15 /* Disable: warning C6258: Using TerminateThread does not allow proper thread clean up */
16 #pragma warning(disable: 6258)
17 /* Disable: warning C4996: 'GetVersionA': was declared deprecated */
18 #pragma warning(disable: 4996)
22 #pragma warning(disable:28719)
24 #pragma warning(disable:28125)
/external/clang/test/Index/Inputs/
H A Dcrash-recovery-code-complete-remap.c8 #warning parsing original file
/external/clang/test/SemaCXX/
H A Dwarn-deprecated-header.cpp4 // expected-warning@+2 {{This file is deprecated.}}
6 #warning This file is deprecated.
/external/curl/lib/
H A Dwarnless.c64 # pragma warning(push)
65 # pragma warning(disable:810) /* conversion may lose significant bits */
72 # pragma warning(pop)
83 # pragma warning(push)
84 # pragma warning(disable:810) /* conversion may lose significant bits */
91 # pragma warning(pop)
102 # pragma warning(push)
103 # pragma warning(disable:810) /* conversion may lose significant bits */
110 # pragma warning(pop)
121 # pragma warning(pus
[all...]
/external/clang/test/PCH/
H A Dmultiple-include-pch.c12 #warning parsed this
13 // expected-warning@-1 {{parsed this}}

Completed in 768 milliseconds

1234567891011>>