/external/clang/test/Frontend/Inputs/SystemHeaderPrefix/libs/boost/ |
all.h | 1 #include "warn.h"
|
/external/clang/test/Frontend/Inputs/SystemHeaderPrefix/libs/mylib/ |
all.h | 1 #include "warn.h"
|
/external/clang/test/Frontend/Inputs/SystemHeaderPrefix/src/ |
all.h | 4 #include "libs/boost/warn.h" 5 #include "libs/mylib/warn.h" 6 #include "src/warn.h"
|
/external/llvm/test/MC/Disassembler/ARM/ |
unpredictable-AExtI-arm.txt | 1 # RUN: llvm-mc --disassemble %s -triple=armv7-linux-gnueabi 2>&1 | FileCheck %s -check-prefix=CHECK-WARN 4 # CHECK-WARN: potentially undefined 5 # CHECK-WARN: 0x74 0x03 0xaf 0x06 9 # CHECK-WARN: potentially undefined 10 # CHECK-WARN: 0x74 0x3f 0xbf 0x06 14 # CHECK-WARN: potentially undefined 15 # CHECK-WARN: 0x74 0x3f 0xa6 0x06 19 # CHECK-WARN: potentially undefined 20 # CHECK-WARN: 0x74 0x3f 0xb7 0x06 24 # CHECK-WARN: potentially undefine [all...] |
invalid-FSTMX-arm.txt | 1 # RUN: llvm-mc --disassemble %s -triple=armv7 2>&1 | FileCheck %s -check-prefix=CHECK-WARN 5 # CHECK-WARN: potentially undefined 6 # CHECK-WARN: 0x01 0xdb 0x84 0xec
|
/external/clang/test/SemaCXX/ |
warn-missing-prototypes.cpp | 10 // Don't warn about functions in anonymous namespaces. 15 // Don't warn about member functions. 19 // Don't warn about inline functions. 22 // Don't warn about function templates. 25 // Don't warn when instantiating function templates. 28 // PR9519: don't warn about friend functions.
|
warn-using-namespace-in-header.cpp | 13 // We should warn in toplevel extern contexts. 19 // This is really silly, but we should warn on it: 28 // But we shouldn't warn in extern contexts inside namespaces. 35 // We also shouldn't warn in case of functions. 44 // |using namespace| through a macro should warn if the instantiation is in a 56 // |using namespace| through a macro shouldn't warn if the instantiation is in a
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/src/ |
log4j.properties | 12 log4j.category.DataNucleus.JDO=WARN, A1 13 log4j.category.DataNucleus.Persistence=WARN, A1 14 log4j.category.DataNucleus.Cache=WARN, A1 15 log4j.category.DataNucleus.MetaData=WARN, A1 16 log4j.category.DataNucleus.General=WARN, A1 17 log4j.category.DataNucleus.Utility=WARN, A1 18 log4j.category.DataNucleus.Transaction=WARN, A1 19 log4j.category.DataNucleus.Datastore=WARN, A1 20 log4j.category.DataNucleus.ClassLoading=WARN, A1 21 log4j.category.DataNucleus.Plugin=WARN, A [all...] |
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/war/WEB-INF/classes/ |
log4j.properties | 12 log4j.category.DataNucleus.JDO=WARN, A1 13 log4j.category.DataNucleus.Persistence=WARN, A1 14 log4j.category.DataNucleus.Cache=WARN, A1 15 log4j.category.DataNucleus.MetaData=WARN, A1 16 log4j.category.DataNucleus.General=WARN, A1 17 log4j.category.DataNucleus.Utility=WARN, A1 18 log4j.category.DataNucleus.Transaction=WARN, A1 19 log4j.category.DataNucleus.Datastore=WARN, A1 20 log4j.category.DataNucleus.ClassLoading=WARN, A1 21 log4j.category.DataNucleus.Plugin=WARN, A [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
warning_tests.py | 1 # Helper module for testing the skipmodules argument of warnings.warn() 9 warnings.warn(message, stacklevel=stacklevel)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
warning_tests.py | 1 # Helper module for testing the skipmodules argument of warnings.warn() 9 warnings.warn(message, stacklevel=stacklevel)
|
/external/chromium_org/tools/clang/plugins/tests/ |
overridden_methods.cpp | 14 // Should not warn about pure virtual methods. 21 // Should not warn about destructors. 23 // Should warn. 25 // Should not warn if marked as override. 27 // Should not warn for inline implementations in implementation files. 29 // Should not warn if overriding a method whose origin is WebKit. 31 // Should warn with the insertion point after the const. 33 // Should warn with the insertion point after the throw spec. 35 // Should warn with the insertion point after both the const and the throw 38 // Should warn even if overridden method isn't pure [all...] |
overridden_methods.h | 8 // Should warn about overriding of methods. 24 // Should not warn about pure virtual methods. 45 // Should not warn about destructors. 47 // Should warn. 49 // Should not warn if marked as override. 51 // Should warn for inline implementations. 53 // Should not warn if overriding a method whose origin is WebKit. 55 // Should warn with the insertion point after the const. 57 // Should warn with the insertion point after the throw spec. 59 // Should warn with the insertion point after both the const and the thro [all...] |
/external/clang/test/Analysis/ |
NewDelete-variadic.cpp | 12 void *p1 = operator new(0); // no warn 14 void *p2 = operator new[](0); // no warn 16 int *p3 = new int; // no warn 18 int *p4 = new int[0]; // no warn
|
/external/chromium/chrome/browser/debugger/manual_tests/resources/ |
script-console-calls.js | 3 console.warn("Test console.warn");
|
/external/chromium_org/third_party/WebKit/ManualTests/inspector/resources/ |
script-console-calls.js | 3 console.warn("Test console.warn");
|
/external/clang/test/Misc/ |
warn-in-system-header.c | 3 #include <warn-in-system-header.h> 4 // expected-warning@warn-in-system-header.h:4 {{the cake is a lie}}
|
/external/linux-tools-perf/util/include/asm/ |
bug.h | 6 #define WARN(condition, format...) ({ \ 18 if (WARN(!__warned, format)) \
|
/ndk/sources/host-tools/make-3.81/tests/scripts/options/ |
warn-undefined-variables | 3 $description = "Test the --warn-undefined-variables option."; 7 # Without --warn-undefined-variables, nothing should happen 19 # With --warn-undefined-variables, it should warn me 20 run_make_test(undef, '--warn-undefined-variables',
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
log.py | 8 WARN = 3 16 def __init__(self, threshold=WARN): 20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL): 26 if level in (WARN, ERROR, FATAL): 42 def warn(self, msg, *args): member in class:Log 43 self._log(WARN, msg, args) 55 warn = _global_log.warn variable 67 set_threshold(WARN)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
log.py | 8 WARN = 3 16 def __init__(self, threshold=WARN): 20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL): 26 if level in (WARN, ERROR, FATAL): 42 def warn(self, msg, *args): member in class:Log 43 self._log(WARN, msg, args) 55 warn = _global_log.warn variable 67 set_threshold(WARN)
|
/external/clang/test/Preprocessor/ |
extension-warning.c | 3 // The preprocessor shouldn't warn about extensions within macro bodies that 8 // But we should warn here 10 TY(1) x; // FIXME: And we should warn here
|
/external/chromium_org/tools/gyp/test/win/ |
gyptest-link-warnings-as-errors.py | 19 test.run_gyp('warn-as-error.gyp', chdir=CHDIR) 21 test.build('warn-as-error.gyp', 'test_on', chdir=CHDIR, status=1) 22 test.build('warn-as-error.gyp', 'test_off', chdir=CHDIR) 23 test.build('warn-as-error.gyp', 'test_default', chdir=CHDIR)
|
/external/clang/test/SemaCXX/Inputs/ |
warn-unused-variables.h | 1 // Verify that we don't warn about variables of internal-linkage type in
|
/external/clang/test/SemaOpenCL/ |
warn-missing-prototypes.cl | 5 // Don't warn about kernel functions.
|