Search a specific treatments in your C/C++ source code

Searching in the source code is a popular functionality for each IDE used, developers use it widely to find places where a specific keyword exist. Some IDE provides advanced search possibilities like using regular expressions. But what about searching a specific behavior in your source code.

By behavior I mean a treatment where some methods are called, some fields are assigned, and others are read in a method. Let’s take as example this code snippet from a financial library: Continue reading “Search a specific treatments in your C/C++ source code”