Code Analysis is the process of analyzing the code of the application to discover, review, validate or verify certain properties of the application.
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-testingI just tried FxCop. It does detect unused private methods, but not unused public. Is there a custom rule that …
.net code-analysis fxcop public-methodI 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-analysisWe 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-analysisCode analysis: ON_NOTIFY(TCN_SELCHANGE, IDC_TAB_HISTORY_TYPE, &CAssignHistoryDlg::OnTcnSelchangeTabHistoryType) Warning C26454: Arithmetic overflow: '-' operation produces …
c++ mfc visual-studio-2017 code-analysis treecontrolI 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 stylecophttp://klee.llvm.org/ is a program analysis tool that works by symbolic execution and constraint solving, finding possible inputs …
code-analysis llvm verification kleeI'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 evaluationI'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-complexityFor 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