Home
last modified time | relevance | path

Searched refs:has_exception (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Daccessors.cc110 bool has_exception; in ArraySetLength() local
111 Handle<Object> uint32_v = Execution::ToUint32(value_handle, &has_exception); in ArraySetLength()
112 if (has_exception) return Failure::Exception(); in ArraySetLength()
113 Handle<Object> number_v = Execution::ToNumber(value_handle, &has_exception); in ArraySetLength()
114 if (has_exception) return Failure::Exception(); in ArraySetLength()
Dhandles.cc384 bool has_exception; in SetElement() local
385 Handle<Object> number = Execution::ToNumber(value, &has_exception); in SetElement()
386 if (has_exception) return Handle<Object>(); in SetElement()