Lines Matching refs:Completion
4591 AttributeCompletion Completion, in CodeCompleteAttribute() argument
4593 if (Completion == AttributeCompletion::None) in CodeCompleteAttribute()
4641 if (Completion == AttributeCompletion::Scope) { in CodeCompleteAttribute()
4797 CodeCompletionBuilder Completion(Results.getAllocator(), in AddLambdaCompletion() local
4800 Completion.AddChunk(CodeCompletionString::CK_LeftBracket); in AddLambdaCompletion()
4801 Completion.AddPlaceholderChunk("="); in AddLambdaCompletion()
4802 Completion.AddChunk(CodeCompletionString::CK_RightBracket); in AddLambdaCompletion()
4804 Completion.AddChunk(CodeCompletionString::CK_LeftParen); in AddLambdaCompletion()
4808 Completion.AddChunk(CodeCompletionString::ChunkKind::CK_Comma); in AddLambdaCompletion()
4820 Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix)); in AddLambdaCompletion()
4821 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4822 Completion.AddPlaceholderChunk("parameter"); in AddLambdaCompletion()
4823 Completion.AddTextChunk(Completion.getAllocator().CopyString(Suffix)); in AddLambdaCompletion()
4825 Completion.AddChunk(CodeCompletionString::CK_RightParen); in AddLambdaCompletion()
4827 Completion.AddChunk(clang::CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4828 Completion.AddChunk(CodeCompletionString::CK_LeftBrace); in AddLambdaCompletion()
4829 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4830 Completion.AddPlaceholderChunk("body"); in AddLambdaCompletion()
4831 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4832 Completion.AddChunk(CodeCompletionString::CK_RightBrace); in AddLambdaCompletion()
4834 Results.AddResult(Completion.TakeString()); in AddLambdaCompletion()