enum CXNameRefFlags
Declared at: clang/include/clang-c/Index.h:4985
Enumerators
Name | Value | Comment |
---|---|---|
CXNameRange_WantQualifier | 1 | Include the nested-name-specifier, e.g. Foo:: in x.Foo::y, in the range. |
CXNameRange_WantTemplateArgs | 2 | Include the explicit template arguments, e.g. < int> in x.f <int >, in the range. |
CXNameRange_WantSinglePiece | 4 | If the name is non-contiguous, return the full spanning range.Non-contiguous names occur in Objective-C when a selector with two or more parameters is used, or in C++ when using an operator: |