HomeSort by relevance Sort by last modified time
    Searched defs:SHORT (Results 76 - 100 of 605) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/python/cpython3/Lib/ctypes/
wintypes.py 29 SHORT = ctypes.c_short
105 _fields_ = [('Left', SHORT),
106 ('Top', SHORT),
107 ('Right', SHORT),
108 ('Bottom', SHORT)]
112 _fields_ = [('X', SHORT),
113 ('Y', SHORT)]
191 PSHORT = ctypes.POINTER(SHORT)
  /external/sonivox/arm-wt-22k/lib_src/
eas_mdls.h 43 #define SHORT EAS_I16
  /libcore/ojluni/src/main/java/sun/invoke/util/
Wrapper.java 33 SHORT ( Short.class, short.class, 'S', (Short)(short)0, new short[0], Format.signed( 16)),
95 SHORT = SIGNED | (16 << SIZE_SHIFT) | (1 << SLOT_SHIFT),
121 /** Is the wrapped type one of int, boolean, byte, char, or short? */
123 /* Is the wrapped value a signed integral type (one of byte, short, int, or long)? */
526 case 'S': return Short.valueOf((short) xn.intValue())
    [all...]
  /external/desugar/java/com/google/devtools/common/options/
OptionsParser.java 279 * The verbosity with which option help messages are displayed: short (just
283 public enum HelpVerbosity { LONG, MEDIUM, SHORT }
288 * intuitive short description for the options. Options of the same category (see {@link
294 * {@code short}, the options are just enumerated.
360 * intuitive short description for the options. Options of the same category (see {@link
367 * {@code short}, the options are just enumerated.
408 * intuitive short description for the options.
457 * intuitive short description for the options.
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneGenericNames.java 60 LOCATION ("LONG", "SHORT"),
62 SHORT ();
208 case SHORT:
321 * @param type the generic name type, either LONG or SHORT
327 assert(type == GenericNameType.LONG || type == GenericNameType.SHORT);
576 isLong ? GenericNameType.LONG : GenericNameType.SHORT);
734 // conflict not only for long standard names, but short standard names too.
735 // These short names (found in zh_Hant) should be gone once we clean
736 // up CLDR time zone display name data. Once the short name conflict
808 nameType = GenericNameType.SHORT;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
DataRecord.java 222 public static final byte SHORT = 2;
223 public static final String[] names = { "PLURALIZED", "MEDIUM", "SHORT" };
304 public static final byte SHORT = 1;
306 public static final String[] names = { "NONE", "SHORT", "FULL" };
  /external/icu/android_icu4j/src/main/java/android/icu/lang/
UProperty.java 832 * All properties and values have a long name. Most have a short
834 * beyond the long and short name, which would be indicated by
843 * Most properties and values have a short name; those that do
846 static final int SHORT = 0;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RelativeDateTimeFormatter.java 71 * In the future, we may add more forms, such as abbreviated/short forms
90 SHORT,
508 DateFormatSymbols.WIDE, DateFormatSymbols.SHORT, DateFormatSymbols.NARROW
    [all...]
DateFormat.java 50 * <li>The formatting styles include FULL, LONG, MEDIUM, and SHORT. More detail and examples of using these styles are
91 * You can pass in different options to these factory methods to control the length of the result; from SHORT to MEDIUM
94 * <li>SHORT is completely numeric, such as 12.13.52 or 3:30pm
370 * name when VVVV is specified, and the short standard or daylight
    [all...]
DateFormatSymbols.java 144 public static final int SHORT = 3;
360 * Short month strings. For example: "Jan", "Feb", etc. An array of
386 * Standalone short month strings. For example: "Jan", "Feb", etc. An array of
413 * CLDR-style format abbreviated (not short) weekday strings,
423 * CLDR-style format short weekday strings, for example: "Su", "Mo", etc.
451 * CLDR-style standalone abbreviated (not short) weekday strings,
461 * CLDR-style standalone short weekday strings, for example: "Sun", "Mon", etc.
565 * <li><code>zoneStrings[i][2]</code> - short name of zone in
569 * <li><code>zoneStrings[i][4]</code> - short name of zone in daylight
573 * <li><code>zoneStrings[i][7]</code> - short generic of zone</li
    [all...]
MeasureFormat.java 64 * ULocale.FRENCH, FormatWidth.SHORT);
170 SHORT(ListFormatter.Style.DURATION_SHORT, NumberFormat.ISOCURRENCYSTYLE),
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
dtfmtsym.h 255 * Gets short month strings. For example: "Jan", "Feb", etc.
258 * @return the short month strings. (DateFormatSymbols retains ownership.)
264 * Sets short month strings. For example: "Jan", "Feb", etc.
266 * @param shortMonths the new short month strings. (not adopted; caller retains ownership)
296 * Short width is currently only supported for weekday names.
299 SHORT,
349 * misleading; it does not get the CLDR-style "short" weekday strings, e.g. "Su", "Mo", etc.)
358 * misleading; it does not set the CLDR-style "short" weekday strings, e.g. "Su", "Mo", etc.)
369 * @param width The width of returned strings, either WIDE, ABBREVIATED, SHORT, or NARROW
380 * @param width The width of returned strings, either WIDE, ABBREVIATED, SHORT, or NARRO
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DateFormat.java 37 * styles. The formatting styles include FULL, LONG, MEDIUM, and SHORT. More
74 * result; from SHORT to MEDIUM to LONG to FULL. The exact result depends
76 * <ul><li>SHORT is completely numeric, such as 12.13.52 or 3:30pm
137 java.text.DateFormat.SHORT,
138 java.text.DateFormat.SHORT,
371 * name when VVVV is specified, and the short standard or daylight
617 * Constant for short style pattern.
620 public static final int SHORT = 3;
656 public static final int RELATIVE_SHORT = RELATIVE | SHORT;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneGenericNames.java 58 LOCATION ("LONG", "SHORT"),
60 SHORT ();
206 case SHORT:
319 * @param type the generic name type, either LONG or SHORT
325 assert(type == GenericNameType.LONG || type == GenericNameType.SHORT);
574 isLong ? GenericNameType.LONG : GenericNameType.SHORT);
732 // conflict not only for long standard names, but short standard names too.
733 // These short names (found in zh_Hant) should be gone once we clean
734 // up CLDR time zone display name data. Once the short name conflict
806 nameType = GenericNameType.SHORT;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DataRecord.java 220 public static final byte SHORT = 2;
221 public static final String[] names = { "PLURALIZED", "MEDIUM", "SHORT" };
302 public static final byte SHORT = 1;
304 public static final String[] names = { "NONE", "SHORT", "FULL" };
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
UProperty.java 939 * All properties and values have a long name. Most have a short
941 * beyond the long and short name, which would be indicated by
951 * Most properties and values have a short name; those that do
955 static final int SHORT = 0;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RelativeDateTimeFormatter.java 70 * In the future, we may add more forms, such as abbreviated/short forms
94 SHORT,
565 DateFormatSymbols.WIDE, DateFormatSymbols.SHORT, DateFormatSymbols.NARROW
    [all...]
