Top "Code-analysis" questions

Code Analysis is the process of analyzing the code of the application to discover, review, validate or verify certain properties of the application.

Can SonarQube be used as a Static Application Security Testing (SAST) tool?

I'm looking for a Static Application Security Testing (SAST) tool and I can't afford the commercial products (eg. Checkmarx). SonarQube …

sonarqube code-analysis static-analysis sonarqube-scan security-testing
Is there a custom FxCop rule that will detect unused PUBLIC methods?

I just tried FxCop. It does detect unused private methods, but not unused public. Is there a custom rule that …

.net code-analysis fxcop public-method
Visual Studio 2010 Code Analysis - Run on Solution

I would like to manually run code analysis for an entire solution, not on building the project, and not using …

.net visual-studio visual-studio-2010 code-analysis
PL/SQL pre-compile and Code Quality checks in an automated build environment?

We build software using Hudson and Maven. We have C#, java and last, but not least PL/SQL sources (sprocs, …

oracle plsql continuous-integration build-automation code-analysis
Warning C26454: Arithmetic overflow: '-' operation produces a negative unsigned result at compile time (io.5)

Code analysis: ON_NOTIFY(TCN_SELCHANGE, IDC_TAB_HISTORY_TYPE, &CAssignHistoryDlg::OnTcnSelchangeTabHistoryType) Warning C26454: Arithmetic overflow: '-' operation produces …

c++ mfc visual-studio-2017 code-analysis treecontrol
Alternative to StyleCop for Visual Studio?

I like StyleCop's static code analysis and rules enforcement. However, it is severely lacking in several key departments. Adding new …

.net visual-studio code-analysis stylecop
Limits of Klee (the LLVM program analysis tool)

http://klee.llvm.org/ is a program analysis tool that works by symbolic execution and constraint solving, finding possible inputs …

code-analysis llvm verification klee
Getting code statistics from big projects

I'm interested in code statistics tools. Specifically I need to get statistics on Java EE code, but any code analyzer …

java statistics code-analysis metrics evaluation
Solving the recurrence T(n) = T(n/2) + T(n/4) + T(n/8)?

I'm trying to solve a recurrence T(n) = T(n/8) + T(n/2) + T(n/4). I thought it would be a …

math big-o code-analysis recurrence asymptotic-complexity
How to parse an C# assembly and extract every method

For my application I'd like to parse through an assembly and extract every method and store the name of the …

c# methods assemblies code-analysis static-code-analysis