Home
last modified time | relevance | path

Searched refs:conversation (Results 1 – 25 of 37) sorted by relevance

12

/external/libtextclassifier/actions/
Dlua-ranker_test.cc69 const Conversation conversation = {{{/*user_id=*/1, "hello hello"}}}; in TEST() local
85 conversation, test_snippet, /*entity_data_schema=*/nullptr, in TEST()
95 const Conversation conversation = {{{/*user_id=*/1, "hello hello"}}}; in TEST() local
107 conversation, test_snippet, /*entity_data_schema=*/nullptr, in TEST()
114 const Conversation conversation = {{{/*user_id=*/1, "hello hello"}}}; in TEST() local
130 conversation, test_snippet, /*entity_data_schema=*/nullptr, in TEST()
140 const Conversation conversation = {{{/*user_id=*/1, "hello hello"}}}; in TEST() local
160 conversation, test_snippet, /*entity_data_schema=*/nullptr, in TEST()
170 const Conversation conversation = {{{/*user_id=*/1, "hello hello"}}}; in TEST() local
188 conversation, test_snippet, /*entity_data_schema=*/nullptr, in TEST()
[all …]
Dranker_test.cc38 const Conversation conversation = {{{/*user_id=*/1, "hello hello"}}}; in TEST() local
53 ranker->RankActions(conversation, &response); in TEST()
60 const Conversation conversation = {{{/*user_id=*/1, "hello hello"}}}; in TEST() local
80 ranker->RankActions(conversation, &response); in TEST()
89 const Conversation conversation = { in TEST() local
134 ranker->RankActions(conversation, &response); in TEST()
141 const Conversation conversation = { in TEST() local
186 ranker->RankActions(conversation, &response); in TEST()
196 const Conversation conversation = {{{/*user_id=*/1, "code A-911"}}}; in TEST() local
228 ranker->RankActions(conversation, &response); in TEST()
[all …]
Dlua-actions_test.cc39 Conversation conversation; in TEST() local
45 test_snippet, conversation, in TEST()
57 Conversation conversation; local
58 conversation.messages.push_back({/*user_id=*/0, "hello there!"});
59 conversation.messages.push_back({/*user_id=*/1, "general kenobi!"});
Dactions-suggestions.cc74 int NumMessagesToConsider(const Conversation& conversation, in NumMessagesToConsider() argument
77 conversation.messages.size() < max_conversation_history_length) in NumMessagesToConsider()
78 ? conversation.messages.size() in NumMessagesToConsider()
494 const Conversation& conversation, const int num_messages, in IsLowConfidenceInput() argument
498 conversation.messages[conversation.messages.size() - i].text; in IsLowConfidenceInput()
947 const Conversation& conversation, const int num_messages, in SuggestActionsFromModel() argument
951 TC3_CHECK_LE(num_messages, conversation.messages.size()); in SuggestActionsFromModel()
974 for (int i = conversation.messages.size() - num_messages; in SuggestActionsFromModel()
975 i < conversation.messages.size(); i++) { in SuggestActionsFromModel()
976 const ConversationMessage& message = conversation.messages[i]; in SuggestActionsFromModel()
[all …]
Dactions-suggestions.h101 const Conversation& conversation,
105 const Conversation& conversation, const Annotator* annotator,
205 const Conversation& conversation, const int num_messages,
215 const Conversation& conversation, const ActionSuggestionOptions& options,
228 bool SuggestActionsFromRules(const Conversation& conversation,
232 const Conversation& conversation,
238 bool GatherActionsSuggestions(const Conversation& conversation,
244 bool IsLowConfidenceInput(const Conversation& conversation,
Dlua-ranker.h33 const Conversation& conversation, const std::string& ranker_code,
42 const Conversation& conversation, const std::string& ranker_code, in ActionsSuggestionsLuaRanker() argument
46 : conversation_(conversation), in ActionsSuggestionsLuaRanker()
Dlua-actions.cc51 const std::string& snippet, const Conversation& conversation, in CreateLuaActionsSuggestions() argument
59 snippet, conversation, model_executor, model_spec, interpreter, in CreateLuaActionsSuggestions()
70 const std::string& snippet, const Conversation& conversation, in LuaActionsSuggestions() argument
77 conversation_(conversation), in LuaActionsSuggestions()
Dactions_jni.cc124 const Conversation& conversation, const jstring device_locales, in ActionSuggestionsToJObjectArray() argument
168 device_locales, action_result[i], conversation, app_context, in ActionSuggestionsToJObjectArray()
263 Conversation conversation; in FromJavaConversation() local
264 conversation.messages = messages; in FromJavaConversation()
265 return conversation; in FromJavaConversation()
365 const Conversation conversation = FromJavaConversation(env, jconversation); in TC3_JNI_METHOD() local
373 context->model()->SuggestActions(conversation, annotator, options); in TC3_JNI_METHOD()
379 response.actions, conversation, device_locales, generate_intents); in TC3_JNI_METHOD()
Dlua-actions.h33 const std::string& snippet, const Conversation& conversation,
53 const std::string& snippet, const Conversation& conversation,
Dlua-ranker.cc34 const Conversation& conversation, const std::string& ranker_code, in Create() argument
40 conversation, ranker_code, entity_data_schema, in Create()
Dactions_model.fbs37 // (num messages,) string tensor, each message of the conversation.
40 // int, the number of messages in the conversation.
44 // messages in the conversation.
61 // each message in the conversation.
66 // in the conversation.
161 // limit, tokens at the start of the conversation are dropped.
165 // limit, the conversation is padded with padding tokens.
221 // Whether to suppress all model output when a conversation is classified as
232 // Minimal fraction of messages in the input conversation that need to match
Dranker.h38 const Conversation& conversation, ActionsSuggestionsResponse* response,
Dranker.cc233 const Conversation& conversation, ActionsSuggestionsResponse* response, in RankActions() argument
342 conversation, lua_bytecode_, entity_data_schema, in RankActions()
/external/libtextclassifier/java/com/google/android/textclassifier/
DActionsSuggestionsModel.java68 Conversation conversation, ActionSuggestionOptions options, AnnotatorModel annotator) { in suggestActions() argument
71 conversation, in suggestActions()
80 Conversation conversation, in suggestActionsWithIntents() argument
87 conversation, in suggestActionsWithIntents()
257 Conversation conversation, in nativeSuggestActions() argument
/external/webrtc/webrtc/libjingle/xmpp/
Dmucroomdiscoverytask.cc42 const XmlElement* conversation = in HandleResult() local
45 if (conversation != NULL) { in HandleResult()
46 conversation_id = conversation->BodyText(); in HandleResult()
/external/replicaisland/src/com/replica/replicaisland/
DConversationDialogActivity.java85 private void formatPages(Conversation conversation, TextView textView) { in formatPages() argument
92 for (int page = conversation.pages.size() - 1; page >= 0 ; page--) { in formatPages()
93 ConversationUtils.ConversationPage currentPage = conversation.pages.get(page); in formatPages()
136 conversation.pages.add(page + addedPages, newPage); in formatPages()
/external/tcpdump/
DREADME.md90 to the start of the conversation. Field 2 is delta-time
115 Three seconds into the conversation, bytes 512 through 1023
146 of the conversation.)
168 1.86 seconds into the conversation. It was last
169 sent 15 seconds into the conversation and was sent
DREADME90 to the start of the conversation. Field 2 is delta-time
115 Three seconds into the conversation, bytes 512 through 1023
146 of the conversation.)
168 1.86 seconds into the conversation. It was last
169 sent 15 seconds into the conversation and was sent
/external/autotest/client/cros/dhcp_test_data/
DREADME2 conversation where the client asks for an address on 10.9.8.xxx and the server
/external/ppp/pppd/
Dsession.c120 static int conversation (int num_msg, in conversation() function
163 &conversation,
/external/libtextclassifier/utils/intents/
Dintent-generator.cc741 const Conversation& conversation, const ActionSuggestion& action, in ActionsJniLuaEnvironment() argument
745 conversation_(conversation), in ActionsJniLuaEnvironment()
871 const Conversation& conversation, const jobject context, in GenerateIntents() argument
888 ParseDeviceLocales(device_locales), conversation, action, in GenerateIntents()
Dintent-generator.h90 const Conversation& conversation, const jobject context,
/external/python/cpython3/Doc/howto/
Dsockets.rst33 distinction between a "client" socket - an endpoint of a conversation, and a
117 the conversation ends.
138 conversation. Or to put it another way, *as the designer, you will have to
139 decide what the rules of etiquette are for a conversation*. Normally, the
140 ``connect``\ ing socket starts the conversation, by sending in a request, or
/external/python/cpython2/Doc/howto/
Dsockets.rst33 distinction between a "client" socket - an endpoint of a conversation, and a
121 the conversation ends.
141 conversation. Or to put it another way, *as the designer, you will have to
142 decide what the rules of etiquette are for a conversation*. Normally, the
143 ``connect``\ ing socket starts the conversation, by sending in a request, or
/external/javapoet/
DREADME.md807 + "participants in the conversation will continue to see the\n"
811 + "conversation for all participants.\n", Conversation.class)
822 * participants in the conversation will continue to see the
826 * conversation for all participants.

12