HomeSort by relevance Sort by last modified time
    Searched refs:warn_explicit (Results 1 - 20 of 20) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_warnings.py 130 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
134 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
137 self.module.warn_explicit(message, UserWarning, "test_warnings2.py",
198 """Test warnings.warn() and warnings.warn_explicit()."""
323 # warn_explicit() should error out gracefully if it is given objects
326 self.assertRaises(TypeError, self.module.warn_explicit,
330 self.assertRaises(TypeError, self.module.warn_explicit,
334 self.module.warn_explicit,
435 self.module.warn_explicit(message, UserWarning, "file", 42)
438 self.module.warn_explicit(message, UserWarning, "file", 42)
    [all...]
  /external/python/cpython2/Lib/test/
test_warnings.py 73 target_api = ["warn", "warn_explicit", "showwarning",
149 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
153 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
156 self.module.warn_explicit(message, UserWarning, "test_warnings2.py",
229 """Test warnings.warn() and warnings.warn_explicit()."""
353 # warn_explicit() should error out gracefully if it is given objects
356 self.assertRaises(TypeError, self.module.warn_explicit,
360 self.assertRaises(TypeError, self.module.warn_explicit,
364 self.module.warn_explicit,
465 self.module.warn_explicit(message, UserWarning, "file", 42
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_warnings.py 130 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
134 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
137 self.module.warn_explicit(message, UserWarning, "test_warnings2.py",
198 """Test warnings.warn() and warnings.warn_explicit()."""
323 # warn_explicit() should error out gracefully if it is given objects
326 self.assertRaises(TypeError, self.module.warn_explicit,
330 self.assertRaises(TypeError, self.module.warn_explicit,
334 self.module.warn_explicit,
435 self.module.warn_explicit(message, UserWarning, "file", 42)
438 self.module.warn_explicit(message, UserWarning, "file", 42
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_warnings.py 130 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
134 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
137 self.module.warn_explicit(message, UserWarning, "test_warnings2.py",
198 """Test warnings.warn() and warnings.warn_explicit()."""
323 # warn_explicit() should error out gracefully if it is given objects
326 self.assertRaises(TypeError, self.module.warn_explicit,
330 self.assertRaises(TypeError, self.module.warn_explicit,
334 self.module.warn_explicit,
435 self.module.warn_explicit(message, UserWarning, "file", 42)
438 self.module.warn_explicit(message, UserWarning, "file", 42
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_warnings.py 130 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
134 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
137 self.module.warn_explicit(message, UserWarning, "test_warnings2.py",
198 """Test warnings.warn() and warnings.warn_explicit()."""
323 # warn_explicit() should error out gracefully if it is given objects
326 self.assertRaises(TypeError, self.module.warn_explicit,
330 self.assertRaises(TypeError, self.module.warn_explicit,
334 self.module.warn_explicit,
435 self.module.warn_explicit(message, UserWarning, "file", 42)
438 self.module.warn_explicit(message, UserWarning, "file", 42
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_warnings.py 130 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
134 self.module.warn_explicit(message, UserWarning, "test_warnings.py",
137 self.module.warn_explicit(message, UserWarning, "test_warnings2.py",
198 """Test warnings.warn() and warnings.warn_explicit()."""
323 # warn_explicit() should error out gracefully if it is given objects
326 self.assertRaises(TypeError, self.module.warn_explicit,
330 self.assertRaises(TypeError, self.module.warn_explicit,
334 self.module.warn_explicit,
435 self.module.warn_explicit(message, UserWarning, "file", 42)
438 self.module.warn_explicit(message, UserWarning, "file", 42
    [all...]
  /external/python/cpython3/Lib/test/test_warnings/
__init__.py 80 target_api = ["warn", "warn_explicit", "showwarning",
207 self.module.warn_explicit(message, UserWarning, "__init__.py",
211 self.module.warn_explicit(message, UserWarning, "__init__.py",
214 self.module.warn_explicit(message, UserWarning, "test_warnings2.py",
287 self.module.warn_explicit(UserWarning("b"), None, "f.py", 42)
346 """Test warnings.warn() and warnings.warn_explicit()."""
502 self.module.warn_explicit("text", UserWarning, filename, 1)
506 # warn_explicit() should error out gracefully if it is given objects
509 self.assertRaises(TypeError, self.module.warn_explicit,
513 self.assertRaises(TypeError, self.module.warn_explicit,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
_warnings.c 289 warn_explicit(PyObject *category, PyObject *message, function
596 res = warn_explicit(category, message, filename, lineno, module, registry,
634 if (!PyArg_ParseTupleAndKeywords(args, kwds, "OOOi|OOO:warn_explicit",
695 returned = warn_explicit(category, message, filename, lineno, module,
702 return warn_explicit(category, message, filename, lineno, module,
761 res = warn_explicit(category, message, filename, lineno, module, registry,
785 {"warn_explicit", (PyCFunction)warnings_warn_explicit,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
warnings.py 10 __all__ = ["warn", "warn_explicit", "showwarning",
216 warn_explicit(message, category, filename, lineno, module, registry,
219 def warn_explicit(message, category, filename, lineno, function
377 warn, warn_explicit)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
warnings.py 212 warn_explicit(message, category, filename, lineno, module, registry,
215 def warn_explicit(message, category, filename, lineno, function
373 warn, warn_explicit)
  /external/python/cpython2/Lib/
warnings.py 10 __all__ = ["warn", "warn_explicit", "showwarning",
234 warn_explicit(message, category, filename, lineno, module, registry,
237 def warn_explicit(message, category, filename, lineno, function
395 warn, warn_explicit)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
warnings.py 212 warn_explicit(message, category, filename, lineno, module, registry,
215 def warn_explicit(message, category, filename, lineno, function
373 warn, warn_explicit)
  /prebuilts/gdb/linux-x86/lib/python2.7/
warnings.py 212 warn_explicit(message, category, filename, lineno, module, registry,
215 def warn_explicit(message, category, filename, lineno, function
373 warn, warn_explicit)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
warnings.py 212 warn_explicit(message, category, filename, lineno, module, registry,
215 def warn_explicit(message, category, filename, lineno, function
373 warn, warn_explicit)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
warnings.py 212 warn_explicit(message, category, filename, lineno, module, registry,
215 def warn_explicit(message, category, filename, lineno, function
373 warn, warn_explicit)
  /external/python/cpython3/Python/
_warnings.c 434 warn_explicit(PyObject *category, PyObject *message, function
800 res = warn_explicit(category, message, filename, lineno, module, registry,
841 if (!PyArg_ParseTupleAndKeywords(args, kwds, "OOUi|OOOO:warn_explicit",
898 returned = warn_explicit(category, message, filename, lineno, module,
905 return warn_explicit(category, message, filename, lineno, module,
1021 res = warn_explicit(category, message, filename, lineno,
1085 res = warn_explicit(category, message, filename, lineno,
1110 {"warn_explicit", (PyCFunction)warnings_warn_explicit,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
_warnings.c 289 warn_explicit(PyObject *category, PyObject *message, function
597 res = warn_explicit(category, message, filename, lineno, module, registry,
635 if (!PyArg_ParseTupleAndKeywords(args, kwds, "OOOi|OOO:warn_explicit",
696 returned = warn_explicit(category, message, filename, lineno, module,
703 return warn_explicit(category, message, filename, lineno, module,
762 res = warn_explicit(category, message, filename, lineno, module, registry,
786 {"warn_explicit", (PyCFunction)warnings_warn_explicit,
  /external/python/cpython2/Python/
_warnings.c 289 warn_explicit(PyObject *category, PyObject *message, function
596 res = warn_explicit(category, message, filename, lineno, module, registry,
634 if (!PyArg_ParseTupleAndKeywords(args, kwds, "OOOi|OOO:warn_explicit",
695 returned = warn_explicit(category, message, filename, lineno, module,
702 return warn_explicit(category, message, filename, lineno, module,
761 res = warn_explicit(category, message, filename, lineno, module, registry,
785 {"warn_explicit", (PyCFunction)warnings_warn_explicit,
  /external/python/cpython3/Lib/
warnings.py 6 __all__ = ["warn", "warn_explicit", "showwarning",
318 warn_explicit(message, category, filename, lineno, module, registry,
321 def warn_explicit(message, category, filename, lineno, function
488 warn, warn_explicit, _filters_mutated)
timeit.py 354 warnings.warn_explicit(

Completed in 1977 milliseconds