/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/ |
History.md | 68 We've implemented native fallback. If the target browser provides
|
/external/icu/icu4c/source/extra/uconv/ |
uconv.cpp | 561 UBool fallback, 584 UBool fallback, 724 ucnv_setFallback(convto, fallback); 1108 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 | 156 unsigned source = nctx->fallback == HWTNL ? 339 if (nctx->fallback != HWTNL) 369 if (nctx->fallback == HWTNL)
|
/external/valgrind/memcheck/tests/ |
varinfo6.stdout.exp | 3 too repetitive; using fallback sorting algorithm
|
/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 | 64 alertInappropriateFallback: "inappropriate fallback",
|
/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 | 64 alertInappropriateFallback: "inappropriate fallback",
|
/system/security/keystore/ |
blob.cpp | 82 void Blob::setFallback(bool fallback) { 83 if (fallback) {
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
wsgiwrappers.py | 89 The ``language`` default value is considered the fallback during i18n 99 "en-us", you don't want gettext to fallback to "zh-cn". You want it to 167 fallback = self.defaults.get('language', 'en-us') 168 if not fallback: 170 if fallback not in langs: 171 langs.append(fallback) 172 index = langs.index(fallback)
|
/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;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
MccTable.java | 231 * Maps a given locale to a fallback locale that approximates it. This is a hack. 253 Locale fallback = target; local 254 while ((fallback = FALLBACKS.get(fallback)) != null) { 255 if (candidates.contains(fallback)) { 256 return fallback;
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
ULocale.java | 61 * which case the locale fallback mechanism will be invoked until a 64 * 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 | 60 * which case the locale fallback mechanism will be invoked until a 63 * 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 | 114 return LocaleKey::createWithCanonicalFallback(id, NULL, status); // no fallback locale 498 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
|
/external/esd/include/ |
esd.h | 309 int esd_play_file( const char *name_prefix, const char *filename, int fallback );
|
/external/icu/icu4c/source/common/ |
servlk.cpp | 122 LocaleKey::fallback() { function in class:LocaleKey 126 _currentID.remove(x); // truncate current or fallback, whichever we're pointing to
|
/external/v8/src/js/ |
runtime.js | 130 // For the fallback with --harmony-species off, there are two possible choices: 133 // This fallback path is only needed in the transition to ES2015, and the
|
/libcore/ojluni/src/lambda/java/java/lang/invoke/ |
MethodHandles.java | 144 MethodHandle fallback) { return null; }
|