/external/webkit/Source/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/Source/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/Source/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/Source/JavaScriptCore/tests/mozilla/ecma_2/String/ |
split-002.js | 148 lim = ToUint32( limit ); 246 function ToUint32( n ) {
|
/external/v8/src/ |
execution.h | 95 static Handle<Object> ToUint32(Handle<Object> obj, bool* exc);
|
accessors.cc | 123 Handle<Object> uint32_v = Execution::ToUint32(value_handle, &has_exception);
|
runtime.js | 428 length = (args == null) ? 0 : %ToUint32(args.length); 562 function ToUint32(x) {
|
execution.cc | 524 Handle<Object> Execution::ToUint32(Handle<Object> obj, bool* exc) {
|
api.cc | [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
V8Binding.cpp | 176 uint32_t toUInt32(v8::Handle<v8::Value> value, bool& ok) 206 v8::Local<v8::Uint32> uintValue = value->ToUint32();
|
/external/v8/include/ |
v8.h | 937 V8EXPORT Local<Uint32> ToUint32() const; [all...] |
/external/v8/test/cctest/ |
test-api.cc | [all...] |