HomeSort by relevance Sort by last modified time
    Searched refs:ApplyStrategy (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/view/textclassifier/
TextLinksParams.java 46 @TextLinks.ApplyStrategy
52 @TextLinks.ApplyStrategy int applyStrategy,
54 mApplyStrategy = applyStrategy;
150 @TextLinks.ApplyStrategy
160 public Builder setApplyStrategy(@TextLinks.ApplyStrategy int applyStrategy) {
161 mApplyStrategy = checkApplyStrategy(applyStrategy);
196 @TextLinks.ApplyStrategy
197 private static int checkApplyStrategy(int applyStrategy) {
    [all...]
TextLinks.java 81 public @interface ApplyStrategy {}
128 * @param applyStrategy the apply strategy used to determine how to apply links to text.
139 @ApplyStrategy int applyStrategy,
143 .setApplyStrategy(applyStrategy)
650 private @ApplyStrategy int mApplyStrategy;
706 /** @param applyStrategy strategy to use when resolving conflicts. */
707 public Options setApplyStrategy(@ApplyStrategy int applyStrategy) {
708 checkValidApplyStrategy(applyStrategy);
    [all...]
  /frameworks/support/textclassifier/src/main/java/androidx/textclassifier/
TextLinks.java 81 public @interface ApplyStrategy {}
108 @ApplyStrategy int applyStrategy,
111 checkValidApplyStrategy(applyStrategy);
129 if (applyStrategy == APPLY_STRATEGY_REPLACE) {
286 private @ApplyStrategy int mApplyStrategy;
317 * @throws IllegalArgumentException if applyStrategy is not valid.
321 public Options setApplyStrategy(@ApplyStrategy int applyStrategy) {
322 checkValidApplyStrategy(applyStrategy);
    [all...]

Completed in 478 milliseconds