HomeSort by relevance Sort by last modified time
    Searched refs:fallback (Results 101 - 125 of 579) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/cmds/bootanimation/
BootAnimation.h 146 status_t initFont(Font* font, const char* fallback);
  /packages/apps/DocumentsUI/src/com/android/documentsui/
ActionHandler.java 112 * If the primary view type is unavailable, then fallback to the alternative type of view.
114 boolean openDocument(DocumentDetails doc, @ViewType int type, @ViewType int fallback);
  /system/security/keystore/
blob.h 114 void setFallback(bool fallback);
  /bionic/libc/bionic/
wctype.cpp 56 static bool __icu_hasBinaryProperty(wint_t wc, UProperty property, int (*fallback)(int)) {
59 return u_hasBinaryProperty ? u_hasBinaryProperty(wc, property) : fallback(wc);
  /external/boringssl/src/ssl/test/runner/
alert.go 73 alertInappropriateFallback: "inappropriate fallback",
  /external/icu/icu4c/source/extra/uconv/
uconv.cpp 563 UBool fallback,
586 UBool fallback,
726 ucnv_setFallback(convto, fallback);
1110 UBool fallback = FALSE; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_tex.c 46 if (nctx->fallback == HWTNL && (unit->TexGenEnabled & 1 << j)) {
74 if (nctx->fallback == HWTNL &&
nv20_state_tex.c 46 if (nctx->fallback == HWTNL && (unit->TexGenEnabled & 1 << j)) {
72 if (nctx->fallback == HWTNL &&
nv20_state_tnl.c 157 unsigned source = nctx->fallback == HWTNL ?
346 if (nctx->fallback != HWTNL)
376 if (nctx->fallback == HWTNL)
  /external/valgrind/memcheck/tests/
varinfo6.stdout.exp 3 too repetitive; using fallback sorting algorithm
  /frameworks/base/core/java/android/text/
Hyphenator.java 265 String fallback = LOCALE_FALLBACK_DATA[i][1]; local
266 sMap.put(Locale.forLanguageTag(language), sMap.get(Locale.forLanguageTag(fallback)));
  /prebuilts/go/darwin-x86/src/cmd/go/
fmt.go 62 // fallback to looking for gofmt in $PATH
  /prebuilts/go/darwin-x86/src/crypto/tls/
alert.go 65 alertInappropriateFallback: "inappropriate fallback",
  /prebuilts/go/darwin-x86/src/time/
zoneinfo_windows_test.go 48 // Try MUI_Std and MUI_Dlt first, fallback to Std and Dlt if *any* error occurs
54 if err != nil { // Fallback to Std and Dlt
  /prebuilts/go/linux-x86/src/cmd/go/
fmt.go 62 // fallback to looking for gofmt in $PATH
  /prebuilts/go/linux-x86/src/crypto/tls/
alert.go 65 alertInappropriateFallback: "inappropriate fallback",
  /prebuilts/go/linux-x86/src/time/
zoneinfo_windows_test.go 48 // Try MUI_Std and MUI_Dlt first, fallback to Std and Dlt if *any* error occurs
54 if err != nil { // Fallback to Std and Dlt
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java 508 FutureFallback<Integer> fallback = mocksControl.createMock(FutureFallback.class);
512 ListenableFuture<Integer> faultToleranteFuture = Futures.withFallback(originalFuture, fallback);
519 FutureFallback<Integer> fallback = mocksControl.createMock(FutureFallback.class);
521 expect(fallback.create(raisedException)).andReturn(Futures.immediateFuture(20));
525 ListenableFuture<Integer> faultToleranteFuture = Futures.withFallback(failingFuture, fallback);
543 FutureFallback<Integer> fallback = new FutureFallback<Integer>() {
550 Futures.withFallback(failingFuture, fallback).get();
570 FutureFallback<Integer> fallback = mocksControl.createMock(FutureFallback.class);
573 // Exception is thrown in the body of the "fallback" method.
574 expect(fallback.create(raisedException)).andThrow(expectedException)
    [all...]
  /frameworks/av/media/libstagefright/
avc_utils.cpp 44 unsigned parseUEWithFallback(ABitReader *br, unsigned fallback) {
54 return fallback;
58 return fallback;
68 signed parseSEWithFallback(ABitReader *br, signed fallback) {
72 return fallback;
  /external/icu/android_icu4j/src/main/java/android/icu/util/
ULocale.java 64 * which case the locale fallback mechanism will be invoked until a
67 * further fallback may be required to reach a locale containing the
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ULocale.java 63 * which case the locale fallback mechanism will be invoked until a
66 * further fallback may be required to reach a locale containing the
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Futures.java 307 * provided by the {@code fallback}. {@link FutureFallback#create} is not
310 * fallback}, an exception is thrown, this exception is used as the result of
313 * <p>Below is an example of a fallback that returns a default value if an
330 * <p>The fallback can also choose to propagate the original exception when
355 * fallback.create} may run on an unpredictable or undesirable thread:
359 * is called, {@code withFallback} will call {@code fallback.create} inline.
361 * schedule {@code fallback.create} to be run by the thread that completes
367 * fallback.create}, all other registered but unexecuted listeners are
372 * @param fallback the {@link FutureFallback} implementation to be called if
378 FutureFallback<? extends V> fallback) {
    [all...]
  /external/icu/icu4c/source/test/intltest/
icusvtst.cpp 117 return LocaleKey::createWithCanonicalFallback(id, NULL, status); // no fallback locale
501 return LocaleKey::createWithCanonicalFallback(id, NULL, status); // no fallback locale
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
CommonToken.pm 9 fallback => 1,
  /external/dhcpcd-6.8.2/
if-options.h 190 char *fallback; member in struct:if_options

Completed in 5657 milliseconds

1 2 3 45 6 7 8 91011>>