Home
last modified time | relevance | path

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

/external/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();
337 Isolate* isolate, MessageTemplate type, const MessageLocation* location,
342 const MessageLocation* loc,
345 static void DefaultMessageReport(Isolate* isolate, const MessageLocation* loc,
353 const MessageLocation* loc,
Dmessages.cc34 MessageLocation::MessageLocation(Handle<Script> script, int start_pos, in MessageLocation() function in v8::internal::MessageLocation
41 MessageLocation::MessageLocation(Handle<Script> script, int start_pos, in MessageLocation() function in v8::internal::MessageLocation
49 MessageLocation::MessageLocation(Handle<Script> script, in MessageLocation() function in v8::internal::MessageLocation
58 MessageLocation::MessageLocation() in MessageLocation() function in v8::internal::MessageLocation
64 const MessageLocation* loc, in DefaultMessageReport()
81 Isolate* isolate, MessageTemplate message, const MessageLocation* location, in MakeMessageObject()
109 void MessageHandler::ReportMessage(Isolate* isolate, const MessageLocation* loc, in ReportMessage()
165 Isolate* isolate, const MessageLocation* loc, Handle<Object> message, in ReportMessageNoExceptions()
1208 bool ComputeLocation(Isolate* isolate, MessageLocation* target) { in ComputeLocation()
1224 *target = MessageLocation(casted_script, pos, pos + 1, shared); in ComputeLocation()
[all …]
Disolate.h833 Object ThrowAt(Handle<JSObject> exception, MessageLocation* location);
844 MessageLocation* location) { in ThrowAt()
901 bool ComputeLocation(MessageLocation* target);
902 bool ComputeLocationFromException(MessageLocation* target,
904 bool ComputeLocationFromStackTrace(MessageLocation* target,
908 MessageLocation* location);
910 MessageLocation* location);
1735 Object ThrowInternal(Object exception, MessageLocation* location);
Disolate.cc1440 Object Isolate::ThrowAt(Handle<JSObject> exception, MessageLocation* location) { in ThrowAt()
1511 MessageLocation* location) { in ReportBootstrappingException()
1568 Handle<Object> exception, MessageLocation* location) { in CreateMessageOrAbort()
1595 Object Isolate::ThrowInternal(Object raw_exception, MessageLocation* location) { in ThrowInternal()
1662 MessageLocation computed_location; in ThrowInternal()
2127 bool Isolate::ComputeLocation(MessageLocation* target) { in ThrowInternal()
2151 MessageLocation(Handle<Script>::cast(script), pos, pos + 1, shared); in ThrowInternal()
2153 *target = MessageLocation(Handle<Script>::cast(script), shared, in ThrowInternal()
2159 bool Isolate::ComputeLocationFromException(MessageLocation* target, in ThrowInternal()
2181 *target = MessageLocation(cast_script, start_pos_value, end_pos_value); in ThrowInternal()
[all …]
Dexecution.cc196 MessageLocation location(script, 0, 1); in NewScriptContext()
218 MessageLocation location(script, 0, 1); in NewScriptContext()
/external/v8/src/parsing/
Dpending-compilation-error-handler.cc71 MessageLocation PendingCompilationErrorHandler::MessageDetails::GetLocation( in GetLocation()
73 return MessageLocation(script, start_position_, end_position_); in GetLocation()
121 MessageLocation location = warning.GetLocation(script); in ReportWarnings()
162 MessageLocation location = error_details_.GetLocation(script); in ThrowPendingError()
Dpending-compilation-error-handler.h101 MessageLocation GetLocation(Handle<Script> script) const;
/external/v8/src/objects/
Dsource-text-module.h126 MessageLocation loc, bool must_resolve, ResolveSet* resolve_set);
129 int module_request_index, MessageLocation loc, bool must_resolve,
135 MessageLocation loc, bool must_resolve, ResolveSet* resolve_set);
Dsynthetic-module.h55 MessageLocation loc, bool must_resolve);
Dsource-text-module.cc173 MessageLocation loc, bool must_resolve, Module::ResolveSet* resolve_set) { in ResolveExport()
209 MessageLocation new_loc(script, entry->beg_pos(), entry->end_pos()); in ResolveExport()
237 int module_request_index, MessageLocation loc, bool must_resolve, in ResolveImport()
258 MessageLocation loc, bool must_resolve, Module::ResolveSet* resolve_set) { in ResolveExportUsingStarExports()
273 MessageLocation new_loc(script, entry->beg_pos(), entry->end_pos()); in ResolveExportUsingStarExports()
478 MessageLocation loc(script, entry->beg_pos(), entry->end_pos()); in FinishInstantiate()
496 MessageLocation loc(script, entry->beg_pos(), entry->end_pos()); in FinishInstantiate()
Dmodule.h112 Handle<String> export_name, MessageLocation loc, bool must_resolve,
Dsynthetic-module.cc57 MessageLocation loc, bool must_resolve) { in ResolveExport()
Dmodule.cc156 MessageLocation loc, bool must_resolve, in ResolveExport()
/external/v8/src/asmjs/
Dasm-js.cc124 MessageLocation location(script, position, position); in Report()
/external/v8/src/runtime/
Druntime-internal.cc629 MessageLocation* no_location = nullptr; in RUNTIME_FUNCTION()
/external/v8/src/common/
Dglobals.h659 class MessageLocation; variable
/external/v8/src/json/
Djson-parser.cc275 MessageLocation location(script, pos, pos + 1); in ReportUnexpectedToken()