Home
last modified time | relevance | path

Searched refs:ToUint32 (Results 1 – 22 of 22) sorted by relevance

/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
D9.6.js73 function ToUint32( n ) { class
111 …array[item++] = new TestCase( SECTION, "-1.1 >>> 0", ToUint32(-1.1), …
112 …array[item++] = new TestCase( SECTION, "-1 >>> 0", ToUint32(-1), …
114 …array[item++] = new TestCase( SECTION, "2147483647 >>> 0", ToUint32(2147483647), 21…
115 …array[item++] = new TestCase( SECTION, "2147483648 >>> 0", ToUint32(2147483648), 21…
116 …array[item++] = new TestCase( SECTION, "2147483649 >>> 0", ToUint32(2147483649), 21…
118 …array[item++] = new TestCase( SECTION, "4294967295 >>> 0", ToUint32(4294967295), 42…
119 …array[item++] = new TestCase( SECTION, "4294967296 >>> 0", ToUint32(4294967296), 42…
120 …array[item++] = new TestCase( SECTION, "4294967297 >>> 0", ToUint32(4294967297), 42…
122 …array[item++] = new TestCase( SECTION, "-2147483647 >>> 0", ToUint32(-2147483647), -2…
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
D15.4.1.2.js59 …array[item++] = new TestCase( SECTION, "(Array(4294967295)).length", ToUint32(4294967295), …
60 …array[item++] = new TestCase( SECTION, "(Array(Math.pow(2,31)-1)).length", ToUint32(Math.pow(2…
61 …array[item++] = new TestCase( SECTION, "(Array(Math.pow(2,31))).length", ToUint32(Math.pow(2…
62 …array[item++] = new TestCase( SECTION, "(Array(Math.pow(2,31)+1)).length", ToUint32(Math.pow(2…
65 …array[item++] = new TestCase( SECTION, "(Array(1073741823)).length", ToUint32(1073741823), …
66 …array[item++] = new TestCase( SECTION, "(Array(1073741824)).length", ToUint32(1073741824), …
82 function ToUint32( n ) { class
D15.4.2.2-1.js85 …array[item++] = new TestCase( SECTION, "(new Array(4294967295)).length", ToUint32(4294967295), …
89 …array[item++] = new TestCase( SECTION, "(new Array(1073741824)).length", ToUint32(1073741824), (…
108 function ToUint32( n ) { class
D15.4.1.1.js48 function ToUint32( n ) { class
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
D11.7.3.js116 function ToUint32( n ) { class
226 s = ToUint32( s );
227 a = ToUint32( a );
D11.7.1.js111 function ToUint32( n ) { class
213 var add = ToUint32( a );
D11.7.2.js125 function ToUint32( n ) { class
225 a = ToUint32( a );
D11.4.8.js104 function ToUint32( n ) { class
D11.10-2.js112 function ToUint32( n ) { class
D11.10-1.js113 function ToUint32( n ) { class
D11.10-3.js112 function ToUint32( n ) { class
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
Dsplit-002.js148 lim = ToUint32( limit );
246 function ToUint32( n ) { class
/external/v8/src/
Druntime.js451 length = (args == null) ? 0 : %ToUint32(args.length);
586 function ToUint32(x) { class
Dexecution.h107 static Handle<Object> ToUint32(Handle<Object> obj, bool* exc);
Dv8natives.js864 var new_length = ToUint32(desc.getValue());
900 var index = ToUint32(p);
961 var n = ToUint32(obj.length);
Darray.js1016 var length = ToUint32(array.length);
1295 var length = ToUint32(array.length);
1332 var length = ToUint32(array.length);
Daccessors.cc125 Handle<Object> uint32_v = Execution::ToUint32(value_handle, &has_exception); in ArraySetLength()
Dexecution.cc635 Handle<Object> Execution::ToUint32(Handle<Object> obj, bool* exc) { in ToUint32() function in v8::internal::Execution
Dapi.cc2580 Local<Uint32> Value::ToUint32() const { in ToUint32() function in v8::Value
2591 num = i::Execution::ToUint32(obj, &has_pending_exception); in ToUint32()
2719 i::Execution::ToUint32(obj, &has_pending_exception); in Uint32Value()
/external/webkit/Source/WebCore/bindings/v8/
DV8Binding.cpp206 v8::Local<v8::Uint32> uintValue = value->ToUint32(); in toUInt32()
/external/v8/include/
Dv8.h965 V8EXPORT Local<Uint32> ToUint32() const;
/external/v8/test/cctest/
Dtest-api.cc2788 CHECK(0u == obj->ToUint32()->Value()); // NOLINT - no CHECK_EQ for unsigned. in THREADED_TEST()
2794 CHECK(2382691125u == obj->ToUint32()->Value()); // NOLINT in THREADED_TEST()
2800 CHECK(42u == obj->ToUint32()->Value()); // NOLINT in THREADED_TEST()
2806 CHECK(4294967259u == obj->ToUint32()->Value()); // NOLINT in THREADED_TEST()
2812 CHECK(2166572391u == obj->ToUint32()->Value()); // NOLINT in THREADED_TEST()
2818 CHECK(42u == obj->ToUint32()->Value()); // NOLINT in THREADED_TEST()
2824 CHECK(2863311531u == obj->ToUint32()->Value()); // NOLINT in THREADED_TEST()
2902 Local<Value> to_uint32_result = obj->ToUint32(); in THREADED_TEST()