In my mind, Code Reviews are developer-centric. By this, I mean that developers review each others code to enforce best practices and good coding standards. Ideally, this should make sure that the code being checked into the application is at the highest quality. Whether or not this is done is a whole other story.
Quality Assurance is user-centric. I see QA as treating software as a blackbox - the code is irrelevant at this stage. QA should be evaluating various aspects of the application: usability, stress tests, requirements fulfillment, etc.
As to whether or not they can be done at the same time depends on the time of application that's being built. For example, applications could have automated tools running use case simulations every, say, hour on the most recent build. The problem with this, though, is that the use cases are locked into whatever has been coded or recorded. There's little variation. It continues to evaluate only whatever use cases and whatever behavior has been built into the simulation.
Additionally, it's usually the case that a testing department or QA department is in charge of the, ahem, QA of the application whereas the developers are in charge of the code reviews and, as such, the code quality.
