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

  /external/webkit/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.6.js 24 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 ) {
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(4294967295), 4294967295 >>> 0 )
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.1.2.js 59 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 ) {
15.4.2.2-1.js 39 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 ) {
15.4.1.1.js 48 function ToUint32( n ) {
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.7.3.js 37 5. Call ToUint32(Result(2)).
38 6. Call ToUint32(Result(4)).
116 function ToUint32( n ) {
226 s = ToUint32( s );
227 a = ToUint32( a );
11.7.1.js 37 6. Call ToUint32(Result(4)).
111 function ToUint32( n ) {
213 var add = ToUint32( a );
11.7.2.js 37 6. Call ToUint32(Result(4)).
125 function ToUint32( n ) {
225 a = ToUint32( a );
11.10-1.js 113 function ToUint32( n ) {
11.10-2.js 112 function ToUint32( n ) {
11.10-3.js 112 function ToUint32( n ) {
11.4.8.js 104 function ToUint32( n ) {
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/
split-002.js 148 lim = ToUint32( limit );
246 function ToUint32( n ) {
  /external/v8/src/
execution.h 94 static Handle<Object> ToUint32(Handle<Object> obj, bool* exc);
accessors.cc 111 Handle<Object> uint32_v = Execution::ToUint32(value_handle, &has_exception);
execution.cc 465 Handle<Object> Execution::ToUint32(Handle<Object> obj, bool* exc) {
runtime.js 427 length = (args == null) ? 0 : %ToUint32(args.length);
560 function ToUint32(x) {
api.cc     [all...]
  /external/v8/include/
v8.h 768 Local<Uint32> ToUint32() const;
    [all...]
  /external/v8/test/cctest/
test-api.cc     [all...]

Completed in 714 milliseconds