HomeSort by relevance Sort by last modified time
    Searched refs:ArgumentError (Results 1 - 25 of 28) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_returnfuncptrs.py 18 self.assertRaises(ArgumentError, strchr, "abcdef", 3)
32 self.assertRaises(ArgumentError, strchr, "abcdef", 3)
42 self.assertRaises(ArgumentError, strchr, b"abcdef", 3.0)
61 self.assertRaises(ArgumentError, strchr, b"abcdef", 3.0)
test_unicode.py 30 self.assertRaises(ctypes.ArgumentError, wcslen, "ab?")
94 self.assertRaises(ctypes.ArgumentError, func, u"ab?")
test_parameters.py 152 from ctypes import CDLL, c_void_p, ArgumentError
173 self.assertRaises(ArgumentError, func, object())
181 # ArgumentError: argument 1: ValueError: 99
182 self.assertRaises(ArgumentError, func, 99)
test_prototypes.py 81 self.assertRaises(ArgumentError, func, byref(ci))
84 self.assertRaises(ArgumentError, func, byref(ci))
87 self.assertRaises(ArgumentError, func, byref(ci))
test_functions.py 213 self.assertRaises(ArgumentError, f, byref(c_short(22)))
276 self.assertRaises(ArgumentError, f, -10, cb)
409 self.assertRaises(ArgumentError, lambda: callback((1, 2, 3, 4), POINT()))
test_as_parameter.py 106 self.assertRaises(ArgumentError, f, self.wrap(-10), self.wrap(cb))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_returnfuncptrs.py 18 self.assertRaises(ArgumentError, strchr, "abcdef", 3)
32 self.assertRaises(ArgumentError, strchr, "abcdef", 3)
42 self.assertRaises(ArgumentError, strchr, b"abcdef", 3.0)
61 self.assertRaises(ArgumentError, strchr, b"abcdef", 3.0)
test_unicode.py 30 self.assertRaises(ctypes.ArgumentError, wcslen, "ab?")
94 self.assertRaises(ctypes.ArgumentError, func, u"ab?")
test_parameters.py 152 from ctypes import CDLL, c_void_p, ArgumentError
173 self.assertRaises(ArgumentError, func, object())
181 # ArgumentError: argument 1: ValueError: 99
182 self.assertRaises(ArgumentError, func, 99)
test_prototypes.py 81 self.assertRaises(ArgumentError, func, byref(ci))
84 self.assertRaises(ArgumentError, func, byref(ci))
87 self.assertRaises(ArgumentError, func, byref(ci))
test_functions.py 213 self.assertRaises(ArgumentError, f, byref(c_short(22)))
276 self.assertRaises(ArgumentError, f, -10, cb)
409 self.assertRaises(ArgumentError, lambda: callback((1, 2, 3, 4), POINT()))
test_as_parameter.py 106 self.assertRaises(ArgumentError, f, self.wrap(-10), self.wrap(cb))
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
interactive.rb 33 @readline = block or raise( ArgumentError, "no line-reading block was provided" )
69 @readline = block or raise( ArgumentError, "no line-reading block was provided" )
rewrite.rb 348 raise ArgumentError,
352 raise ArgumentError,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
macresource.py 12 class ArgumentError(TypeError): pass
25 raise ArgumentError, "Either filename or modname argument (or both) must be given"
  /external/llvm/utils/lit/lit/
Test.py 145 raise ArgumentError("test result already set")
147 raise ArgumentError("unexpected result type")
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
template.rb 74 raise ArgumentError, Util.tidy( <<-END, true )
280 raise ArgumentError, "cannot convert %p to an instance variable name" % name
recognizers.rb     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
argparse.py 34 - ArgumentError -- The exception raised by ArgumentParser objects when
67 'ArgumentError',
683 class ArgumentError(Exception):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
argparse.py 34 - ArgumentError -- The exception raised by ArgumentParser objects when
67 'ArgumentError',
683 class ArgumentError(Exception):
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 104 raise ArgumentError, "n must be >= 0" if n < 0
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 355 else raise ArgumentError, "search subject must be a token type (integer) or a string"
378 else raise( ArgumentError, tidy( <<-'END', true ) )
468 when DOT_DOT_PATTERN then raise ArgumentError, "invalid syntax: .."
469 when DOUBLE_ETC_PATTERN then raise ArgumentError, "invalid syntax: ... ..."
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
hetero-nodes.rb 201 else raise ArgumentError, "invalid number of arguments: #{args.length} for 3-4"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 15 from _ctypes import ArgumentError
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 15 from _ctypes import ArgumentError

Completed in 454 milliseconds

1 2