clang
3.9.0
|
This class represents a description of a function call using the number of arguments and the name of the function. More...
#include <CallEvent.h>
Public Member Functions | |
CallDescription (StringRef FuncName, unsigned RequiredArgs=NoArgRequirement) | |
Constructs a CallDescription object. More... | |
StringRef | getFunctionName () const |
Get the name of the function that this object matches. More... | |
Static Public Attributes | |
static const unsigned | NoArgRequirement = ~0 |
This class represents a description of a function call using the number of arguments and the name of the function.
Definition at line 55 of file CallEvent.h.
|
inline |
Constructs a CallDescription object.
FuncName | The name of the function that will be matched. |
RequiredArgs | The number of arguments that is expected to match a call. Omit this parameter to match every occurance of call with a given name regardless the number of arguments. |
Definition at line 70 of file CallEvent.h.
|
inline |
Get the name of the function that this object matches.
Definition at line 74 of file CallEvent.h.
|
static |
Definition at line 62 of file CallEvent.h.
Referenced by clang::ento::CallEvent::isCalled().