Home
last modified time | relevance | path

Searched refs:actionType (Results 1 – 8 of 8) sorted by relevance

/external/libtextclassifier/jni/com/google/android/textclassifier/
DActionsSuggestionsModel.java198 private final String actionType; field in ActionsSuggestionsModel.ActionSuggestion
207 String actionType, in ActionSuggestion() argument
214 this.actionType = actionType; in ActionSuggestion()
228 return actionType; in getActionType()
/external/libtextclassifier/notification/src/com/android/textclassifier/notification/
DSmartSuggestionsLogSession.java88 String actionType = action.getExtras().getString(SmartSuggestionsHelper.KEY_ACTION_TYPE); in onActionClicked() local
89 if (actionType == null) { in onActionClicked()
94 .setEntityTypes(actionType) in onActionClicked()
DSmartSuggestionsHelper.java378 RemoteAction remoteAction, String actionType, float score) { in createNotificationActionFromRemoteAction() argument
384 extras.putString(KEY_ACTION_TYPE, actionType); in createNotificationActionFromRemoteAction()
/external/freetype/src/gxvalid/
Dgxvjust.c344 FT_UShort actionType; in gxv_just_actSubrecord_validate() local
352 actionType = FT_NEXT_USHORT( p ); in gxv_just_actSubrecord_validate()
359 if ( actionType == 0 ) in gxv_just_actSubrecord_validate()
361 else if ( actionType == 1 ) in gxv_just_actSubrecord_validate()
363 else if ( actionType == 2 ) in gxv_just_actSubrecord_validate()
365 else if ( actionType == 3 ) in gxv_just_actSubrecord_validate()
367 else if ( actionType == 4 ) in gxv_just_actSubrecord_validate()
369 else if ( actionType == 5 ) in gxv_just_actSubrecord_validate()
/external/harfbuzz_ng/src/
Dhb-aat-layout-just-table.hh56 HBUINT16 actionType; /* The type of postcompensation action. */ member
189 switch (u.header.actionType) in sanitize()
/external/libtextclassifier/java/src/com/android/textclassifier/
DActionsSuggestionsHelper.java147 public static LabeledIntent.TitleChooser createTitleChooser(String actionType) { in createTitleChooser() argument
148 if (ConversationAction.TYPE_OPEN_URL.equals(actionType)) { in createTitleChooser()
DTextClassifierImpl.java413 String actionType = nativeSuggestion.getActionType(); in createConversationActionResult() local
414 if (!expectedTypes.contains(actionType)) { in createConversationActionResult()
431 new ConversationAction.Builder(actionType) in createConversationActionResult()
/external/libtextclassifier/java/tests/instrumentation/src/com/android/textclassifier/
DTextClassifierImplTest.java631 private static Matcher<ConversationAction> isConversationAction(String actionType) {
639 if (!actionType.equals(conversationAction.getType())) {
642 if (ConversationAction.TYPE_TEXT_REPLY.equals(actionType)) {
656 description.appendText("actionType=").appendValue(actionType);