Lines Matching refs:Completion
4406 CodeCompletionBuilder Completion(Results.getAllocator(), in AddLambdaCompletion() local
4409 Completion.AddChunk(CodeCompletionString::CK_LeftBracket); in AddLambdaCompletion()
4410 Completion.AddPlaceholderChunk("="); in AddLambdaCompletion()
4411 Completion.AddChunk(CodeCompletionString::CK_RightBracket); in AddLambdaCompletion()
4413 Completion.AddChunk(CodeCompletionString::CK_LeftParen); in AddLambdaCompletion()
4417 Completion.AddChunk(CodeCompletionString::ChunkKind::CK_Comma); in AddLambdaCompletion()
4429 Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix)); in AddLambdaCompletion()
4430 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4431 Completion.AddPlaceholderChunk("parameter"); in AddLambdaCompletion()
4432 Completion.AddTextChunk(Completion.getAllocator().CopyString(Suffix)); in AddLambdaCompletion()
4434 Completion.AddChunk(CodeCompletionString::CK_RightParen); in AddLambdaCompletion()
4436 Completion.AddChunk(clang::CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4437 Completion.AddChunk(CodeCompletionString::CK_LeftBrace); in AddLambdaCompletion()
4438 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4439 Completion.AddPlaceholderChunk("body"); in AddLambdaCompletion()
4440 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4441 Completion.AddChunk(CodeCompletionString::CK_RightBrace); in AddLambdaCompletion()
4443 Results.AddResult(Completion.TakeString()); in AddLambdaCompletion()