HomeSort by relevance Sort by last modified time
    Searched refs:toInt32 (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/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/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8DocumentCustom.cpp 77 int type = toInt32(info[3]);
V8HTMLOptionsCollectionCustom.cpp 59 int index = toInt32(info[1], exceptionState);
V8ElementCustom.cpp 60 TONATIVE_VOID_EXCEPTIONSTATE(float, position, toInt32(value, exceptionState), exceptionState);
76 TONATIVE_VOID_EXCEPTIONSTATE(float, position, toInt32(value, exceptionState), exceptionState);
V8WebGLRenderingContextCustom.cpp 122 int ival = toInt32(val, exceptionState);
295 unsigned target = toInt32(info[0], exceptionState);
298 unsigned pname = toInt32(info[1], exceptionState);
391 unsigned target = toInt32(info[0]);
392 unsigned attachment = toInt32(info[1], exceptionState);
395 unsigned pname = toInt32(info[2], exceptionState);
412 unsigned pname = toInt32(info[0], exceptionState);
436 unsigned pname = toInt32(info[1], exceptionState);
466 unsigned pname = toInt32(info[1], exceptionState);
580 index = toInt32(info[0], exceptionState)
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3string.h 184 ANTLR3_INT32 (*toInt32) (struct ANTLR3_STRING_struct * string);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
Dictionary.h 259 return toInt32(value, configuration, exceptionState);
268 return toInt32(value, configuration, exceptionState);
V8Binding.h 474 int32_t toInt32(v8::Handle<v8::Value>, IntegerConversionConfiguration, ExceptionState&);
475 inline int32_t toInt32(v8::Handle<v8::Value> value, ExceptionState& exceptionState)
477 return toInt32(value, NormalConversion, exceptionState);
481 int32_t toInt32(v8::Handle<v8::Value>);
    [all...]
V8Binding.cpp 331 int32_t toInt32(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, ExceptionState& exceptionState)
359 int32_t toInt32(v8::Handle<v8::Value> value)
362 return toInt32(value, NormalConversion, exceptionState);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestObject.cpp 424 TONATIVE_VOID_EXCEPTIONSTATE(int, cppValue, toInt32(v8Value, exceptionState), exceptionState);
    [all...]
V8TestInterfaceConstructor2.cpp 96 TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(longArg, toInt32(info[1], exceptionState), exceptionState);
V8TestInterfaceNamedConstructor.cpp 112 TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(defaultUndefinedOptionalLongArg, toInt32(info[2], exceptionState), exceptionState);
V8TestInterface.cpp 591 TONATIVE_VOID_EXCEPTIONSTATE(int, cppValue, toInt32(v8Value, exceptionState), exceptionState);
625 TONATIVE_VOID_EXCEPTIONSTATE(int, cppValue, toInt32(v8Value, exceptionState), exceptionState);
    [all...]
V8TestInterfaceCheckSecurity.cpp 79 TONATIVE_VOID_EXCEPTIONSTATE(int, cppValue, toInt32(v8Value, exceptionState), exceptionState);
123 TONATIVE_VOID_EXCEPTIONSTATE(int, cppValue, toInt32(v8Value, exceptionState), exceptionState);
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3string.c 282 string->toInt32 = toInt32_8;
319 string->toInt32 = toInt32_UTF16;
    [all...]

Completed in 345 milliseconds