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

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.h 272 NormalConversion,
281 inline int8_t toInt8(v8::Handle<v8::Value> value, bool& ok) { return toInt8(value, NormalConversion, ok); }
287 return toInt8(value, NormalConversion, ok);
294 inline uint8_t toUInt8(v8::Handle<v8::Value> value, bool& ok) { return toUInt8(value, NormalConversion, ok); }
300 return toUInt8(value, NormalConversion, ok);
307 inline int16_t toInt16(v8::Handle<v8::Value> value, bool& ok) { return toInt16(value, NormalConversion, ok); }
313 return toInt16(value, NormalConversion, ok);
320 inline uint16_t toUInt16(v8::Handle<v8::Value> value, bool& ok) { return toUInt16(value, NormalConversion, ok); }
326 return toUInt16(value, NormalConversion, ok);
333 inline int32_t toInt32(v8::Handle<v8::Value> value, bool& ok) { return toInt32(value, NormalConversion, ok);
    [all...]
Dictionary.h 295 value = IntegralTypeTraits<T>::toIntegral(v8Value, NormalConversion, ok);