Home
last modified time | relevance | path

Searched refs:localeSupplier (Results 1 – 2 of 2) sorted by relevance

/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/populator/
DLocaleOverriderTest.java39 Supplier<Locale> localeSupplier = () -> Locale.forLanguageTag("en-US"); in override_equalStrategy_hasMatch() local
47 .setLocaleSupplier(localeSupplier) in override_equalStrategy_hasMatch()
58 Supplier<ListenableFuture<Locale>> localeSupplier = in override_equalStrategy_hasMatch_localeLF() local
67 .setLocaleFutureSupplier(localeSupplier, MoreExecutors.directExecutor()) in override_equalStrategy_hasMatch_localeLF()
77 Supplier<Locale> localeSupplier = () -> Locale.forLanguageTag("jp-JP"); in override_equalStrategy_noMatch() local
85 .setLocaleSupplier(localeSupplier) in override_equalStrategy_noMatch()
95 Supplier<Locale> localeSupplier = () -> Locale.forLanguageTag("en-US"); in override_langFallbackStrategy_exactMatch() local
103 .setLocaleSupplier(localeSupplier) in override_langFallbackStrategy_exactMatch()
113 Supplier<Locale> localeSupplier = () -> Locale.forLanguageTag("en-US"); in override_langFallbackStrategy_fallbackMatch() local
121 .setLocaleSupplier(localeSupplier) in override_langFallbackStrategy_fallbackMatch()
[all …]
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/populator/
DLocaleOverrider.java67 private Supplier<ListenableFuture<Locale>> localeSupplier; field in LocaleOverrider.Builder
73 public Builder setLocaleSupplier(Supplier<Locale> localeSupplier) { in setLocaleSupplier() argument
74 this.localeSupplier = () -> Futures.immediateFuture(localeSupplier.get()); in setLocaleSupplier()
82 Supplier<ListenableFuture<Locale>> localeSupplier, Executor lightweightExecutor) { in setLocaleFutureSupplier() argument
83 this.localeSupplier = localeSupplier; in setLocaleFutureSupplier()
102 localeSupplier != null, in build()
113 private final Supplier<ListenableFuture<Locale>> localeSupplier; field in LocaleOverrider
123 this.localeSupplier = builder.localeSupplier; in LocaleOverrider()
197 localeSupplier.get(), in getFileGroupWithMatchStrategy()