Searched defs:ToUint32 (Results 1 - 15 of 15) sorted by relevance

/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
H A D15.4.1.1.js48 function ToUint32( n ) { function
H A D15.4.1.2.js59 array[item++] = new TestCase( SECTION, "(Array(4294967295)).length", ToUint32(4294967295), (Array(4294967295)).length );
60 array[item++] = new TestCase( SECTION, "(Array(Math.pow(2,31)-1)).length", ToUint32(Math.pow(2,31)-1), (Array(Math.pow(2,31)-1)).length );
61 array[item++] = new TestCase( SECTION, "(Array(Math.pow(2,31))).length", ToUint32(Math.pow(2,31)), (Array(Math.pow(2,31))).length );
62 array[item++] = new TestCase( SECTION, "(Array(Math.pow(2,31)+1)).length", ToUint32(Math.pow(2,31)+1), (Array(Math.pow(2,31)+1)).length );
65 array[item++] = new TestCase( SECTION, "(Array(1073741823)).length", ToUint32(1073741823), (Array(1073741823)).length );
66 array[item++] = new TestCase( SECTION, "(Array(1073741824)).length", ToUint32(1073741824), (Array(1073741824)).length );
82 function ToUint32( n ) { function
H A D15.4.2.2-1.js39 ToUint32(len).
49 ToUint32 description has changed.
85 array[item++] = new TestCase( SECTION, "(new Array(4294967295)).length", ToUint32(4294967295), (new Array(4294967295)).length );
89 array[item++] = new TestCase( SECTION, "(new Array(1073741824)).length", ToUint32(1073741824), (new Array(1073741824)).length );
108 function ToUint32( n ) { function
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
H A D9.6.js24 ECMA Section: 9.6 Type Conversion: ToUint32
43 ToInt32(ToUint32(x)) == ToInt32(x) for all values of x
56 writeHeaderToLog( SECTION + " Type Conversion: ToUint32");
73 function ToUint32( n ) { function
111 array[item++] = new TestCase( SECTION, "-1.1 >>> 0", ToUint32(-1.1), -1.1 >>> 0 );
112 array[item++] = new TestCase( SECTION, "-1 >>> 0", ToUint32(-1), -1 >>> 0 );
114 array[item++] = new TestCase( SECTION, "2147483647 >>> 0", ToUint32(2147483647), 2147483647 >>> 0 );
115 array[item++] = new TestCase( SECTION, "2147483648 >>> 0", ToUint32(2147483648), 2147483648 >>> 0 );
116 array[item++] = new TestCase( SECTION, "2147483649 >>> 0", ToUint32(2147483649), 2147483649 >>> 0 );
118 array[item++] = new TestCase( SECTION, "4294967295 >>> 0", ToUint32(429496729
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
H A D11.4.8.js104 function ToUint32( n ) { function
H A D11.7.1.js37 6. Call ToUint32(Result(4)).
111 function ToUint32( n ) { function
213 var add = ToUint32( a );
H A D11.7.2.js37 6. Call ToUint32(Result(4)).
125 function ToUint32( n ) { function
225 a = ToUint32( a );
H A D11.7.3.js37 5. Call ToUint32(Result(2)).
38 6. Call ToUint32(Result(4)).
116 function ToUint32( n ) { function
226 s = ToUint32( s );
227 a = ToUint32( a );
H A D11.10-1.js113 function ToUint32( n ) { function
H A D11.10-2.js112 function ToUint32( n ) { function
H A D11.10-3.js112 function ToUint32( n ) { function
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
H A Dsplit-002.js148 lim = ToUint32( limit );
246 function ToUint32( n ) { function
/external/v8/src/
H A Druntime.js451 length = (args == null) ? 0 : %ToUint32(args.length);
586 function ToUint32(x) { function
H A Dexecution.cc635 Handle<Object> Execution::ToUint32(Handle<Object> obj, bool* exc) { function in class:v8::internal::Execution
H A Dapi.cc2580 Local<Uint32> Value::ToUint32() const { function in class:v8::Value
2587 if (IsDeadCheck(isolate, "v8::Value::ToUint32()")) return Local<Uint32>();
2591 num = i::Execution::ToUint32(obj, &has_pending_exception);
2719 i::Execution::ToUint32(obj, &has_pending_exception);

Completed in 193 milliseconds