DateFormat.java 49 * <li>The formatting styles include FULL, LONG, MEDIUM, and SHORT. More detail and examples of using these styles are
90 * You can pass in different options to these factory methods to control the length of the result; from SHORT to MEDIUM
93 * <li>SHORT is completely numeric, such as 12.13.52 or 3:30pm
402 * name when VVVV is specified, and the short standard or daylight
    [all...]
DateFormatSymbols.java 148 public static final int SHORT = 3;
371 * Short month strings. For example: "Jan", "Feb", etc. An array of
397 * Standalone short month strings. For example: "Jan", "Feb", etc. An array of
424 * CLDR-style format abbreviated (not short) weekday strings,
434 * CLDR-style format short weekday strings, for example: "Su", "Mo", etc.
462 * CLDR-style standalone abbreviated (not short) weekday strings,
472 * CLDR-style standalone short weekday strings, for example: "Sun", "Mon", etc.
576 * <li><code>zoneStrings[i][2]</code> - short name of zone in
580 * <li><code>zoneStrings[i][4]</code> - short name of zone in daylight
584 * <li><code>zoneStrings[i][7]</code> - short generic of zone</li
    [all...]
MeasureFormat.java 63 * ULocale.FRENCH, FormatWidth.SHORT);
176 SHORT(ListFormatter.Style.DURATION_SHORT, NumberFormat.ISOCURRENCYSTYLE),
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
ASTParserConstants.java 108 int SHORT = 75;
354 "\"short\"",
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
ASTParserConstants.java 108 int SHORT = 50;
329 "\"short\"",
  /external/lzma/CPP/Common/
MyWindows.h 30 typedef short SHORT;
31 typedef unsigned short USHORT;
34 typedef unsigned short WORD;
35 typedef short VARIANT_BOOL;
150 typedef unsigned short VARTYPE;
165 SHORT iVal;
  /external/turbine/java/com/google/turbine/parse/
Token.java 118 SHORT("short"),
  /libcore/ojluni/src/main/java/java/util/
Date.java     [all...]

Completed in 849 milliseconds

1 2 34 5 6 7 8 91011>>