Searched defs:toInt32 (Results 1 - 6 of 6) sorted by relevance

/external/v8/test/mjsunit/
H A Dtoint32.js28 function toInt32(x) { function
32 assertEquals(0, toInt32(Infinity), "Inf");
33 assertEquals(0, toInt32(-Infinity), "-Inf");
34 assertEquals(0, toInt32(NaN), "NaN");
35 assertEquals(0, toInt32(0.0), "zero");
36 assertEquals(0, toInt32(-0.0), "-zero");
38 assertEquals(0, toInt32(Number.MIN_VALUE));
39 assertEquals(0, toInt32(-Number.MIN_VALUE));
40 assertEquals(0, toInt32(0.1));
41 assertEquals(0, toInt32(
[all...]
/external/webkit/JavaScriptCore/qt/api/
H A Dqscriptvalue.cpp346 \sa isNumber(), toInteger(), toInt32(), toUInt32(), toUInt16()
409 qint32 QScriptValue::toInt32() const function in class:QScriptValue
411 return d_ptr->toInt32();
424 \sa toNumber(), toInt32()
H A Dqscriptvalue_p.h103 inline qint32 toInt32() const;
532 qint32 QScriptValuePrivate::toInt32() const function in class:QScriptValuePrivate
/external/webkit/WebCore/bindings/v8/
H A DV8Binding.h102 int toInt32(v8::Handle<v8::Value> value, bool& ok);
105 inline int toInt32(v8::Handle<v8::Value> value) function in namespace:WebCore
108 return toInt32(value, ok);
H A DV8Binding.cpp144 int toInt32(v8::Handle<v8::Value> value, bool& ok) function in namespace:WebCore
/external/webkit/JavaScriptCore/runtime/
H A DJSValue.h167 int32_t toInt32(ExecState*) const;
168 int32_t toInt32(ExecState*, bool& ok) const;
370 inline int32_t toInt32(double val) function in namespace:JSC
396 ALWAYS_INLINE int32_t JSValue::toInt32(ExecState* exec) const function in class:JSC::JSValue
412 inline int32_t JSValue::toInt32(ExecState* exec, bool& ok) const function in class:JSC::JSValue

Completed in 57 milliseconds