HomeSort by relevance Sort by last modified time
    Searched refs:SHORT (Results 1 - 25 of 73) sorted by null

1 2 3

  /dalvik/hit/src/com/android/hit/
Types.java 28 public static final int SHORT = 9;
45 case 'S': return 2; // short
55 case SHORT: return 2;
72 case 'S': return "short";
82 case SHORT: return "short";
  /dalvik/dx/src/com/android/dx/rop/cst/
CstShort.java 23 * Constants of type {@code short}.
28 public static final CstShort VALUE_0 = make((short) 0);
34 * @param value the {@code short} value
37 public static CstShort make(short value) {
46 * @param value the value, which must be in range for a {@code short}
50 short cast = (short) value;
53 throw new IllegalArgumentException("bogus short value: " +
63 * @param value the {@code short} value
65 private CstShort(short value)
    [all...]
CstType.java 55 /** {@code non-null;} instance corresponding to the class {@code Short} */
56 public static final CstType SHORT = intern(Type.SHORT_CLASS);
82 /** {@code non-null;} instance corresponding to the type {@code short[]} */
112 case Type.BT_SHORT: return SHORT;
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
DateFormatTest.java 117 DateFormat.SHORT, DateFormat.SHORT, Locale.US);
141 DateFormat.SHORT, DateFormat.SHORT, Locale.US);
193 DateFormat f1 = DateFormat.getDateTimeInstance(DateFormat.SHORT,
194 DateFormat.SHORT, locales[i]);
252 .getDateInstance(DateFormat.SHORT);
255 DateFormat.SHORT, Locale.getDefault())));
308 DateFormat.SHORT, Locale.GERMAN);
395 testDateTime(DateFormat.SHORT, DateFormat.SHORT)
    [all...]
  /external/zlib/contrib/masm686/
match.asm 163 jl SHORT LastMatchGood
182 jl SHORT LookaheadLess
209 jg SHORT LimitPositive
236 jmp SHORT LoopEntry
271 jnz SHORT LookupLoop
276 jnz SHORT LookupLoop
313 jnz SHORT LeaveLoopCmps
317 jnz SHORT LeaveLoopCmps4
320 jnz SHORT LoopCmps
329 jnz SHORT LenLower
    [all...]
  /dalvik/libcore/text/src/main/java/java/text/
DateFormat.java 44 * styles. The formatting styles include FULL, LONG, MEDIUM, and SHORT. More
99 * methods to control the length of the result; from SHORT to MEDIUM to LONG to
102 * <li>SHORT is completely numeric, such as 12.13.52 or 3:30pm
169 * The format style constant defining the short style.
171 public final static int SHORT = 3;
442 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
446 * if {@code style} is not one of SHORT, MEDIUM, LONG, FULL, or
459 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
463 * if {@code style} is not one of SHORT, MEDIUM, LONG, FULL, or
491 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT
    [all...]
  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/util/
LocaleData.java 174 case DateFormat.SHORT:
188 case DateFormat.SHORT:
  /hardware/ti/omap3/dspbridge/inc/
dbtype.h 108 typedef unsigned short WORD; /* w */
112 typedef short SHORT; /* s */
116 typedef unsigned short USHORT; /* us */
132 typedef volatile unsigned short REG_UWORD16;
146 typedef unsigned short WCHAR; /* wch */
174 typedef unsigned short WCHAR; /* wch */
  /hardware/ti/omap3/dspbridge/libbridge/inc/
dbtype.h 108 typedef unsigned short WORD; /* w */
112 typedef short SHORT; /* s */
116 typedef unsigned short USHORT; /* us */
132 typedef volatile unsigned short REG_UWORD16;
146 typedef unsigned short WCHAR; /* wch */
174 typedef unsigned short WCHAR; /* wch */
  /external/icu4c/test/intltest/
