/external/v8/src/inspector/ |
D | custom-preview.cc | 21 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 …]
|
D | v8-regex.cc | 23 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
|
D | v8-value-utils.cc | 13 v8::TryCatch tryCatch(context->GetIsolate()); in createDataProperty() local 23 v8::TryCatch tryCatch(context->GetIsolate()); in createDataProperty() local
|
D | v8-runtime-agent-impl.cc | 94 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 …]
|
D | value-mirror.cc | 246 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 …]
|
D | injected-script.cc | 365 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 …]
|
D | injected-script.h | 146 const v8::TryCatch& tryCatch() const { return m_tryCatch; } in tryCatch() function
|
D | v8-console.cc | 631 v8::TryCatch tryCatch(isolate); in queryObjectsCallback() local 640 if (tryCatch.HasCaught()) { in queryObjectsCallback() 641 tryCatch.ReThrow(); in queryObjectsCallback()
|
D | v8-debugger-agent-impl.cc | 756 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()
|
D | v8-inspector-impl.cc | 436 if (m_scope.tryCatch().HasTerminated()) { in ~EvaluateScope()
|
D | v8-console-message.cc | 272 v8::TryCatch tryCatch(isolate); in wrapArguments() local
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/ |
D | SynchronizedFilter.java | 26 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/ |
D | TypeSpecTest.java | 1903 @Test public void tryCatch() { in tryCatch() method in TypeSpecTest
|