As Joomla doesn't show such information where is no placement for it in search results. But if you strongly needed to add author's name in search result you could insert it before comment's text.
Open file /plugins/search/jcomments.php and replace:
. "\n comment AS text"
with:
. "\n comment AS text"
. "\n, userid"
. "\n, name"
. "\n, username"
And replace:
$rows[$i]->text = $comment;
with
$rows[$i]->text = JComments::getCommentAuthorName($rows[$i]) . ' wrote:' . $comment;