Conditional tag search-no-results

There is no conditional tag for no results on a search page, but you can create yourself one.

You basically just have to check the value of $wp_query->found_posts, if it is 0, returns false, any other value, returns true

function is_search_has_results() {
    return 0 != $GLOBALS['wp_query']->found_posts;
}