Home
last modified time | relevance | path

Searched refs:tryCatch (Results 1 – 13 of 13) sorted by relevance

/external/v8/src/inspector/
Dcustom-preview.cc21 void reportError(v8::Local<v8::Context> context, const v8::TryCatch& tryCatch) { in reportError() argument
22 DCHECK(tryCatch.HasCaught()); in reportError()
28 v8::Local<v8::String> message = tryCatch.Message()->Get(); in reportError()
43 void reportError(v8::Local<v8::Context> context, const v8::TryCatch& tryCatch, in reportError() argument
47 reportError(context, tryCatch); in reportError()
66 v8::TryCatch tryCatch(isolate); in substituteObjectTags() local
69 reportError(context, tryCatch, in substituteObjectTags()
76 reportError(context, tryCatch); in substituteObjectTags()
84 reportError(context, tryCatch); in substituteObjectTags()
88 reportError(context, tryCatch, "attributes should be an Object"); in substituteObjectTags()
[all …]
Dv8-regex.cc23 v8::TryCatch tryCatch(isolate); in V8Regex() local
34 else if (tryCatch.HasCaught()) in V8Regex()
35 m_errorMessage = toProtocolString(isolate, tryCatch.Message()->Get()); in V8Regex()
55 v8::TryCatch tryCatch(isolate); in match() local
Dv8-value-utils.cc13 v8::TryCatch tryCatch(context->GetIsolate()); in createDataProperty() local
23 v8::TryCatch tryCatch(context->GetIsolate()); in createDataProperty() local
Dv8-runtime-agent-impl.cc94 const v8::TryCatch& tryCatch, in wrapEvaluateResultAsync() argument
101 maybeResultValue, tryCatch, objectGroup, wrapMode, &result, in wrapEvaluateResultAsync()
163 if (scope.tryCatch().HasCaught()) { in innerCallFunctionOn()
165 scope.tryCatch(), objectGroup, WrapMode::kNoPreview, in innerCallFunctionOn()
193 if (!awaitPromise || scope.tryCatch().HasCaught()) { in innerCallFunctionOn()
195 scope.tryCatch(), objectGroup, wrapMode, in innerCallFunctionOn()
310 if (!await || scope.tryCatch().HasCaught()) { in evaluate()
312 scope.tryCatch(), objectGroup.fromMaybe(""), mode, in evaluate()
512 if (scope.tryCatch().HasCaught()) { in compileScript()
514 scope.tryCatch(), String16(), exceptionDetails); in compileScript()
[all …]
Dvalue-mirror.cc246 v8::TryCatch tryCatch(isolate); in descriptionForBigInt() local
295 v8::TryCatch tryCatch(isolate); in descriptionForError() local
346 v8::TryCatch tryCatch(isolate); in descriptionForDate() local
421 v8::TryCatch tryCatch(isolate); in descriptionForFunction() local
865 v8::TryCatch tryCatch(isolate); in isArrayLike() local
1261 v8::TryCatch tryCatch(isolate); in createNativeGetter() local
1304 v8::TryCatch tryCatch(isolate); in createNativeSetter() local
1334 v8::TryCatch tryCatch(isolate); in doesAttributeHaveObservableSideEffectOnGet() local
1345 if (tryCatch.HasCaught()) tryCatch.Reset(); in doesAttributeHaveObservableSideEffectOnGet()
1408 v8::TryCatch tryCatch(isolate); in getProperties() local
[all …]
Dinjected-script.cc365 v8::TryCatch tryCatch(isolate); in getProperties() local
372 return createExceptionDetails(tryCatch, groupName, exceptionDetails); in getProperties()
772 const v8::TryCatch& tryCatch, const String16& objectGroup, in createExceptionDetails() argument
774 if (!tryCatch.HasCaught()) return Response::InternalError(); in createExceptionDetails()
775 v8::Local<v8::Message> message = tryCatch.Message(); in createExceptionDetails()
776 v8::Local<v8::Value> exception = tryCatch.Exception(); in createExceptionDetails()
821 v8::MaybeLocal<v8::Value> maybeResultValue, const v8::TryCatch& tryCatch, in wrapEvaluateResult() argument
826 if (!tryCatch.HasCaught()) { in wrapEvaluateResult()
836 if (tryCatch.HasTerminated() || !tryCatch.CanContinue()) { in wrapEvaluateResult()
839 v8::Local<v8::Value> exception = tryCatch.Exception(); in wrapEvaluateResult()
[all …]
Dinjected-script.h146 const v8::TryCatch& tryCatch() const { return m_tryCatch; } in tryCatch() function
Dv8-console.cc631 v8::TryCatch tryCatch(isolate); in queryObjectsCallback() local
640 if (tryCatch.HasCaught()) { in queryObjectsCallback()
641 tryCatch.ReThrow(); in queryObjectsCallback()
Dv8-debugger-agent-impl.cc756 v8::TryCatch tryCatch(m_isolate); in getPossibleBreakpoints() local
1240 maybeResultValue, scope.tryCatch(), objectGroup.fromMaybe(""), mode, in evaluateOnCallFrame()
1288 return injected_script->wrapEvaluateResult(maybeResultValue, scope.tryCatch(), in executeWasmEvaluator()
1323 scope.tryCatch().HasCaught()) { in setVariableValue()
Dv8-inspector-impl.cc436 if (m_scope.tryCatch().HasTerminated()) { in ~EvaluateScope()
Dv8-console-message.cc272 v8::TryCatch tryCatch(isolate); in wrapArguments() local
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DSynchronizedFilter.java26 for (final TryCatchBlockNode tryCatch : methodNode.tryCatchBlocks) { in filter()
27 if (tryCatch.type != null) { in filter()
30 if (tryCatch.start == tryCatch.handler) { in filter()
33 final AbstractInsnNode to = new Matcher(tryCatch.handler).match(); in filter()
37 output.ignore(tryCatch.handler, to); in filter()
/external/javapoet/src/test/java/com/squareup/javapoet/
DTypeSpecTest.java1903 @Test public void tryCatch() { in tryCatch() method in TypeSpecTest