Code Analysis is the process of analyzing the code of the application to discover, review, validate or verify certain properties of the application. This is useful during the process of development and for testing the application before it is put in production mode, especially for checking the ...
0
votes
0answers
33 views
how to browse classes after instantiation?
I'm developing a program in C++ using many templates.
I'd like to read definitions of some template classes after their instantiation.
For example
main.cc:
#include ...
0
votes
0answers
29 views
Why Valgrind is killed after start?
I cross-compiled the Valgrind on SunOS platform to Linux x64 platform using following commands:
./configure CC=/vob/windriver-m2/sysroots/toolchain/gcc CXX=/vob/windriver-
...
0
votes
0answers
18 views
fxcop custom rule is not working
I have created the custom rule using Microsoft FxCop 1.36 in visual studio 2010 and I pasted the custom rule dll in the C:\Program Files\Microsoft FxCop 1.36\Rules folder.
Then I opened Microsoft ...
1
vote
2answers
46 views
Goto in the ElementAt extension method
I was looking some code generated by .NET Reflector of the Linq extension method ElementAt, and I see this code:
public static TSource ElementAt<TSource>(this IEnumerable<TSource> source, ...
0
votes
1answer
26 views
How to get code analysis report in VS 2012
I am using VS Professional 2012. I ran code analysis on the solution. I fixed some of the warning messages and suppressed some of them. Now I want the report of this code analysis report. The report ...
1
vote
1answer
42 views
Method analysis using Reflection and CodeDom
The context of this question is too elaborate to describe here and will likely adversely affect responses so I am not including it. I want to assert certain things about a method in a unit test. Some ...
-1
votes
0answers
24 views
Android Development service authentication [closed]
Can I edit the dialog box which appears while stopping a service???
I want to run a monitor service to be run in my app.... where i need to authenticate people who wants to end the service, with a ...
1
vote
1answer
27 views
Verifying whether applications send email
We have quite a large suite of dot Net applications, large source code base. Is there a quick and easy way to identify all those applications that send email or make use of our SMTP servers? The ...
2
votes
1answer
115 views
Can i use static analysis in VS2012 from VS2010?
For the comparability reasons on the first stage i want to use VS2010 engine from the Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\ in the VS 2012... Is there any way to do this?
i ...
1
vote
1answer
47 views
Can't suppress CA1709 in any way
I want to suppress CA1709: Identifiers should be cased correctly, on
public class IDd. For example i want to use IDd as correct word. But i can't. I tried everything at code analysis dictionary:
...
1
vote
0answers
23 views
Customizing the Code Analysis Messages in VS
Is it possible to modify the messages for the existing rules in Visual Studio 2012's Code Analysis? If so, how can this be done?
I have seen that you can create your own custom rules, but I would ...
-1
votes
0answers
52 views
Best code analysis tool for csharp.net projects? [closed]
i just want to know the best code analysis tool. I know that in some aspects one will be good and the other will be good in some other aspects. But overall i want the best tool when compared with any ...
1
vote
1answer
37 views
performance analysis of multiple platforms
I have written a Program that runs in two modes,Sequential and Multithreaded,with the purpose of running it on multiple processor architectures and then analyzing the processors' performance and ...
0
votes
3answers
74 views
Quicksort in Θ(n lg n)
This is a question to people who are programmers for a living -
I just proved (using the Master theorem) that if we use quicksort and we pick the pivot to be the median of the the subarray we are ...
4
votes
1answer
50 views
C# mutability - VS Code Analysis giving me CA2104? Seems… poor. Am I misunderstanding?
In C#, I want to make "smart" enums, kind of like is possible in Java, where there's more information attached to an enum value than just the underlying int. I happened upon a scheme of making a ...
1
vote
1answer
40 views
intellij idea: how to disable pre-commit code analysis for Git-backed projects
I have a project in intellij, and I'm using Git/GitHub as source control. Each time I try to commit changes, intellij runs a lengthy code analysis and searches for TODOs. When it finds "problems," ...
0
votes
0answers
18 views
Ship Code Analysis Ruleset and styleCop part of custom project templates
I am working on custom multi project solution template.I have my own custom stylecop settings and code analysis rule set.I want to refer them in my project templates and ship it along it.
Any ...
1
vote
1answer
34 views
Soot Java bytecode framework: How to compile a single class file to Jimple/Shimple
I'm trying to figure out how to use Soot in an existing project (a metacircular interpreter). Specifically, I want to use Soot to convert java bytecode into a convenient 3-address code (either Jimple ...
0
votes
1answer
37 views
database data structure in multi language [closed]
I want use multi lang structure in db.
I created these tables with this structure:
[Language]
langID
langName
[Defination_Types]
def_type_ID
langID
def_type_Name
[Definations]
def_ID
def_type_id
...
3
votes
2answers
90 views
How to understand code with vim?
Vim is a nice editor and I use it for many tasks.
However, when it comes to start working on a new (possibly huge) codebase, I don't feel comfortable using it to go around the code with the objective ...
1
vote
0answers
21 views
Dependence: Direction Vectors & Distance Vectors
Topic: Dependencies (True, Anti, Output)
How does one get the direction vector? distance vector?
For example:
do n = 3, 100
v(n) = v(n-1) + v(i+1) + v(i-2)
end
Determine the ...
0
votes
0answers
37 views
understanding Code Analysis in VS2012 with warning CA2214
I am using EntityFramework 5.x with Database first approach.
When my EF generate POCO classes for the tables, it created constructors like below
public partial class tUserGroup
{
public ...
0
votes
3answers
28 views
Upper and lower bound of while loop
I am stuck on a question in a past paper for an embedded software course.
The question asks the following:
Let n be the number of iterations of the while loop. Calculate an upper and lower bound on ...
-1
votes
0answers
115 views
Obfuscation through inexplicable algorithm :-) [closed]
Can anyone analyze this algorithm and say why it generates such output?
What kind of magic is here?
local s, p, m = 2, 1, {[4] = true}
print(s)
repeat
repeat
p = p + 2
local d, v, ok ...
1
vote
1answer
37 views
False positive for CA1801 in Release config only
My method reads as follows.
public static void Debug(this Logger logger, string message)
{
logger.Debug(() => message);
}
When I run code analysis with Debug config, I get no warning.
When ...
0
votes
1answer
61 views
sonar .net plugin fails for mixed languages
I am trying to run Sonar on a .net solution,
which contains mainly c# projects, with one legacy vb.net project.
Sonar fails to run with this error message:
Language with key 'vbnet' not found.
I've ...
0
votes
2answers
45 views
Is flop per second a measure of the speed of a processor, or a measure of the speed of an algorithm?
1) I can see very clearly that: the number of floating point operations a computer can do in one second is a good way of quantifying its performance. That's correct, right?
2) My teacher keeps asking ...
0
votes
0answers
30 views
Scan application for api usage
I have applications running on Java (EE & Spring) stack, RoR stack and now starting a support on a node.js built app.
My applications have been built along the years by several developers, and ...
0
votes
0answers
7 views
AMD CodeAnalyst Missing System Data Tab
Hi I just downloaded the AMD CodeAnalyst 3.8.1203.1066 and while going through the Demo it states that after a profiling is done for hotspots a system data tab would appear however I cannot see this ...
0
votes
1answer
68 views
PyDev Code Analysis not working in Aptana Studio
I have a couple of Python projects which I imported into Aptana using "Import --> Existing Folder as New Project"
The import is successful, I can run and debug scripts inside Aptana. However, for ...
0
votes
0answers
34 views
Resolve CA2202 Warning
I'm getting the "CA2202 : Microsoft.Usage : Object 'list.GetEnumerator()' can be disposed more than once in method".
I can, of course, just suppress the warning but I wanted to make sure my code is ...
0
votes
0answers
23 views
CA1703 CodeAnalysis Error and CasingExceptions
I have a text resource "{0} by Test GmbH" which is correctly spelled because GmbH is the official Abbreviation for "Gesellschaft mit beschränkter Haftung". I understand that Microsoft CodeAnalysing ...
4
votes
2answers
116 views
I can't get code analysis rule CA2202 fixed
I have a function (see code snippet below).
I have Code Analysis enabled, and I get a CA2202 rule violation.
(edit: I added the close on the pdfStamper otherwise the PDF will be corrupted)
...
-1
votes
2answers
51 views
Where is a good place to look for source code collections? [closed]
Does anyone know any good website or source that allows you to download multiple source codes and or various projects? I am not looking for projects but rather just simple source code collections ...
3
votes
1answer
96 views
The CA2104 warning: Is there any way to mark a class as `Immutable` to suppress it?
Consider the following code, which provokes CA2104: Do not declare read only mutable reference types.
public class Test
{
// This provokes CA2104: "Do not declare read only mutable reference ...
1
vote
0answers
85 views
Find all called methods of a class in project
In the process of refactoring large portions of a Java project, I am trying to get a sense of how many methods of a specific library class' methods my project uses. In Eclipse, I can open the Call ...
0
votes
1answer
45 views
How to remove VS2010 code analysis from resource file
I want to remove code analysis from my resource file, i have a resource file that contains 500+ words and my code analysis giving me 500+ Microsoft Naming Errors while i build my project.
Thanks,
...
-1
votes
1answer
107 views
Avoid excessive class coupling- CA1506 [closed]
CA1506 Avoid excessive class coupling 'TechnicalInfoMaintenance' is coupled with 81 different types from 27 different namespaces. Rewrite or refactor this class's methods to decrease its class ...
11
votes
2answers
108 views
Tools for automatically simplifying regexes
I'm trying to squash warnings in an open source project, and
/[\.\,\;\:\(\)\[\]\{\}\<\>\"\'\`\~\/\|\?\!\&\@\#\s\x00-\x1f\x7f]+/
is giving me
(irb):1: warning: character class has ...
1
vote
2answers
36 views
Disable CodeAnalysis for VS2010 solution
I have around 50 projects in a solution and most of the projects (except unittest projects) have enabled RunCodeAnalysis. The problem is that, build is taking a lot of time. Even if I modify a source ...
2
votes
2answers
64 views
FxCop Custom Code analysis: check class reference in another class
I am writing a custom code analysis check wherein I need to check that the Model class in ASP .NET MVC application does not have reference of the controller class. But I am unable to find anything ...
0
votes
1answer
46 views
tool analysis software evolution
Let's consider that there are target programs. For each target program, there is a correspondent test program. Target programs are evolving independently. However, the test programs are evolving ...
-2
votes
3answers
311 views
Java EE web application performance tuning
I need to do a performance analysis of Java EE web application and optimize the code.
Please suggest ways of doing it?
To start with, I am checking the server logs.
1
vote
3answers
124 views
analyzing complexity of recursive algorithm with uneven division
I was asked to analyze the time complexity of the following recursive equation using the iterative method:
T(n)=T(n/3)+T(2n/3)+n^2.
T(1)=1
when I try to expand the equation it blows up and ...
3
votes
3answers
90 views
Upgrading to a new Java version: code analysis
I was wandering if there is a code analysis tool able to suggest code changes when upgrading to a new Java version.
For example:
look for .close() calls for autocloseable resources when upgrading ...
3
votes
4answers
128 views
C++ Code profiling/analysis for Mac and MPI
I am looking for a code analysis/profiling tool for C++ on MacOS. I know that there have been posts about this thread, but my application in which I need is very specific, so maybe one can give me a ...
0
votes
2answers
105 views
“CA2000 Dispose objects before losing scope” on controller
I have an CA2000 warning in Code Analysis. But I can't find out how to solve it or why it's a problem. This is the code that fails:
IController controller = new ErrorController();
...
5
votes
2answers
103 views
Code analysis rule CA1040: Avoid empty interfaces, complains on a non empty interface
I have an interface that declares events
interface IMyInterface
{
event SomeHandler MyEvent1;
event SomeHandler MyEvent2;
...
}
but when I enable the Code analysis rule CA1040: Avoid empty ...
5
votes
2answers
563 views
Test case for Insertion Sort, MergeSort and Quick Sort
I have implemented (in Java) Insertion Sort, MergeSort, ModifiedMergeSort and Quick Sort:
ModifiedMergeSort has a variable for the "bound" of elements. When the elements to be sorted are less than or ...
0
votes
1answer
34 views
ExpandoObject causes rule violation CA1502:Avoid excessive complexity
I have code that performs a mail merge type operation, and I am using dynamic/ExpandoObject to assemble the properties. I am doing this instead of building an anonymous class because different methods ...






