Lines Matching refs:suggestion
32 ActionSuggestion* suggestion) { in FillSuggestionFromSpec() argument
34 suggestion->score = action->score(); in FillSuggestionFromSpec()
35 suggestion->priority_score = action->priority_score(); in FillSuggestionFromSpec()
37 suggestion->type = action->type()->str(); in FillSuggestionFromSpec()
40 suggestion->response_text = action->response_text()->str(); in FillSuggestionFromSpec()
55 suggestion->serialized_entity_data = entity_data->Serialize(); in FillSuggestionFromSpec()
65 ActionSuggestion suggestion; in SuggestTextRepliesFromCapturingMatch() local
66 suggestion.response_text = match_text.ToUTF8String(); in SuggestTextRepliesFromCapturingMatch()
67 suggestion.type = smart_reply_action_type; in SuggestTextRepliesFromCapturingMatch()
71 FillSuggestionFromSpec(group->text_reply(), entity_data.get(), &suggestion); in SuggestTextRepliesFromCapturingMatch()
72 actions->push_back(suggestion); in SuggestTextRepliesFromCapturingMatch()