Questions tagged [debuggervisualizer]

Visualizers are components of the IDE debugger user interface that displays a variable or object in a manner that is appropriate to its data type.

Visualizers are components of the IDE debugger user interface. A visualizer creates a dialog box or another interface to display a variable or object in a manner that is appropriate to its data type. For example, an HTML visualizer interprets an HTML string and displays the result as it would appear in a browser window; a bitmap visualizer interprets a bitmap structure and displays the graphic it represents.

168 questions
2
votes
1 answer

LLVM C++ Debugging in Visual Studio Code

I am having a lot of trouble getting the Visual Studio Code debugger to work for my C++ project. I know it isn't a popular IDE for C++ but XCode and Emacs are both equally unsuitable for me. I couldn't even get them to run my code. I was wondering…
Aaron
  • 131
  • 2
  • 12
2
votes
2 answers

Effective way to visualize and navigate huge log files

I am in the process of designing a tool to visualize java logs. Specifically, these logs are generated by printing to the console whenever a method is invoked and whenever it is returned. These log statements are injected into the entire Android OS…
Omer
  • 151
  • 2
  • 11
2
votes
0 answers

Function-local struct breaks Visual Studio's STL debug visualizers?

When the struct/class is outside the function: #include struct Foo { }; int main() { std::vector< Foo > foos; return 0; } Visual Studio 2012's STL debug visualizer handles foos just fine: Name Value …
genpfault
  • 51,148
  • 11
  • 85
  • 139
2
votes
1 answer

how to run python scripts step-by-step without re-typing in console?

we often come across python examples like >>> some python instruction 1 some python instruction 1 (expected) output >>> some python instruction 2 some python instruction 2 (expected) output and we have to copy-paste it in console, because, say,…
WebComer
  • 1,131
  • 2
  • 19
  • 31
2
votes
1 answer

IntelliJ for Java: view as object by default

I have a class which extends Collection. It adds a few fields to maintain some state, then implements the Collection methods I want. When debugging, IntelliJ shows instances of this class in the Variables window will show the class as "Collection".…
MikeB
  • 1,452
  • 14
  • 28
2
votes
1 answer

How to visualize any List in a grid view in Visual Studio in the debugger?

There are dataset visualizers in Visual Studio. They are handy to view the data in a gridview like presentation in the debugger. Is there any way to do the same to view data in a list? Mole 2013, a discontinued commercial product, does this but it…
Tony_Henrich
  • 42,411
  • 75
  • 239
  • 374
2
votes
0 answers

How can I tell if a user wants hex or decimal display of numbers in an EEAddIn viewer function?

I have an old Visual Studio EEAddin-style debugger extension that is designed to take strings that have been mapped to integers at runtime and reverse the mapping in order to display the original string value in the watch window. For example the…
user197015
2
votes
0 answers

Autoexp.dat and Static Array

I am currently creating a debug visualizer for my class in Visual Studio 2010 and Visual Studio 2012 with autoexp.dat and natvis. Everything work fine with natvis, but I have 1 problem with autoexp.dat. When I create a static array of my class, the…
2
votes
0 answers

Debugger visualiser for Qt4, MSVC 2012

I was working on a project written in C++ witch Visual Studio 2008 and Qt4.7.3 and debugging visualisation was fine. But now I have migrated to Visual Studio 2012 and Qt4.8.5 (with Qt 1.1.8 add-in) and there is no any debugger visualisation. It…
nabroyan
  • 3,225
  • 6
  • 37
  • 56
2
votes
1 answer

Tools for realtime visualization of Javascript objects

Like many people, my brain tends to work well with visual (aka non-textual) information for reading, writing, and creating. What are some tools that in some way allow me to "see" my currently-running javascript environment visually? One obvious…
themirror
  • 9,963
  • 7
  • 46
  • 79
2
votes
1 answer

Installing visualizer for boost::posix_time::ptime in Visual Studio Express 2012

When debugging an application with boost::posix_time::ptime instances in it, the normal debugger is not very helpful, as it only shows a time value in ticks. When outputting the same object with std::cout, the console shows the time in a readable…
2
votes
2 answers

Text visualizer is not available in VS2012 debugger

I want to see this lambda expression in the Text Visualizer: Func v = (int x, int y) => x + y; However, when I stop debugger after this line, v variable in the Watch window doesn't contain magnify glass icon, which is supposed to…
Alex F
  • 42,307
  • 41
  • 144
  • 212
2
votes
1 answer

Display strings with embedded nulls in VS2010 debugger visualizer

In Visual Studio 2010, I am trying to have strings (char* and wchar_t*) display with embedded nulls in the various native C++ Debugger Visualizer components, such as the data tip area (Watch window, preview) and expanded area accessed by the…
2
votes
1 answer

StackOverflowException in Visual Studio DebuggerVisualizer

I'm developing Visual Studio debugger visualizer. It worked fine but then (unexpectedly) it become broken. I can not figure out why it happend because I didn't changed anything important. So now I get An unhandled exception of type…
levanovd
  • 4,095
  • 6
  • 37
  • 56
2
votes
2 answers

Natvis Visual Studio 2012 Boost Vector and Matrix

I have downloaded and installed cppvisualizers to allow better handling of boost data structure in Visual Studio 2012. https://cppvisualizers.codeplex.com/ It does not have support for boost::numeric::ublas::vector and boost::numeric::ublas::matrix…
Atlas
  • 153
  • 3
  • 12