/art/test/138-duplicate-classes-check2/ |
run | 17 # We want to run as no-dex-file-fallback to confirm that even though the -ex file has a symbolic 19 exec ${RUN} --runtime-option -Xno-dex-file-fallback "${@}"
|
/art/test/134-nodex2oat-nofallback/ |
run | 19 # Make sure we cannot run without an oat file without fallback. 20 ${RUN} ${flags} --runtime-option -Xnodex2oat --runtime-option -Xno-dex-file-fallback
|
/development/apps/Fallback/src/com/android/fallback/ |
Fallback.java | 17 package com.android.fallback; 26 public class Fallback extends Activity { 30 setContentView(R.layout.fallback);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/ |
BasicDurationFormatterFactory.java | 27 private DateFormatter fallback; field in class:BasicDurationFormatterFactory 73 * Set a fallback formatter for durations over a given limit. 75 * @param fallback the fallback formatter to use, or null 78 public DurationFormatterFactory setFallback(DateFormatter fallback) { 79 boolean doReset = fallback == null 80 ? this.fallback != null 81 : !fallback.equals(this.fallback); 83 this.fallback = fallback [all...] |
BasicDurationFormatter.java | 19 private DateFormatter fallback; field in class:BasicDurationFormatter 26 * builder, and fallback. It's up to the caller to ensure that 31 DateFormatter fallback, 35 this.fallback = fallback; 41 DateFormatter fallback, 47 this.fallback = fallback; 76 DateFormatter newFallback = fallback == null 78 : fallback.withLocale(locName) [all...] |
DurationFormatterFactory.java | 40 * Set a fallback formatter for durations over a given limit. 42 * @param fallback the fallback formatter to use, or null 45 public DurationFormatterFactory setFallback(DateFormatter fallback); 48 * Set a fallback limit for durations over a given limit. 50 * @param fallbackLimit the fallback limit to use, or 0 if none is desired.
|
/external/harfbuzz_ng/src/ |
hb-shaper-list.hh | 54 HB_SHAPER_IMPLEMENT (fallback) /* <--- This should be last. */
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
CurrencyData.java | 91 private final boolean fallback; field in class:CurrencyData.DefaultInfo 93 private DefaultInfo(boolean fallback) { 94 this.fallback = fallback; 97 public static final CurrencyDisplayInfo getWithFallback(boolean fallback) { 98 return fallback ? FALLBACK_INSTANCE : NO_FALLBACK_INSTANCE; 103 return fallback ? isoCode : null; 108 return fallback ? isoCode : null; 113 return fallback ? isoCode : null; 133 if (fallback) { [all...] |
/external/icu/icu4c/source/test/cintltst/ |
ncnvfbts.h | 24 const char *codepage, UBool fallback, const int32_t *expectOffsets); 26 const char *codepage, UBool fallback, const int32_t *expectOffsets);
|
/external/strace/ |
git-version-gen | 89 --fallback VERSION 90 fallback version to use if \"git --version\" fails 98 fallback= 105 --fallback) shift; fallback="$1";; 191 elif test "x$fallback" = x || git --version >/dev/null 2>&1; then 194 v=$fallback
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
MismatchedTokenException.pm | 10 fallback => 1
|
/frameworks/base/media/java/android/media/ |
Utils.java | 199 static Size parseSize(Object o, Size fallback) { 205 return fallback; 208 return fallback; 211 static int parseIntSafely(Object o, int fallback) { 213 return fallback; 221 return fallback; 224 return fallback; 227 static Range<Integer> parseIntRange(Object o, Range<Integer> fallback) { 241 return fallback; 245 return fallback; [all...] |
/libcore/json/src/test/java/org/json/ |
SelfUseTest.java | 90 @Override public boolean optBoolean(int index, boolean fallback) { 92 return super.optBoolean(index, fallback); 94 @Override public double optDouble(int index, double fallback) { 96 return super.optDouble(index, fallback); 98 @Override public long optLong(int index, long fallback) { 100 return super.optLong(index, fallback); 102 @Override public String optString(int index, String fallback) { 104 return super.optString(index, fallback); 106 @Override public int optInt(int index, int fallback) { 108 return super.optInt(index, fallback); [all...] |
/external/clang/utils/ |
CaptureCmd | 38 fallback = os.getenv('CAPTURE_CMD_FALLBACK') 57 if fallback: 65 os.execv(fallback, sys.argv)
|
/art/test/119-noimage-patchoat/ |
run | 36 # Make sure we cannot run without an image file without fallback. 37 echo "Run -Xnoimage-dex2oat -Xpatchoat:/system/bin/false -Xno-dex-file-fallback" 38 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xpatchoat:${false_bin} --runtime-option -Xno-dex-file-fallback
|
/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 | 428 * can be coerced to a boolean, or {@code fallback} otherwise. 430 public boolean optBoolean(String name, boolean fallback) { 433 return result != null ? result : fallback; 462 * can be coerced to a double, or {@code fallback} otherwise. 464 public double optDouble(String name, double fallback) { 467 return result != null ? result : fallback; 496 * can be coerced to an int, or {@code fallback} otherwise. 498 public int optInt(String name, int fallback) { 501 return result != null ? result : fallback; 533 * can be coerced to a long, or {@code fallback} otherwise. Note that JSON represent [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/ |
PKCS1Encoding.java | 38 private byte[] fallback = null; field in class:PKCS1Encoding 67 * Constructor for decryption with a fixed plaintext length and a fallback 72 * @param fallback 73 * The fallback value, we don't do an arraycopy here. 77 byte[] fallback) 81 this.fallback = fallback; 82 this.pLen = fallback.length; 292 if (this.fallback == null) 299 random = fallback; [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/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/ |
ICUCurrencyDisplayInfoProvider.java | 45 private final boolean fallback; field in class:ICUCurrencyDisplayInfoProvider.ICUCurrencyDisplayInfo 52 public ICUCurrencyDisplayInfo(ICUResourceBundle rb, boolean fallback) { 53 this.fallback = fallback; 78 if (!fallback) { 89 return fallback ? isoCode : null; 94 // See http://unicode.org/reports/tr35/#Currencies, especially the fallback rule. 100 if (!fallback) { 112 return fallback ? getName(isoCode) : null; 201 return fallback ? CurrencySpacingInfo.DEFAULT : null [all...] |
/external/clang/tools/clang-format/ |
clang-format.py | 64 command.extend(['-fallback-style', fallback_style])
|
/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...] |
/art/test/118-noimage-dex2oat/ |
run | 53 # Make sure we cannot run without an oat file without fallback. 54 echo "Run -Xnoimage-dex2oat -Xno-dex-file-fallback" 55 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat --runtime-option -Xno-dex-file-fallback
|
/external/e2fsprogs/lib/ext2fs/ |
llseek.c | 99 goto fallback; 108 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);
|