enum AnyCall::Kind

Declared at: clang/include/clang/Analysis/AnyCall.h:27

Enumerators

NameValueComment
Function0A function, function pointer, or a C++ method call
ObjCMethod1A call to an Objective-C method
Block2A call to an Objective-C block
Destructor3An implicit C++ destructor call (called implicitly or by operator 'delete')
Constructor4An implicit or explicit C++ constructor call
InheritedConstructor5A C++ inherited constructor produced by a "using T::T" directive
Allocator6A C++ allocation function call (operator `new`), via C++ new-expression
Deallocator7A C++ deallocation function call (operator `delete`), via C++ delete-expression