clang API Documentation
Callback handler that receives notifications when performing code completion within the preprocessor. More...
#include <CodeCompletionHandler.h>
Public Member Functions | |
virtual | ~CodeCompletionHandler () |
virtual void | CodeCompleteDirective (bool InConditional) |
Callback invoked when performing code completion for a preprocessor directive. | |
virtual void | CodeCompleteInConditionalExclusion () |
Callback invoked when performing code completion within a block of code that was excluded due to preprocessor conditionals. | |
virtual void | CodeCompleteMacroName (bool IsDefinition) |
Callback invoked when performing code completion in a context where the name of a macro is expected. | |
virtual void | CodeCompletePreprocessorExpression () |
Callback invoked when performing code completion in a preprocessor expression, such as the condition of an #if or #elif directive. | |
virtual void | CodeCompleteMacroArgument (IdentifierInfo *Macro, MacroInfo *MacroInfo, unsigned ArgumentIndex) |
Callback invoked when performing code completion inside a function-like macro argument. | |
virtual void | CodeCompleteNaturalLanguage () |
Callback invoked when performing code completion in a part of the file where we expect natural language, e.g., a comment, string, or #error directive. |
Callback handler that receives notifications when performing code completion within the preprocessor.
Definition at line 24 of file CodeCompletionHandler.h.
CodeCompletionHandler::~CodeCompletionHandler | ( | ) | [virtual] |
Definition at line 849 of file Preprocessor.cpp.
virtual void clang::CodeCompletionHandler::CodeCompleteDirective | ( | bool | InConditional | ) | [inline, virtual] |
Callback invoked when performing code completion for a preprocessor directive.
This callback will be invoked when the preprocessor processes a '#' at the start of a line, followed by the code-completion token.
InConditional | Whether we're inside a preprocessor conditional already. |
Definition at line 36 of file CodeCompletionHandler.h.
Referenced by clang::Preprocessor::HandleDirective().
virtual void clang::CodeCompletionHandler::CodeCompleteInConditionalExclusion | ( | ) | [inline, virtual] |
Callback invoked when performing code completion within a block of code that was excluded due to preprocessor conditionals.
Definition at line 40 of file CodeCompletionHandler.h.
virtual void clang::CodeCompletionHandler::CodeCompleteMacroArgument | ( | IdentifierInfo * | Macro, |
MacroInfo * | MacroInfo, | ||
unsigned | ArgumentIndex | ||
) | [inline, virtual] |
Callback invoked when performing code completion inside a function-like macro argument.
There will be another callback invocation after the macro arguments are parsed, so this callback should generally be used to note that the next callback is invoked inside a macro argument.
Definition at line 59 of file CodeCompletionHandler.h.
virtual void clang::CodeCompletionHandler::CodeCompleteMacroName | ( | bool | IsDefinition | ) | [inline, virtual] |
Callback invoked when performing code completion in a context where the name of a macro is expected.
IsDefinition | Whether this is the definition of a macro, e.g., in a #define. |
Definition at line 47 of file CodeCompletionHandler.h.
Referenced by EvaluateDefined().
virtual void clang::CodeCompletionHandler::CodeCompleteNaturalLanguage | ( | ) | [inline, virtual] |
Callback invoked when performing code completion in a part of the file where we expect natural language, e.g., a comment, string, or #error directive.
Definition at line 66 of file CodeCompletionHandler.h.
Referenced by clang::Preprocessor::CodeCompleteNaturalLanguage().
virtual void clang::CodeCompletionHandler::CodeCompletePreprocessorExpression | ( | ) | [inline, virtual] |
Callback invoked when performing code completion in a preprocessor expression, such as the condition of an #if or #elif directive.
Definition at line 51 of file CodeCompletionHandler.h.
Referenced by EvaluateValue().