I would like to find out if there exist any tools that do \"static analysis\" of build settings, specifically of Visual-Studio C++ native project files. (*.vcproj for 2005/2008 - I think 2010 introduc
we consider to use Klocwork Insight for code analysis in the near future and are just migrating our source to Team Foundation Server 2010.
The static analyzer takes a long time to run. This is understandable, it is doing a lot of work. But while it runs in the background, it is difficult to tell what is going. Is the static analyzer runn
Is there a way to programmatically check if a single C source file is potentially harmful? I know that no check will yield 100% accuracy -- but am interested at least to do some basic checks that wil
A colleague recently revealed to me that a single source file of ours includes over 3,400 headers during compile time. We have over 1,000 translation units that get compiled in a build, resulting in a
This is the follow up to my question earlier about the Xcode 4 static analyzer.It is not specifically a problem since I have the code now working as it needs to, but I am just wondering how things are
I\'m thinking about doing some static analysis project over C++ code samples, as opposed to entire programs. In general static analysis requires some simpler intermediate representation, but such a re
Is anyone aware of any methodology to try and determine the method and instance variable dependencies that exact for a single method in an object oriented class? For example, if I have the following c
I have this code in my iOS app: - (IBAction)cameraButtonPressed:(id)sender { if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera] == NO)
Is there any static code analysis tools for Android that would pick up simple things like NullPointerExceptions from trying to access an object that might be null (without checking f开发者_运维百科or