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

1 2 3 4

  /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;
  /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...]
  /libcore/luni/src/test/java/tests/api/java/util/
CalendarTest.java 810 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
816 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
824 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
830 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
840 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
851 assertEquals(cal.getDisplayName(field, Calendar.SHORT,
860 .getDisplayName(field, Calendar.SHORT, locale));
869 cal.getDisplayName(-1, Calendar.SHORT, Locale.US);
893 cal.getDisplayName(Calendar.MONTH, Calendar.SHORT, null);
899 cal.getDisplayName(-1, Calendar.SHORT, null)
    [all...]
  /libcore/luni/src/main/java/java/text/
DateFormat.java 39 * styles. The formatting styles include FULL, LONG, MEDIUM, and SHORT. More
94 * methods to control the length of the result; from SHORT to MEDIUM to LONG to
97 * <li>SHORT is completely numeric, such as 12.13.52 or 3:30pm
164 * The format style constant defining the short style.
166 public final static int SHORT = 3;
434 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
438 * if {@code style} is not one of SHORT, MEDIUM, LONG, FULL, or
451 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
455 * if {@code style} is not one of SHORT, MEDIUM, LONG, FULL, or
480 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT
    [all...]
  /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/chromium/third_party/icu/source/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...]
  /external/icu4c/test/intltest/
dtfmtrtts.cpp 194 case DateFormat::SHORT: return "SHORT";
234 for(style = DateFormat::FULL; style <= DateFormat::SHORT; ++style) {
247 for(style = DateFormat::FULL; style <= DateFormat::SHORT; ++style) {
260 for(int32_t dstyle = DateFormat::FULL; dstyle <= DateFormat::SHORT; ++dstyle) {
261 for(int32_t tstyle = DateFormat::FULL; tstyle <= DateFormat::SHORT; ++tstyle) {
tztest.cpp 541 * Certain short zone IDs, used since 1.1.x, are incorrect.
790 errln(UnicodeString("FAIL: Could not find short ID zone ") + zone1);
    [all...]
  /libcore/luni/src/main/java/java/util/
Calendar.java 673 * Requests both {@code SHORT} and {@code LONG} styles in the map returned by
680 * Requests short names (such as "Jan") from
684 public static final int SHORT = 1;
    [all...]
TimeZone.java 68 * The short display name style, such as {@code PDT}. Requests for this
71 public static final int SHORT = 0;
157 * Returns the {@link #SHORT short} or {@link #LONG long} name of this time
163 * @param style either {@link TimeZone#LONG} or {@link TimeZone#SHORT}.
167 if (style != SHORT && style != LONG) {
  /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 */
  /libcore/luni/src/test/java/libcore/java/text/
OldDateFormatTest.java 90 DateFormat.SHORT, DateFormat.SHORT, Locale.US);
108 DateFormat.SHORT, DateFormat.SHORT, Locale.US);
  /frameworks/base/core/java/android/widget/
DateTimeView.java 207 return DateFormat.getDateInstance(DateFormat.SHORT);
213 return DateFormat.getDateInstance(DateFormat.SHORT);
RemoteViews.java 277 static final int SHORT = 3;
317 case SHORT:
318 this.value = (short)in.readInt();
372 case SHORT:
373 out.writeInt((Short) this.value);
416 case SHORT:
417 return short.class;
794 * Call a method taking one short on a view in the layout for this RemoteViews.
800 public void setShort(int viewId, String methodName, short value) {
801 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())));
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadAdapter.java 73 mDateFormat = DateFormat.getDateInstance(DateFormat.SHORT);
74 mTimeFormat = DateFormat.getTimeInstance(DateFormat.SHORT);
  /external/chromium/third_party/icu/public/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...]

Completed in 1014 milliseconds

1 2 3 4