Home | History | Annotate | Download | only in v8

Lines Matching defs:exceptionState

30 #include "bindings/v8/ExceptionState.h"
109 ConversionContext(const String& interfaceName, const String& methodName, ExceptionState& exceptionState)
112 , m_exceptionState(exceptionState)
121 ExceptionState& exceptionState() const { return m_exceptionState; }
135 ExceptionState& m_exceptionState;
203 static inline uint8_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, ExceptionState& exceptionState)
205 return toUInt8(value, configuration, exceptionState);
212 static inline int8_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, ExceptionState& exceptionState)
214 return toInt8(value, configuration, exceptionState);
221 static inline uint16_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, ExceptionState& exceptionState)
223 return toUInt16(value, configuration, exceptionState);
230 static inline int16_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, ExceptionState& exceptionState)
232 return toInt16(value, configuration, exceptionState);
239 static inline uint32_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, ExceptionState& exceptionState)
241 return toUInt32(value, configuration, exceptionState);
248 static inline uint32_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, ExceptionState& exceptionState)
250 return toUInt32(value, configuration, exceptionState);
257 static inline int32_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, ExceptionState& exceptionState)
259 return toInt32(value, configuration, exceptionState);
266 static inline int32_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, ExceptionState& exceptionState)
268 return toInt32(value, configuration, exceptionState);
275 static inline unsigned long long toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, ExceptionState& exceptionState)
277 return toUInt64(value, configuration, exceptionState);
284 static inline long long toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, ExceptionState& exceptionState)
286 return toInt64(value, configuration, exceptionState);
299 value = IntegralTypeTraits<T>::toIntegral(v8Value, NormalConversion, context.exceptionState());
300 if (context.exceptionState().throwIfNeeded())
319 T converted = IntegralTypeTraits<T>::toIntegral(v8Value, NormalConversion, context.exceptionState());
321 if (context.exceptionState().throwIfNeeded())