Lines Matching refs:Completion

4409   CodeCompletionBuilder Completion(Results.getAllocator(),  in AddLambdaCompletion()  local
4412 Completion.AddChunk(CodeCompletionString::CK_LeftBracket); in AddLambdaCompletion()
4413 Completion.AddPlaceholderChunk("="); in AddLambdaCompletion()
4414 Completion.AddChunk(CodeCompletionString::CK_RightBracket); in AddLambdaCompletion()
4416 Completion.AddChunk(CodeCompletionString::CK_LeftParen); in AddLambdaCompletion()
4420 Completion.AddChunk(CodeCompletionString::ChunkKind::CK_Comma); in AddLambdaCompletion()
4432 Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix)); in AddLambdaCompletion()
4433 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4434 Completion.AddPlaceholderChunk("parameter"); in AddLambdaCompletion()
4435 Completion.AddTextChunk(Completion.getAllocator().CopyString(Suffix)); in AddLambdaCompletion()
4437 Completion.AddChunk(CodeCompletionString::CK_RightParen); in AddLambdaCompletion()
4439 Completion.AddChunk(clang::CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4440 Completion.AddChunk(CodeCompletionString::CK_LeftBrace); in AddLambdaCompletion()
4441 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4442 Completion.AddPlaceholderChunk("body"); in AddLambdaCompletion()
4443 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4444 Completion.AddChunk(CodeCompletionString::CK_RightBrace); in AddLambdaCompletion()
4446 Results.AddResult(Completion.TakeString()); in AddLambdaCompletion()