reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaCodeComplete.cpp
 4292   Completion.AddChunk(CodeCompletionString::CK_LeftBracket);
 4293   Completion.AddPlaceholderChunk("=");
 4294   Completion.AddChunk(CodeCompletionString::CK_RightBracket);
 4296     Completion.AddChunk(CodeCompletionString::CK_LeftParen);
 4300         Completion.AddChunk(CodeCompletionString::ChunkKind::CK_Comma);
 4312       Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix));
 4312       Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix));
 4313       Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace);
 4314       Completion.AddPlaceholderChunk("parameter");
 4315       Completion.AddTextChunk(Completion.getAllocator().CopyString(Suffix));
 4315       Completion.AddTextChunk(Completion.getAllocator().CopyString(Suffix));
 4317     Completion.AddChunk(CodeCompletionString::CK_RightParen);
 4319   Completion.AddChunk(clang::CodeCompletionString::CK_HorizontalSpace);
 4320   Completion.AddChunk(CodeCompletionString::CK_LeftBrace);
 4321   Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace);
 4322   Completion.AddPlaceholderChunk("body");
 4323   Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace);
 4324   Completion.AddChunk(CodeCompletionString::CK_RightBrace);
 4326   Results.AddResult(Completion.TakeString());