Home
last modified time | relevance | path

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

/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DSynchronizedFilter.java26 for (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/v8/src/inspector/
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-injected-script-host.cc140 v8::TryCatch tryCatch(isolate); in getPropertyCallback() local
286 v8::TryCatch tryCatch(isolate); in getInternalPropertiesCallback() local
292 if (tryCatch.HasCaught()) return; in getInternalPropertiesCallback()
298 if (tryCatch.HasCaught()) { in getInternalPropertiesCallback()
299 tryCatch.Reset(); in getInternalPropertiesCallback()
308 if (tryCatch.HasCaught()) { in getInternalPropertiesCallback()
309 tryCatch.Reset(); in getInternalPropertiesCallback()
396 v8::TryCatch tryCatch(isolate); in typedArrayPropertiesCallback() local
417 if (tryCatch.HasCaught()) return; in typedArrayPropertiesCallback()
423 if (tryCatch.HasCaught()) return; in typedArrayPropertiesCallback()
Dinjected-script.cc265 v8::TryCatch tryCatch(isolate); in create() local
346 v8::TryCatch tryCatch(m_context->isolate()); in getProperties() local
348 if (tryCatch.HasCaught()) { in getProperties()
350 tryCatch, groupName, generatePreview, exceptionDetails); in getProperties()
562 const v8::TryCatch& tryCatch, const String16& objectGroup, in createExceptionDetails() argument
564 if (!tryCatch.HasCaught()) return Response::InternalError(); in createExceptionDetails()
565 v8::Local<v8::Message> message = tryCatch.Message(); in createExceptionDetails()
566 v8::Local<v8::Value> exception = tryCatch.Exception(); in createExceptionDetails()
609 v8::MaybeLocal<v8::Value> maybeResultValue, const v8::TryCatch& tryCatch, in wrapEvaluateResult() argument
614 if (!tryCatch.HasCaught()) { in wrapEvaluateResult()
[all …]
Dv8-function-call.cc69 v8::TryCatch tryCatch(m_context->GetIsolate()); in call() local
70 tryCatch.SetVerbose(reportExceptions); in call()
73 hadException = tryCatch.HasCaught(); in call()
Dv8-runtime-agent-impl.cc92 const v8::TryCatch& tryCatch, in wrapEvaluateResultAsync() argument
99 maybeResultValue, tryCatch, objectGroup, returnByValue, generatePreview, in wrapEvaluateResultAsync()
160 if (scope.tryCatch().HasCaught()) { in innerCallFunctionOn()
162 scope.tryCatch(), objectGroup, false, false, in innerCallFunctionOn()
190 if (!awaitPromise || scope.tryCatch().HasCaught()) { in innerCallFunctionOn()
192 scope.tryCatch(), objectGroup, returnByValue, in innerCallFunctionOn()
287 if (!awaitPromise.fromMaybe(false) || scope.tryCatch().HasCaught()) { in evaluate()
289 scope.tryCatch(), objectGroup.fromMaybe(""), in evaluate()
500 if (scope.tryCatch().HasCaught()) { in compileScript()
502 scope.tryCatch(), String16(), false, exceptionDetails); in compileScript()
[all …]
Dv8-value-utils.cc109 v8::TryCatch tryCatch(context->GetIsolate()); in createDataProperty() local
119 v8::TryCatch tryCatch(context->GetIsolate()); in createDataProperty() local
Dv8-console.cc118 v8::TryCatch tryCatch(m_context->GetIsolate()); in firstArgToString() local
617 v8::TryCatch tryCatch(isolate); in queryObjectsCallback() local
626 if (tryCatch.HasCaught()) { in queryObjectsCallback()
627 tryCatch.ReThrow(); in queryObjectsCallback()
Dinjected-script.h126 const v8::TryCatch& tryCatch() const { return m_tryCatch; } in tryCatch() function
Dv8-debugger-agent-impl.cc672 v8::TryCatch tryCatch(m_isolate); in getPossibleBreakpoints() local
1094 maybeResultValue, scope.tryCatch(), objectGroup.fromMaybe(""), in evaluateOnCallFrame()
1129 scope.tryCatch().HasCaught()) { in setVariableValue()
/external/javapoet/src/test/java/com/squareup/javapoet/
DTypeSpecTest.java1903 @Test public void tryCatch() { in tryCatch() method in TypeSpecTest