Searched refs:error_details_ (Results 1 - 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/parsing/ |
H A D | pending-compilation-error-handler.cc | 87 error_details_ = MessageDetails(start_position, end_position, message, arg); in ReportMessageAt() 97 error_details_ = MessageDetails(start_position, end_position, message, arg); in ReportMessageAt() 107 error_details_ = in ReportMessageAt() 155 error_details_.Prepare(isolate); in PrepareErrors() 178 MessageLocation location = error_details_.GetLocation(script); in ThrowPendingError() 179 Handle<String> arg0 = error_details_.ArgString(isolate, 0); in ThrowPendingError() 180 Handle<String> arg1 = error_details_.ArgString(isolate, 1); in ThrowPendingError() 185 factory->NewSyntaxError(error_details_.message(), arg0, arg1); in ThrowPendingError() 191 error_details_.Prepare(isolate); in FormatErrorMessageForTest() 192 return MessageFormatter::Format(isolate, error_details_ in FormatErrorMessageForTest() [all...] |
H A D | pending-compilation-error-handler.h | 171 MessageDetails error_details_; member in v8::internal::PendingCompilationErrorHandler
|
/third_party/gn/src/base/files/ |
H A D | file.cc | 21 File::File(const FilePath& path, uint32_t flags) : error_details_(FILE_OK) { in File() 26 : file_(std::move(platform_file)), error_details_(FILE_OK) { in File() 33 : file_(platform_file), error_details_(FILE_OK) { in File() 39 File::File(Error error_details) : error_details_(error_details) {} in File() 42 : file_(other.TakePlatformFile()), error_details_(other.error_details()) {} in File() 52 error_details_ = other.error_details(); in operator =() 65 error_details_ = FILE_ERROR_ACCESS_DENIED; in Initialize()
|
H A D | file.h | 152 Error error_details() const { return error_details_; } in error_details() 279 Error error_details_ = FILE_ERROR_FAILED; member in base::File
|
H A D | file_win.cc | 290 error_details_ = FILE_ERROR_FAILED; in DoInitialize() 307 error_details_ = FILE_OK; in DoInitialize() 309 error_details_ = GetLastFileError(); in DoInitialize()
|
Completed in 3 milliseconds