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

12 3 4 5 6 7 8 91011>>

  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
ULocaleTest.java 677 boolean[] fallback = new boolean[1];
682 ULocale result = ULocale.acceptLanguage("en-US, en-GB, en-CA, es-US", locales, fallback);
684 assertFalse(fallback[0]);
685 result = ULocale.acceptLanguage("en-US, en-GB, es-US-NEWMEXICO", locales, fallback);
687 assertTrue(fallback[0]);
694 boolean[] fallback = new boolean[1];
710 ULocale result = ULocale.acceptLanguage(accept_locales, locales, fallback);
712 assertFalse(fallback[0]);
713 result = ULocale.acceptLanguage(accept_locales2, locales, fallback);
715 assertTrue(fallback[0])
    [all...]
  /libcore/json/src/main/java/org/json/
JSONArray.java 345 * be coerced to a boolean. Returns {@code fallback} otherwise.
347 public boolean optBoolean(int index, boolean fallback) {
350 return result != null ? result : fallback;
379 * be coerced to a double. Returns {@code fallback} otherwise.
381 public double optDouble(int index, double fallback) {
384 return result != null ? result : fallback;
413 * can be coerced to an int. Returns {@code fallback} otherwise.
415 public int optInt(int index, int fallback) {
418 return result != null ? result : fallback;
447 * can be coerced to a long. Returns {@code fallback} otherwise
    [all...]
JSONObject.java 431 * can be coerced to a boolean, or {@code fallback} otherwise.
433 public boolean optBoolean(String name, boolean fallback) {
436 return result != null ? result : fallback;
465 * can be coerced to a double, or {@code fallback} otherwise.
467 public double optDouble(String name, double fallback) {
470 return result != null ? result : fallback;
499 * can be coerced to an int, or {@code fallback} otherwise.
501 public int optInt(String name, int fallback) {
504 return result != null ? result : fallback;
536 * can be coerced to a long, or {@code fallback} otherwise. Note that JSON represent
    [all...]
  /external/svox/pico/lib/
picokdt.c 1718 picoos_uint16 fallback; \/* fallback value for failed graph encodings *\/ local
1910 picoos_uint16 fallback = 0; local
2048 picoos_uint16 fallback = 0; local
2287 picoos_uint16 fallback = 0; local
2381 picoos_uint16 fallback = 0; local
2523 picoos_uint16 fallback = 0; local
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_prim_vbuf.c 75 unsigned fallback; member in struct:i915_vbuf_render
335 i915_render->fallback = 0;
339 i915_render->fallback = 0;
343 i915_render->fallback = PIPE_PRIM_LINE_LOOP;
347 i915_render->fallback = 0;
351 i915_render->fallback = 0;
355 i915_render->fallback = 0;
359 i915_render->fallback = 0;
363 i915_render->fallback = PIPE_PRIM_QUADS;
367 i915_render->fallback = PIPE_PRIM_QUAD_STRIP
    [all...]
  /external/syslinux/com32/lib/sys/
vesaserial_write.c 60 .fallback = &dev_ansiserial_w,
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
ABitReader.h 33 // Tries to get |n| bits. If not successful, returns |fallback|. Otherwise, returns result.
35 uint32_t getBitsWithFallback(size_t n, uint32_t fallback);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUCurrencyDisplayInfoProvider.java 59 private final boolean fallback; field in class:ICUCurrencyDisplayInfoProvider.ICUCurrencyDisplayInfo
66 public ICUCurrencyDisplayInfo(ICUResourceBundle rb, boolean fallback) {
67 this.fallback = fallback;
92 if (!fallback && !rb.isRoot() && result.isRoot()) {
99 return fallback ? isoCode : null;
104 // See http://unicode.org/reports/tr35/#Currencies, especially the fallback rule.
110 if (!fallback) {
122 return fallback ? getName(isoCode) : null;
196 return sink.getSpacingInfo(fallback);
    [all...]
  /external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
ICUCurrencyDisplayInfoProvider.java 55 private final boolean fallback; field in class:ICUCurrencyDisplayInfoProvider.ICUCurrencyDisplayInfo
62 public ICUCurrencyDisplayInfo(ICUResourceBundle rb, boolean fallback) {
63 this.fallback = fallback;
88 if (!fallback && !rb.isRoot() && result.isRoot()) {
95 return fallback ? isoCode : null;
100 // See http://unicode.org/reports/tr35/#Currencies, especially the fallback rule.
106 if (!fallback) {
118 return fallback ? getName(isoCode) : null;
192 return sink.getSpacingInfo(fallback);
    [all...]
  /art/test/118-noimage-dex2oat/
run 52 # Make sure we cannot run without an oat file without fallback.
53 echo "Run -Xnoimage-dex2oat -Xno-dex-file-fallback"
54 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat --runtime-option -Xno-dex-file-fallback
  /external/e2fsprogs/lib/ext2fs/
llseek.c 104 goto fallback;
113 fallback:
  /external/mesa3d/src/mesa/vbo/
vbo_save.c 108 void vbo_save_fallback( struct gl_context *ctx, GLboolean fallback )
112 if (fallback)
  /frameworks/av/media/libstagefright/include/
avc_utils.h 60 // successful. Returns |fallback| if it was unsuccessful. Note: if the value was longer that 64
61 // bits, it reads past the value and still returns |fallback|.
62 unsigned parseUEWithFallback(ABitReader *br, unsigned fallback);
65 // Returns |fallback| if it was unsuccessful. Note: if the value was longer that 64 bits, it reads
66 // past the value and still returns |fallback|.
67 signed parseSEWithFallback(ABitReader *br, signed fallback);
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
CursorPhotoSource.java 36 public CursorPhotoSource(Context context, SharedPreferences settings, PhotoSource fallback) {
37 super(context, settings, fallback);
  /prebuilts/go/darwin-x86/src/os/user/
listgroups_solaris.go 9 // this stub will conflict with the lookup_stubs.go fallback.
  /prebuilts/go/linux-x86/src/os/user/
listgroups_solaris.go 9 // this stub will conflict with the lookup_stubs.go fallback.
  /system/security/keystore/
keystore_main.cpp 71 auto fallback = android::keystore::makeSoftwareKeymasterDevice(); local
87 // For these devices we will not allow the fallback device for import or generation
88 // of keys. The fallback device is only used for legacy keys present on the device.
96 KeyStore keyStore(&entropy, dev, fallback, allowNewFallbackDevice);
  /external/conscrypt/platform/src/test/java/org/conscrypt/ct/
CTLogStoreImplTest.java 100 // Empty log file, used to mask fallback logs
120 CTLogInfo[] fallback = new CTLogInfo[] { LOGS[2], LOGS[3] }; local
122 CTLogStore store = new CTLogStoreImpl(userDir, systemDir, fallback);
138 // Logs 01 are present, log 2 is in the fallback and unused, log 3 is present but masked,
142 // Fallback logs are not used if the userDir is present.
159 // Test that fallback logs are used when the userDir doesn't exist.
161 store = new CTLogStoreImpl(doesntExist, doesntExist, fallback);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
GenderInfo.java 234 ULocale fallback = locale.getFallback(); local
237 // for all fallback locales too. If we get to the root locale,
239 result = fallback == null ? neutral : get(fallback);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
GenderInfo.java 232 ULocale fallback = locale.getFallback(); local
235 // for all fallback locales too. If we get to the root locale,
237 result = fallback == null ? neutral : get(fallback);
  /external/vogar/src/vogar/android/
AdbTarget.java 165 Command fallback = new Command(log, "adb", "push", local.getPath(), remote.getPath()); local
176 fallback.execute();
179 fallback.execute();
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
FailureListener.java 92 try (InputStreamSource fallback = mDevice.getBugreport()) {
94 LogDataType.BUGREPORT, fallback);
  /external/deqp/framework/delibs/decpp/
deSTLUtil.hpp 86 //! Return a reference to the value mapped to `key`, or `fallback` if not found.
90 const typename M::mapped_type& fallback)
93 return ptr == DE_NULL ? fallback : *ptr;
  /frameworks/av/media/libstagefright/foundation/
ABitReader.cpp 60 uint32_t ABitReader::getBitsWithFallback(size_t n, uint32_t fallback) {
61 uint32_t ret = fallback;
  /prebuilts/go/darwin-x86/src/crypto/sha1/
fallback_test.go 15 // Tests the fallback code path in case the optimized asm

Completed in 1572 milliseconds

12 3 4 5 6 7 8 91011>>