Home
last modified time | relevance | path

Searched refs:MessageLocation (Results 1 – 20 of 20) sorted by relevance

/third_party/node/deps/v8/src/execution/
Dmessages.h35 class V8_EXPORT_PRIVATE MessageLocation {
40 MessageLocation(Handle<Script> script, int start_pos, int end_pos);
41 MessageLocation(Handle<Script> script, int start_pos, int end_pos,
45 MessageLocation(Handle<Script> script, Handle<SharedFunctionInfo> shared,
47 MessageLocation();
144 Isolate* isolate, MessageTemplate type, const MessageLocation* location,
149 const MessageLocation* loc,
152 static void DefaultMessageReport(Isolate* isolate, const MessageLocation* loc,
160 const MessageLocation* loc,
Dmessages.cc30 MessageLocation::MessageLocation(Handle<Script> script, int start_pos, in MessageLocation() function in v8::internal::MessageLocation
37 MessageLocation::MessageLocation(Handle<Script> script, int start_pos, in MessageLocation() function in v8::internal::MessageLocation
45 MessageLocation::MessageLocation(Handle<Script> script, in MessageLocation() function in v8::internal::MessageLocation
54 MessageLocation::MessageLocation() in MessageLocation() function in v8::internal::MessageLocation
60 const MessageLocation* loc, in DefaultMessageReport()
77 Isolate* isolate, MessageTemplate message, const MessageLocation* location, in MakeMessageObject()
105 void MessageHandler::ReportMessage(Isolate* isolate, const MessageLocation* loc, in ReportMessage()
161 Isolate* isolate, const MessageLocation* loc, Handle<Object> message, in ReportMessageNoExceptions()
717 bool ComputeLocation(Isolate* isolate, MessageLocation* target) { in ComputeLocation()
733 *target = MessageLocation(casted_script, pos, pos + 1, shared); in ComputeLocation()
[all …]
Disolate.h940 Object ThrowAt(Handle<JSObject> exception, MessageLocation* location);
951 MessageLocation* location) { in ThrowAt()
1016 bool ComputeLocation(MessageLocation* target);
1017 bool ComputeLocationFromException(MessageLocation* target,
1019 bool ComputeLocationFromSimpleStackTrace(MessageLocation* target,
1021 bool ComputeLocationFromDetailedStackTrace(MessageLocation* target,
1025 MessageLocation* location);
1027 MessageLocation* location);
2061 Object ThrowInternal(Object exception, MessageLocation* location);
Disolate.cc1587 Object Isolate::ThrowAt(Handle<JSObject> exception, MessageLocation* location) { in ThrowAt()
1657 MessageLocation* location) { in ReportBootstrappingException()
1714 Handle<Object> exception, MessageLocation* location) { in CreateMessageOrAbort()
1743 Object Isolate::ThrowInternal(Object raw_exception, MessageLocation* location) { in ThrowInternal()
1811 MessageLocation computed_location; in ThrowInternal()
2349 bool Isolate::ComputeLocation(MessageLocation* target) { in ThrowInternal()
2371 MessageLocation(Handle<Script>::cast(script), pos, pos + 1, shared); in ThrowInternal()
2373 *target = MessageLocation(Handle<Script>::cast(script), shared, in ThrowInternal()
2379 bool Isolate::ComputeLocationFromException(MessageLocation* target, in ThrowInternal()
2401 *target = MessageLocation(cast_script, start_pos_value, end_pos_value); in ThrowInternal()
[all …]
Dexecution.cc230 MessageLocation location(script, 0, 1); in NewScriptContext()
252 MessageLocation location(script, 0, 1); in NewScriptContext()
/third_party/node/deps/v8/src/parsing/
Dpending-compilation-error-handler.cc75 MessageLocation PendingCompilationErrorHandler::MessageDetails::GetLocation( in GetLocation()
77 return MessageLocation(script, start_position_, end_position_); in GetLocation()
136 MessageLocation location = warning.GetLocation(script); in ReportWarnings()
178 MessageLocation location = error_details_.GetLocation(script); in ThrowPendingError()
Dpending-compilation-error-handler.h129 MessageLocation GetLocation(Handle<Script> script) const;
/third_party/node/deps/v8/src/objects/
Dcall-site-info.h17 class MessageLocation; variable
94 MessageLocation* location);
Dsource-text-module.h151 MessageLocation loc, bool must_resolve, ResolveSet* resolve_set);
154 int module_request_index, MessageLocation loc, bool must_resolve,
160 MessageLocation loc, bool must_resolve, ResolveSet* resolve_set);
Dsource-text-module.cc184 MessageLocation loc, bool must_resolve, Module::ResolveSet* resolve_set) { in ResolveExport()
220 MessageLocation new_loc(script, entry->beg_pos(), entry->end_pos()); in ResolveExport()
248 int module_request_index, MessageLocation loc, bool must_resolve, in ResolveImport()
269 MessageLocation loc, bool must_resolve, Module::ResolveSet* resolve_set) { in ResolveExportUsingStarExports()
284 MessageLocation new_loc(script, entry->beg_pos(), entry->end_pos()); in ResolveExportUsingStarExports()
508 MessageLocation loc(script, entry->beg_pos(), entry->end_pos()); in FinishInstantiate()
526 MessageLocation loc(script, entry->beg_pos(), entry->end_pos()); in FinishInstantiate()
Dsynthetic-module.h54 MessageLocation loc, bool must_resolve);
Dcall-site-info.cc527 MessageLocation* location) { in ComputeLocation()
534 *location = MessageLocation(script, pos, pos + 1); in ComputeLocation()
547 *location = MessageLocation(script, pos, pos + 1, shared); in ComputeLocation()
550 *location = MessageLocation(script, shared, code_offset); in ComputeLocation()
Dmodule.h107 Handle<String> export_name, MessageLocation loc, bool must_resolve,
Dsynthetic-module.cc57 MessageLocation loc, bool must_resolve) { in ResolveExport()
Dcontexts.cc602 MessageLocation* no_location = nullptr; in RunPromiseHook()
Dmodule.cc163 MessageLocation loc, bool must_resolve, in ResolveExport()
/third_party/node/deps/v8/src/asmjs/
Dasm-js.cc124 MessageLocation location(script, position, position); in Report()
/third_party/node/deps/v8/src/runtime/
Druntime-internal.cc690 MessageLocation* no_location = nullptr; in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/json/
Djson-parser.cc292 MessageLocation location(script, pos, pos + 1); in ReportUnexpectedToken()
/third_party/node/deps/v8/src/common/
Dglobals.h730 class MessageLocation; variable