Lines Matching refs:Completion

4600     AttributeCommonInfo::Syntax Syntax, AttributeCompletion Completion,  in CodeCompleteAttribute()  argument
4602 if (Completion == AttributeCompletion::None) in CodeCompleteAttribute()
4651 if (Completion == AttributeCompletion::Scope) { in CodeCompleteAttribute()
4808 CodeCompletionBuilder Completion(Results.getAllocator(), in AddLambdaCompletion() local
4811 Completion.AddChunk(CodeCompletionString::CK_LeftBracket); in AddLambdaCompletion()
4812 Completion.AddPlaceholderChunk("="); in AddLambdaCompletion()
4813 Completion.AddChunk(CodeCompletionString::CK_RightBracket); in AddLambdaCompletion()
4815 Completion.AddChunk(CodeCompletionString::CK_LeftParen); in AddLambdaCompletion()
4819 Completion.AddChunk(CodeCompletionString::ChunkKind::CK_Comma); in AddLambdaCompletion()
4831 Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix)); in AddLambdaCompletion()
4832 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4833 Completion.AddPlaceholderChunk("parameter"); in AddLambdaCompletion()
4834 Completion.AddTextChunk(Completion.getAllocator().CopyString(Suffix)); in AddLambdaCompletion()
4836 Completion.AddChunk(CodeCompletionString::CK_RightParen); in AddLambdaCompletion()
4838 Completion.AddChunk(clang::CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4839 Completion.AddChunk(CodeCompletionString::CK_LeftBrace); in AddLambdaCompletion()
4840 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4841 Completion.AddPlaceholderChunk("body"); in AddLambdaCompletion()
4842 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion()
4843 Completion.AddChunk(CodeCompletionString::CK_RightBrace); in AddLambdaCompletion()
4845 Results.AddResult(Completion.TakeString()); in AddLambdaCompletion()