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

  /external/chromium_org/third_party/WebKit/Source/core/testing/
TypeConversions.idl 30 [EnforceRange, ImplementedAs=testLong] attribute long testEnforceRangeLong;
32 [EnforceRange, ImplementedAs=testUnsignedLong] attribute unsigned long testEnforceRangeUnsignedLong;
35 [EnforceRange, ImplementedAs=testLongLong] attribute long long testEnforceRangeLongLong;
37 [EnforceRange, ImplementedAs=testUnsignedLongLong] attribute unsigned long long testEnforceRangeUnsignedLongLong;
40 [EnforceRange, ImplementedAs=testByte] attribute byte testEnforceRangeByte;
42 [EnforceRange, ImplementedAs=testOctet] attribute octet testEnforceRangeOctet;
45 [EnforceRange, ImplementedAs=testShort] attribute short testEnforceRangeShort;
47 [EnforceRange, ImplementedAs=testUnsignedShort] attribute unsigned short testEnforceRangeUnsignedShort;
Internals.idl 261 [CallWith=ScriptState] Promise promiseCheckRange([EnforceRange] octet arg1);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.idl 31 [CallWith=ScriptState, RaisesException] IDBOpenDBRequest open(DOMString name, [EnforceRange] optional unsigned long long version);
IDBCursor.idl 45 [RaisesException] void advance([EnforceRange] unsigned long count);
  /external/chromium_org/third_party/WebKit/Source/bindings/
IDLExtendedAttributes.txt 55 EnforceRange
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8Binding.cpp 142 static double enforceRange(double x, double minimum, double maximum, const char* typeName, ExceptionState& exceptionState)
196 if (configuration == EnforceRange) {
216 if (configuration == EnforceRange)
217 return enforceRange(numberObject->Value(), LimitsTrait::minValue, LimitsTrait::maxValue, typeName, exceptionState);
245 if (configuration == EnforceRange) {
264 if (configuration == EnforceRange)
265 return enforceRange(numberObject->Value(), 0, LimitsTrait::maxValue, typeName, exceptionState);
342 if (configuration == EnforceRange)
343 return enforceRange(numberObject->Value(), kMinInt32, kMaxInt32, "long", exceptionState);
376 if (configuration == EnforceRange) {
    [all...]
V8Binding.h 430 EnforceRange,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
TestObject.idl 182 [EnforceRange] attribute long enforceRangeLongAttribute;
455 // [EnforceRange]
456 void voidMethodEnforceRangeLongArg([EnforceRange] long enforceRangeLongArg);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestObject.cpp     [all...]

Completed in 1976 milliseconds