From 1d2c6d0f73bdd3bd96e315ad695b9ab1d5ce4353 Mon Sep 17 00:00:00 2001
From: "L. Frank Turovich"
Element | -Note | +Element | +Note |
Class/Struct | -Searches for classes and structs. You can further qualify + | Class/Struct | +Searches for classes and structs. You can further qualify the search by specifying "class" or "struct" in front of the name that you are searching for. Specifying "class" or "struct" also allows you to search for anonymous classes and structures. |
Function | -Searches for global functions or functions in a namespace + | Function | +Searches for global functions or functions in a namespace
(functions that are not members of a class, struct, or union). You can
specify parameters to further qualify your search. When specifying a
parameter list, everything between the parentheses should be valid C/C++
@@ -63,37 +63,37 @@ For information on working sets, see Workbench User Guide > Concepts
Do not specify the return type of the function. |
Variable | -Searches for variables that are not members of a class, + | Variable | +Searches for variables that are not members of a class, struct, or union. |
Union | -Searches for unions. Anonymous unions can be searched for by + | Union | +Searches for unions. Anonymous unions can be searched for by specifying "union" as the search pattern. |
Method | -Searches for methods that are members of a class, struct, or + | Method | +Searches for methods that are members of a class, struct, or
union. Searching for methods also finds constructors and destructors. See above note for functions. |
Field | -Searches for fields that are members of a class, struct, or + | Field | +Searches for fields that are members of a class, struct, or union. |
Enumeration | -Searches for enumerations. | +Enumeration | +Searches for enumerations. |
Enumerator | -Searches for enumerators. | +Enumerator | +Searches for enumerators. |
Namespace | -Searches for namespaces. | +Namespace | +Searches for namespaces. |
You can use wildcard characters to further refine your search.
-Use this wildcard character | -To search for this | +Use this wildcard character | +To search for this |
* | -Any string Tip: Tip: | ||
? | -A single character | +? | +A single character |
:: | -Nested elements | +:: | +Nested elements |