Searched refs:ToInteger (Results 1 - 22 of 22) sorted by relevance

/external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
H A D15.5.4.7-3.js40 4.If Result(3) is NaN, use +; otherwise, call ToInteger(Result(3)).
124 position = ToInteger( position );
154 function ToInteger( n ) {
H A D15.5.4.7-1.js40 4.If Result(3) is NaN, use +; otherwise, call ToInteger(Result(3)).
179 position = ToInteger( position );
209 function ToInteger( n ) {
H A D15.5.4.7-2.js40 4.If Result(3) is NaN, use +; otherwise, call ToInteger(Result(3)).
178 position = ToInteger( position );
208 function ToInteger( n ) {
/external/webkit/JavaScriptCore/tests/mozilla/ecma/
H A Dshell.js588 hour = ToInteger(hour);
589 min = ToInteger( min);
590 sec = ToInteger( sec);
591 ms = ToInteger( ms );
600 year = ToInteger(year);
601 month = ToInteger(month);
602 date = ToInteger(date );
678 return ( ToInteger( t ) );
680 function ToInteger( t ) { function
H A Djsref.js545 hour = ToInteger(hour);
546 min = ToInteger( min);
547 sec = ToInteger( sec);
548 ms = ToInteger( ms );
557 year = ToInteger(year);
558 month = ToInteger(month);
559 date = ToInteger(date );
635 return ( ToInteger( t ) );
637 function ToInteger( t ) { function
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Date/
H A Dshell.js535 hour = ToInteger(hour);
536 min = ToInteger( min);
537 sec = ToInteger( sec);
538 ms = ToInteger( ms );
548 year = ToInteger(year);
549 month = ToInteger(month);
550 date = ToInteger(date );
630 return ( ToInteger( t ) );
634 function ToInteger( t ) function
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/
H A Djsref.js506 hour = ToInteger(hour);
507 min = ToInteger( min);
508 sec = ToInteger( sec);
509 ms = ToInteger( ms );
518 year = ToInteger(year);
519 month = ToInteger(month);
520 date = ToInteger(date );
596 return ( ToInteger( t ) );
598 function ToInteger( t ) { function
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
H A D15.9.4.3.js58 if ( isNaN(d.year) && 0 <= ToInteger(d.year) && d.year <= 99 ) {
59 d.year = 1900 + ToInteger(d.year);
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
H A D11.4.8.js79 function ToInteger( n ) { function
H A D11.7.1.js86 function ToInteger( n ) { function
H A D11.7.2.js100 function ToInteger( n ) { function
H A D11.7.3.js91 function ToInteger( n ) { function
H A D11.10-1.js88 function ToInteger( n ) { function
H A D11.10-2.js87 function ToInteger( n ) { function
H A D11.10-3.js87 function ToInteger( n ) { function
/external/v8/src/
H A Dmacros.py104 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInteger(arg));
H A Dexecution.h88 static Handle<Object> ToInteger(Handle<Object> obj, bool* exc);
H A Druntime.js553 function ToInteger(x) { function
H A Dexecution.cc460 Handle<Object> Execution::ToInteger(Handle<Object> obj, bool* exc) { function in class:v8::internal::Execution
H A Dapi.cc1669 Local<Integer> Value::ToInteger() const { function in class:v8::Value
1670 if (IsDeadCheck("v8::Value::ToInteger()")) return Local<Integer>();
1671 LOG_API("ToInteger");
1679 num = i::Execution::ToInteger(obj, &has_pending_exception);
1799 num = i::Execution::ToInteger(obj, &has_pending_exception);
/external/v8/include/
H A Dv8.h767 Local<Integer> ToInteger() const;
/external/v8/test/cctest/
H A Dtest-api.cc1954 Local<Value> to_integer_result = obj->ToInteger();

Completed in 275 milliseconds