/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/ |
D | 9.5-2.js | 73 function ToInt32( n ) { class 108 …array[item++] = new TestCase( SECTION, "-1 << 0", ToInt32(-1), -… 111 …array[item++] = new TestCase( SECTION, "2147483647 << 0", ToInt32(2147483647), 2147483647… 112 …array[item++] = new TestCase( SECTION, "2147483648 << 0", ToInt32(2147483648), 2147483648… 113 …array[item++] = new TestCase( SECTION, "2147483649 << 0", ToInt32(2147483649), 2147483649… 115 …array[item++] = new TestCase( SECTION, "(Math.pow(2,31)-1) << 0", ToInt32(2147483647), (Math.… 116 …array[item++] = new TestCase( SECTION, "Math.pow(2,31) << 0", ToInt32(2147483648), Math.p… 117 …array[item++] = new TestCase( SECTION, "(Math.pow(2,31)+1) << 0", ToInt32(2147483649), (Math.… 119 …array[item++] = new TestCase( SECTION, "(Math.pow(2,32)-1) << 0", ToInt32(4294967295), (Mat… 120 …array[item++] = new TestCase( SECTION, "(Math.pow(2,32)) << 0", ToInt32(4294967296), (Mat… [all …]
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
D | 11.10-1.js | 100 function ToInt32( n ) { class 214 s = ToInt32( s ); 215 a = ToInt32( a ); 232 s = ToInt32( s ); 233 a = ToInt32( a ); 253 s = ToInt32( s ); 254 a = ToInt32( a );
|
D | 11.10-2.js | 99 function ToInt32( n ) { class 213 s = ToInt32( s ); 214 a = ToInt32( a ); 231 s = ToInt32( s ); 232 a = ToInt32( a ); 252 s = ToInt32( s ); 253 a = ToInt32( a );
|
D | 11.10-3.js | 99 function ToInt32( n ) { class 212 s = ToInt32( s ); 213 a = ToInt32( a ); 230 s = ToInt32( s ); 231 a = ToInt32( a ); 251 s = ToInt32( s ); 252 a = ToInt32( a );
|
D | 11.7.1.js | 98 function ToInt32( n ) { class 212 var shift = ToInt32( s ); 228 return ToInt32(ToInt32Decimal(s));
|
D | 11.7.2.js | 112 function ToInt32( n ) { class 224 s = ToInt32( s ); 245 return ToInt32(ToInt32Decimal(s));
|
D | 11.4.8.js | 91 function ToInt32( n ) { class 203 n = ToInt32(n);
|
D | 11.7.3.js | 103 function ToInt32( n ) { class
|
/external/zlib/contrib/dotzlib/DotZLib/ |
D | ChecksumImpl.cs | 140 … _current = crc32(_current, hData.AddrOfPinnedObject().ToInt32()+offset, (uint)count); in Update() 191 … _current = adler32(_current, hData.AddrOfPinnedObject().ToInt32()+offset, (uint)count); in Update()
|
D | GZipStream.cs | 166 result = gzread(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count); in Read() 210 int result = gzwrite(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count); in Write()
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8GeolocationCustom.cpp | 91 v8::Local<v8::Int32> timeoutInt32 = timeoutValue->ToInt32(); in createPositionOptions() 117 v8::Local<v8::Int32> maximumAgeInt32 = maximumAgeValue->ToInt32(); in createPositionOptions()
|
D | V8InspectorFrontendHostCustom.cpp | 96 …on typedId = static_cast<ContextMenuAction>(ContextMenuItemBaseCustomTag + id->ToInt32()->Value()); in showContextMenuCallback()
|
D | V8InjectedScriptHostCustom.cpp | 76 Node* node = host->inspectedNode(args[0]->ToInt32()->Value()); in inspectedNodeCallback()
|
/external/chromium/webkit/glue/ |
D | cpp_variant.h | 94 int32_t ToInt32() const;
|
D | cpp_variant.cc | 187 int32_t CppVariant::ToInt32() const { in ToInt32() function in CppVariant
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | OptionsObject.cpp | 85 v8::Local<v8::Int32> v8Int32 = v8Value->ToInt32(); in getKeyInt32()
|
D | V8Binding.cpp | 166 v8::Local<v8::Int32> intValue = value->ToInt32(); in toInt32() 214 v8::Local<v8::Int32> intValue = value->ToInt32(); in toUInt32()
|
/external/v8/src/ |
D | execution.h | 92 static Handle<Object> ToInt32(Handle<Object> obj, bool* exc);
|
D | runtime.js | 569 function ToInt32(x) { class
|
D | execution.cc | 529 Handle<Object> Execution::ToInt32(Handle<Object> obj, bool* exc) { in ToInt32() function in v8::internal::Execution
|
D | api.cc | 2289 Local<Int32> Value::ToInt32() const { in ToInt32() function in v8::Value 2300 num = i::Execution::ToInt32(obj, &has_pending_exception); in ToInt32() 2365 i::Execution::ToInt32(obj, &has_pending_exception); in Int32Value()
|
/external/v8/test/cctest/ |
D | test-strings.cc | 480 result->ToInt32()->Value()); in TEST()
|
D | test-api.cc | 2365 CHECK_EQ(0, obj->ToInt32()->Value()); in THREADED_TEST() 2371 CHECK_EQ(-1912276171, obj->ToInt32()->Value()); in THREADED_TEST() 2377 CHECK_EQ(42, obj->ToInt32()->Value()); in THREADED_TEST() 2383 CHECK_EQ(-37, obj->ToInt32()->Value()); in THREADED_TEST() 2389 CHECK_EQ(-2128394905, obj->ToInt32()->Value()); in THREADED_TEST() 2395 CHECK_EQ(42, obj->ToInt32()->Value()); in THREADED_TEST() 2401 CHECK_EQ(-1431655765, obj->ToInt32()->Value()); in THREADED_TEST() 2474 Local<Value> to_int32_result = obj->ToInt32(); in THREADED_TEST()
|
/external/v8/include/ |
D | v8.h | 938 V8EXPORT Local<Int32> ToInt32() const;
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2011-02-16 | 14120 Bug 46065 - Unify implementation of ToInt32 and ToUInt32, don't use fmod. 14127 provide an output value indicating whether the input to ToInt32 was finite 14129 not ToInt32). This patch partially fixes this in order to remove this 14131 fully up to spec compliance (the constructor is still performing ToInt32
|