Remove Title, Editor and Meta Box Support Based on Post Formats

You’re talking about the format setting which was introduced in WP 3.1 for the posts post type? No, I don’t think this is possible.

To remove the title-, editor- or any other metabox, you have to remove the support for this feature from the current post type. (e.g. remove the feature from the supports parameter inside register_post_type() or during execution with remove_post_type_support()).

This will affect the hole post type posts. You cannot limit this behavior by the post formats property. This isn’t a post type, it’s just a post meta for the post type posts.

What you could do is to hide the boxes based on the post formats value with jQuery. But this only works if the user has enabled JavaScript. It’s also more a hack than a solution.