HomeSort by relevance Sort by last modified time
    Searched refs:warnings (Results 26 - 50 of 1417) sorted by null

12 3 4 5 6 7 8 91011>>

  /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()
3 import warnings
9 warnings.warn(message, stacklevel=stacklevel)
test_global.py 1 """Verify that warnings are issued for global statements following use."""
5 import warnings
47 with warnings.catch_warnings():
48 warnings.filterwarnings("error", module="<test string>")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sha.py 6 import warnings
7 warnings.warn("the sha module is deprecated; use the hashlib module instead",
dbhash.py 4 import warnings
5 warnings.warnpy3k("in 3.x, the dbhash module has been removed", stacklevel=2)
  /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()
3 import warnings
9 warnings.warn(message, stacklevel=stacklevel)
test_global.py 1 """Verify that warnings are issued for global statements following use."""
5 import warnings
47 with warnings.catch_warnings():
48 warnings.filterwarnings("error", module="<test string>")
  /frameworks/rs/tests/lldb/tests/harness/
util_warnings.py 15 '''Redirect the Python warnings into the log.'''
19 import warnings
27 '''Redirect all warnings issued by warnings::warn to the log.
29 By default all python warnings are printed into sys.stderr. This method
40 _OLD_WARNINGS_HANDLER = warnings.showwarning
45 '''Redirect the warnings to the Logger.'''
46 log.warn(warnings.formatwarning(*args).rstrip())
48 warnings.showwarning = _redirect_warnings_to_log
52 '''Restore the reporting of warnings::warn as before.''
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
__init__.py 24 import warnings
26 warnings.warn("The compiler package is deprecated and removed in Python 3.x.",
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
EarlyExitException.pm 4 use warnings;
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
__init__.py 24 import warnings
26 warnings.warn("The compiler package is deprecated and removed in Python 3.x.",
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
__init__.py 24 import warnings
26 warnings.warn("The compiler package is deprecated and removed in Python 3.x.",
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
__init__.py 24 import warnings
26 warnings.warn("The compiler package is deprecated and removed in Python 3.x.",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
__init__.py 24 import warnings
26 warnings.warn("The compiler package is deprecated and removed in Python 3.x.",
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-i386/
warn1.d 1 #name: --warn-shared-textrel --fatal-warnings
3 #ld: -shared -melf_i386 --warn-shared-textrel --fatal-warnings
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
dbhash.py 4 import warnings
5 warnings.warnpy3k("in 3.x, the dbhash module has been removed", stacklevel=2)
statvfs.py 2 from warnings import warnpy3k
  /prebuilts/gdb/darwin-x86/lib/python2.7/
dbhash.py 4 import warnings
5 warnings.warnpy3k("in 3.x, the dbhash module has been removed", stacklevel=2)
  /prebuilts/gdb/linux-x86/lib/python2.7/
dbhash.py 4 import warnings
5 warnings.warnpy3k("in 3.x, the dbhash module has been removed", stacklevel=2)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dbhash.py 4 import warnings
5 warnings.warnpy3k("in 3.x, the dbhash module has been removed", stacklevel=2)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_global.py 1 """Verify that warnings are issued for global statements following use."""
5 import warnings
47 with warnings.catch_warnings():
48 warnings.filterwarnings("error", module="<test string>")
testall.py 2 from warnings import warnpy3k
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_global.py 1 """Verify that warnings are issued for global statements following use."""
5 import warnings
47 with warnings.catch_warnings():
48 warnings.filterwarnings("error", module="<test string>")
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_global.py 1 """Verify that warnings are issued for global statements following use."""
5 import warnings
47 with warnings.catch_warnings():
48 warnings.filterwarnings("error", module="<test string>")
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/nios2/
warn_noat.s 3 .set noat # this should turn the warnings off
5 .set at, 3 # this should not turn the warnings on
7 .set at # this should turn the warnings on
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
ErrorQueue.java 40 List warnings = new LinkedList(); field in class:ErrorQueue
51 warnings.add(msg);
59 return infos.size() + errors.size() + warnings.size();
65 "warnings: "+warnings;

Completed in 1284 milliseconds

12 3 4 5 6 7 8 91011>>