Home
last modified time | relevance | path

Searched refs:widgetType (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/textclassifier/
DTextClassificationContext.java45 String widgetType, in TextClassificationContext() argument
48 mWidgetType = Preconditions.checkNotNull(widgetType); in TextClassificationContext()
122 public Builder(@NonNull String packageName, @NonNull @WidgetType String widgetType) { in Builder() argument
124 mWidgetType = Preconditions.checkNotNull(widgetType); in Builder()
DSelectionSessionLogger.java209 final String widgetType = Objects.toString(log.getTaggedData(WIDGET_TYPE), UNKNOWN); in debugLog() local
212 ? widgetType : widgetType + "-" + widgetVersion; in debugLog()
DTextClassifierEventTronLogger.java158 final String widgetType = in debugLog() local
177 builder.append(", widgetType=").append(widgetType); in debugLog()
/frameworks/base/core/java/android/view/textclassifier/logging/
DSmartSelectionEventTracker.java104 public SmartSelectionEventTracker(@NonNull Context context, @WidgetType int widgetType) { in SmartSelectionEventTracker() argument
105 mWidgetType = widgetType; in SmartSelectionEventTracker()
111 @NonNull Context context, @WidgetType int widgetType, @Nullable String widgetVersion) { in SmartSelectionEventTracker() argument
112 mWidgetType = widgetType; in SmartSelectionEventTracker()
328 final String widgetType = Objects.toString(log.getTaggedData(WIDGET_TYPE), UNKNOWN); in debugLog()
331 ? widgetType : widgetType + "-" + widgetVersion; in debugLog()
/frameworks/base/core/java/android/widget/
DTextView.java12420 final String widgetType; in getTextClassificationSession() local
12422 widgetType = TextClassifier.WIDGET_TYPE_EDITTEXT; in getTextClassificationSession()
12424 widgetType = TextClassifier.WIDGET_TYPE_TEXTVIEW; in getTextClassificationSession()
12426 widgetType = TextClassifier.WIDGET_TYPE_UNSELECTABLE_TEXTVIEW; in getTextClassificationSession()
12429 mContext.getPackageName(), widgetType) in getTextClassificationSession()