Lines Matching refs:hadException
224 bool hadException = false; in wrapPropertyInArray() local
225 function.call(hadException); in wrapPropertyInArray()
226 return hadException ? Response::InternalError() : Response::OK(); in wrapPropertyInArray()
239 bool hadException = false; in wrapValue() local
240 *result = function.call(hadException); in wrapValue()
241 if (hadException || result->IsEmpty()) return Response::InternalError(); in wrapValue()
256 bool hadException = false; in wrapTable() local
257 v8::Local<v8::Value> r = function.call(hadException); in wrapTable()
258 if (hadException || r.IsEmpty()) return nullptr; in wrapTable()
289 bool hadException = false; in setCustomObjectFormatterEnabled() local
290 function.call(hadException); in setCustomObjectFormatterEnabled()
291 DCHECK(!hadException); in setCustomObjectFormatterEnabled()