enforceRange      216 Source/bindings/v8/V8Binding.cpp         return enforceRange(numberObject->Value(), LimitsTrait::minValue, LimitsTrait::maxValue, typeName, exceptionState);
enforceRange      253 Source/bindings/v8/V8Binding.cpp         return enforceRange(numberObject->Value(), 0, LimitsTrait::maxValue, typeName, exceptionState);
enforceRange      325 Source/bindings/v8/V8Binding.cpp         return enforceRange(numberObject->Value(), kMinInt32, kMaxInt32, "long", exceptionState);
enforceRange      371 Source/bindings/v8/V8Binding.cpp         return enforceRange(numberObject->Value(), 0, kMaxUInt32, "unsigned long", exceptionState);
enforceRange      407 Source/bindings/v8/V8Binding.cpp         return enforceRange(x, -kJSMaxInteger, kJSMaxInteger, "long long", exceptionState);
enforceRange      453 Source/bindings/v8/V8Binding.cpp         return enforceRange(x, 0, kJSMaxInteger, "unsigned long long", exceptionState);