/third_party/node/deps/v8/src/execution/ |
D | messages.h | 35 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,
|
D | messages.cc | 30 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 …]
|
D | isolate.h | 940 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);
|
D | isolate.cc | 1587 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 …]
|
D | execution.cc | 230 MessageLocation location(script, 0, 1); in NewScriptContext() 252 MessageLocation location(script, 0, 1); in NewScriptContext()
|
/third_party/node/deps/v8/src/parsing/ |
D | pending-compilation-error-handler.cc | 75 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()
|
D | pending-compilation-error-handler.h | 129 MessageLocation GetLocation(Handle<Script> script) const;
|
/third_party/node/deps/v8/src/objects/ |
D | call-site-info.h | 17 class MessageLocation; variable 94 MessageLocation* location);
|
D | source-text-module.h | 151 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);
|
D | source-text-module.cc | 184 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()
|
D | synthetic-module.h | 54 MessageLocation loc, bool must_resolve);
|
D | call-site-info.cc | 527 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()
|
D | module.h | 107 Handle<String> export_name, MessageLocation loc, bool must_resolve,
|
D | synthetic-module.cc | 57 MessageLocation loc, bool must_resolve) { in ResolveExport()
|
D | contexts.cc | 602 MessageLocation* no_location = nullptr; in RunPromiseHook()
|
D | module.cc | 163 MessageLocation loc, bool must_resolve, in ResolveExport()
|
/third_party/node/deps/v8/src/asmjs/ |
D | asm-js.cc | 124 MessageLocation location(script, position, position); in Report()
|
/third_party/node/deps/v8/src/runtime/ |
D | runtime-internal.cc | 690 MessageLocation* no_location = nullptr; in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/json/ |
D | json-parser.cc | 292 MessageLocation location(script, pos, pos + 1); in ReportUnexpectedToken()
|
/third_party/node/deps/v8/src/common/ |
D | globals.h | 730 class MessageLocation; variable
|