dtfmtrtts.cpp 189 case DateFormat::SHORT: return "SHORT";
229 for(style = DateFormat::FULL; style <= DateFormat::SHORT; ++style) {
242 for(style = DateFormat::FULL; style <= DateFormat::SHORT; ++style) {
255 for(int32_t dstyle = DateFormat::FULL; dstyle <= DateFormat::SHORT; ++dstyle) {
256 for(int32_t tstyle = DateFormat::FULL; tstyle <= DateFormat::SHORT; ++tstyle) {
tztest.cpp 532 * Certain short zone IDs, used since 1.1.x, are incorrect.
781 errln(UnicodeString("FAIL: Could not find short ID zone ") + zone1);
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 58 /** basic type constant for {@code short} */
91 /** {@code non-null;} instance representing {@code short} */
92 public static final Type SHORT = new Type("S", BT_SHORT);
115 putIntern(SHORT);
197 * {@code non-null;} instance representing {@code java.lang.Short}; the
201 public static final Type SHORT_CLASS = intern("Ljava/lang/Short;");
234 /** {@code non-null;} instance representing {@code short[]} */
235 public static final Type SHORT_ARRAY = SHORT.getArrayType();
502 case BT_SHORT: return "short";
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
StubMethodAdapter.java 90 case Type.SHORT:
111 case Type.SHORT:
160 case Type.SHORT:
  /bionic/libc/stdio/
vfscanf.c 53 #define SHORT 0x00004 /* h: short */
117 static short basefix[17] =
169 flags |= SHORT;
275 else if (flags & SHORT)
276 *va_arg(ap, short *) = nread;
585 else if (flags & SHORT)
586 *va_arg(ap, short *) = res;
  /external/qemu/distrib/sdl-1.2.12/src/joystick/os2/
joyos2.h 73 typedef SHORT GAME_POS; /* some data formats require signed values */
  /external/sonivox/arm-wt-22k/lib_src/
dls.h 248 SHORT sFineTune; /* Fine Tune in log tuning */
eas_mdls.h 43 #define SHORT EAS_I16
  /dalvik/libcore/luni/src/main/java/java/util/
TimeZone.java 82 * The SHORT display name style.
84 public static final int SHORT = 0;
238 * Gets the specified style of name ({@code LONG} or {@code SHORT}) for this {@code TimeZone} for
246 * either {@code LONG} or {@code SHORT}.
254 * Gets the specified style of name ({@code LONG} or {@code SHORT}) for this {@code TimeZone} for
262 * either LONG or SHORT.
264 * either {@code LONG} or {@code SHORT}.
274 if (style == SHORT || style == LONG) {
  /frameworks/base/core/java/android/widget/
DateTimeView.java 207 return DateFormat.getDateInstance(DateFormat.SHORT);
213 return DateFormat.getDateInstance(DateFormat.SHORT);
RemoteViews.java 276 static final int SHORT = 3;
316 case SHORT:
317 this.value = (short)in.readInt();
371 case SHORT:
372 out.writeInt((Short) this.value);
415 case SHORT:
416 return short.class;
785 * Call a method taking one short on a view in the layout for this RemoteViews.
791 public void setShort(int viewId, String methodName, short value) {
792 addAction(new ReflectionAction(viewId, methodName, ReflectionAction.SHORT, value))
    [all...]
  /packages/apps/Phone/src/com/android/phone/
DataUsageListener.java 188 DateFormat.getDateInstance(DateFormat.SHORT).format(mEnd.getTime())));
208 DateFormat.getDateInstance(DateFormat.SHORT).format(mEnd.getTime())));
  /external/icu4c/i18n/unicode/
datefmt.h 96 * DateFormat::createDateInstance( DateFormat::SHORT, Locale::getFrance());
111 * result; from SHORT to MEDIUM to LONG to FULL. The exact result depends on the
114 * <li> SHORT is completely numeric, such as 12/13/52 or 3:30pm
145 * in the resource occurs in the order full, long, medium, short.
195 SHORT = kShort,
424 * Create a default date/time formatter that uses the SHORT style for both
437 * SHORT for "h:mm a" in the US locale. Relative
451 * SHORT for "M/d/yy" in the US locale.
464 * For example, SHORT for "M/d/yy" in the US locale.
466 * For example, SHORT for "h:mm a" in the US locale. Relativ
    [all...]
timezone.h 516 * Selector for short display name
519 SHORT = 1,
562 * @param style either <code>LONG</code> or <code>SHORT</code>
576 * @param style either <code>LONG</code> or <code>SHORT</code>
    [all...]
  /external/opencore/codecs_v2/audio/mp3/dec/src/
pvmp3_imdct_synth.cpp 57 The number of windowed samples is 12 for short blocks, and 36 for long
67 short windows
68 Each of the three short blocks is windowed separately.
69 The windowed short blocks must be overlapped and concatenated.
120 #define SHORT 2
266 case SHORT:
  /external/qemu/distrib/sdl-1.2.12/src/hermes/
x86p_16.asm 28 ; check short
33 .L1 ; short loop
85 jmp SHORT .L6
138 ; check short
143 .L1 ; short loop
234 jmp SHORT .L6
246 ; check short
251 .L1 ; short loop
307 jmp SHORT .L6
364 ; check short
    [all...]

Completed in 649 milliseconds

1 2 3