OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:toInt32
(Results
1 - 10
of
10
) sorted by null
/external/v8/test/mjsunit/
toint32.js
28
function
toInt32
(x) {
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
(-0.1))
[
all
...]
/external/webkit/Source/JavaScriptCore/runtime/
JSValue.cpp
138
// This in the
ToInt32
operation is defined in section 9.5 of the ECMA-262 spec.
145
int32_t
toInt32
(double number)
JSValueInlineMethods.h
33
ALWAYS_INLINE int32_t JSValue::
toInt32
(ExecState* exec) const
37
return JSC::
toInt32
(toNumber(exec));
43
return
toInt32
(exec);
/external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalue.cpp
389
\sa isNumber(), toInteger(),
toInt32
(), toUInt32(), toUInt16()
442
the conversion rules described in \l{ECMA-262} section 9.5, "
ToInt32
".
452
qint32 QScriptValue::
toInt32
() const
454
return d_ptr->
toInt32
();
467
\sa toNumber(),
toInt32
()
qscriptvalue_p.h
112
inline qint32
toInt32
() const;
582
qint32 QScriptValuePrivate::
toInt32
() const
604
return
toInt32
();
[
all
...]
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue_generated_totype.cpp
[
all
...]
/external/webkit/Source/WebCore/bindings/v8/
V8Binding.h
117
int
toInt32
(v8::Handle<v8::Value> value, bool& ok);
120
inline int
toInt32
(v8::Handle<v8::Value> value)
123
return
toInt32
(value, ok);
V8Binding.cpp
143
int
toInt32
(v8::Handle<v8::Value> value, bool& ok)
166
v8::Local<v8::Int32> intValue = value->
ToInt32
();
214
v8::Local<v8::Int32> intValue = value->
ToInt32
();
/external/webkit/Tools/DumpRenderTree/chromium/
CppVariant.cpp
226
int32_t CppVariant::
toInt32
() const
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
tst_qscriptvalue.cpp
80
void
toInt32
();
350
void tst_QScriptValue::
toInt32
()
354
value.
toInt32
();
Completed in 1461 milliseconds