HomeSort by relevance Sort by last modified time
    Searched refs:FORMAT (Results 176 - 200 of 391) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/text/
NumberingSystem.java 57 * NumberingSystemRules section that will be used to format numbers using
75 * NumberingSystemRules section that will be used to format numbers using
180 * Returns the default numbering system for the default <code>FORMAT</code> locale.
181 * @see Category#FORMAT
184 return getInstance(ULocale.getDefault(Category.FORMAT));
288 * NumberingSystemRules section that will be used to format numbers using
304 * format numerals. If false, the numbering system is numeric and
RuleBasedNumberFormat.java 58 * <p>For larger numbers, we can use the preceding set of rules to format the ones place, and
74 * isolate the number's ones digit, format it using this same set of rules, and place the
156 * <p>The above syntax suffices only to format positive integers. To format negative numbers,
162 * where the base value would be. This rule is used to format all negative numbers. the
163 * &gt;&gt; token here means &quot;find the number's absolute value, format it with these
191 * are <em>public:</em> the caller can specify that they be used to format and parse numbers.
306 * on whether it is used to format a number's integral part (or the whole number) or a
307 * number's fractional part. Using a rule set to format a rule's fractional part makes it a
310 * <p>Which rule is used to format a number is defined according to one of the followin
1122 public String format(double number, String ruleSet) throws IllegalArgumentException { method in class:RuleBasedNumberFormat
1140 public String format(long number, String ruleSet) throws IllegalArgumentException { method in class:RuleBasedNumberFormat
1155 public StringBuffer format(double number, method in class:RuleBasedNumberFormat
1166 toAppendTo.append(format(number, defaultRuleSet)); method
1183 public StringBuffer format(long number, method in class:RuleBasedNumberFormat
1193 toAppendTo.append(format(number, defaultRuleSet)); method
1203 public StringBuffer format(BigInteger number, method in class:RuleBasedNumberFormat
1214 public StringBuffer format(java.math.BigDecimal number, method in class:RuleBasedNumberFormat
1225 public StringBuffer format(android.icu.math.BigDecimal number, method in class:RuleBasedNumberFormat
1888 private String format(double number, NFRuleSet ruleSet) { method in class:RuleBasedNumberFormat
1912 private String format(long number, NFRuleSet ruleSet) { method in class:RuleBasedNumberFormat
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
LocaleData.java 216 * Gets the LocaleData object associated with the default <code>FORMAT</code> locale
219 * @see Category#FORMAT
222 return LocaleData.getInstance(ULocale.getDefault(Category.FORMAT));
  /external/icu/icu4c/source/i18n/unicode/
dtfmtsym.h 51 * date/time formatter initialized with a default format pattern along with the
53 * created, clients may modify the format pattern using the setPattern function
57 * If clients decide to create a date-time formatter with a particular format
65 * replace the localized date-time format pattern characters with the ones that
82 * Construct a DateFormatSymbols object by loading format data from
97 * Construct a DateFormatSymbols object by loading format data from
100 * @param locale Locale to load format data from.
111 * Construct a DateFormatSymbols object by loading format data from
129 * Construct a DateFormatSymbols object by loading format data from
132 * @param locale Locale to load format data from
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
MessageFormat.java 20 import java.text.Format;
54 * <code>MessageFormat</code> differs from the other <code>Format</code>
71 * {@link #setFormatByArgumentName(String, Format)},
72 * {@link #format(Map, StringBuffer, FieldPosition)},
73 * {@link #format(String, Map)}, {@link #parseToMap(String, ParsePosition)},
83 * {@link #setFormatsByArgumentIndex(Format[])},
84 * {@link #setFormatByArgumentIndex(int, Format)},
87 * {@link #format(Object[], StringBuffer, FieldPosition)},
88 * {@link #format(String, Object[])},
93 * <p>The API {@link #format(Object, StringBuffer, FieldPosition)} ha
900 public final StringBuffer format(Object[] arguments, StringBuffer result, method in class:MessageFormat
961 public static String format(String pattern, Object... arguments) { method in class:MessageFormat
1019 public final StringBuffer format(Object arguments, StringBuffer result, method in class:MessageFormat
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CurrencyPluralInfo.java 22 * DecimalFormat to format currency plural,
30 * Following are the information needed for currency plural format and parse:
42 * Create a CurrencyPluralInfo object for the default <code>FORMAT</code> locale.
43 * @see Category#FORMAT
47 initialize(ULocale.getDefault(Category.FORMAT));
101 * Gets plural rules of this locale, used for currency plural format
112 * used for currency plural format
324 * The plural rule is used to format currency plural name,
ListFormatter.java 169 * Create a list formatter that is appropriate for the default FORMAT locale.
175 return getInstance(ULocale.getDefault(ULocale.Category.FORMAT));
179 * Format a list of objects.
182 * items to format. The toString() method is called on each.
186 public String format(Object... items) { method in class:ListFormatter
187 return format(Arrays.asList(items));
191 * Format a collection of objects. The toString() method is called on each.
194 * items to format. The toString() method is called on each.
198 public String format(Collection<?> items) { method in class:ListFormatter
199 return format(items, -1).toString()
206 FormattedListBuilder format(Collection<?> items, int index) { method in class:ListFormatter
    [all...]
NumberingSystem.java 58 * NumberingSystemRules section that will be used to format numbers using
77 * NumberingSystemRules section that will be used to format numbers using
185 * Returns the default numbering system for the default <code>FORMAT</code> locale.
186 * @see Category#FORMAT
190 return getInstance(ULocale.getDefault(Category.FORMAT));
298 * NumberingSystemRules section that will be used to format numbers using
316 * format numerals. If false, the numbering system is numeric and
RuleBasedNumberFormat.java 57 * <p>For larger numbers, we can use the preceding set of rules to format the ones place, and
73 * isolate the number's ones digit, format it using this same set of rules, and place the
155 * <p>The above syntax suffices only to format positive integers. To format negative numbers,
161 * where the base value would be. This rule is used to format all negative numbers. the
162 * &gt;&gt; token here means &quot;find the number's absolute value, format it with these
190 * are <em>public:</em> the caller can specify that they be used to format and parse numbers.
305 * on whether it is used to format a number's integral part (or the whole number) or a
306 * number's fractional part. Using a rule set to format a rule's fractional part makes it a
309 * <p>Which rule is used to format a number is defined according to one of the followin
1143 public String format(double number, String ruleSet) throws IllegalArgumentException { method in class:RuleBasedNumberFormat
1162 public String format(long number, String ruleSet) throws IllegalArgumentException { method in class:RuleBasedNumberFormat
1178 public StringBuffer format(double number, method in class:RuleBasedNumberFormat
1189 toAppendTo.append(format(number, defaultRuleSet)); method
1207 public StringBuffer format(long number, method in class:RuleBasedNumberFormat
1217 toAppendTo.append(format(number, defaultRuleSet)); method
1228 public StringBuffer format(BigInteger number, method in class:RuleBasedNumberFormat
1240 public StringBuffer format(java.math.BigDecimal number, method in class:RuleBasedNumberFormat
1252 public StringBuffer format(com.ibm.icu.math.BigDecimal number, method in class:RuleBasedNumberFormat
1924 private String format(double number, NFRuleSet ruleSet) { method in class:RuleBasedNumberFormat
1948 private String format(long number, NFRuleSet ruleSet) { method in class:RuleBasedNumberFormat
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocaleData.java 229 * Gets the LocaleData object associated with the default <code>FORMAT</code> locale
232 * @see Category#FORMAT
236 return LocaleData.getInstance(ULocale.getDefault(Category.FORMAT));
  /frameworks/base/core/java/android/view/
KeyCharacterMap.java 625 case Character.FORMAT:
  /hardware/qcom/audio/legacy/libalsa-intf/
alsa_audio.h 30 unsigned format; member in struct:pcm
52 #define FORMAT(v) SNDRV_PCM_FORMAT_##v
135 const char *get_format_name(int format);
136 const char *get_format_desc(int format);
252 __u32 format; member in struct:snd_codec
  /libcore/ojluni/src/main/java/java/util/
Locale.java 477 * @see java.text.Format
2060 MessageFormat format = new MessageFormat(listCompositionPattern); local
2070 MessageFormat format = new MessageFormat(listPattern); local
    [all...]
Formatter.java 58 * An interpreter for printf-style format strings. This class provides support
70 * {@code printf}. Although the format strings are similar to C, some
74 * thrown. In C inapplicable flags are silently ignored. The format strings
86 * formatter.format("%4$2s %3$2s %2$2s %1$2s", "a", "b", "c", "d")
92 * formatter.format(Locale.FRANCE, "e = %+10.4f", Math.E);
95 * // The '(' numeric flag may be used to format negative numbers with
98 * formatter.format("Amount gained or lost since last statement: $ %(,.2f",
108 * System.out.format("Local time: %tT", Calendar.getInstance());
118 * method {@link String#format(String,Object...) String.format}
2425 public Formatter format(String format, Object ... args) { method in class:Formatter
2464 public Formatter format(Locale l, String format, Object ... args) { method in class:Formatter
2537 private final String format; field in class:Formatter.FormatSpecifierParser
    [all...]
Calendar.java 198 * The date or time format strings are not part of the definition of a
201 * to format dates.
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
LocaleTest.java     [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_surface.c 37 swzsurf_format(gl_format format)
39 switch (format) {
76 surf2d_format(gl_format format)
78 switch (format) {
115 rect_format(gl_format format)
117 switch (format) {
154 sifm_format(gl_format format)
156 switch (format) {
235 BEGIN_NV04(push, NV04_SSWZ(FORMAT), 2);
236 PUSH_DATA (push, swzsurf_format(dst->format) |
    [all...]
  /libcore/ojluni/src/main/java/java/text/
DecimalFormatSymbols.java 58 * to format numbers. <code>DecimalFormat</code> creates for itself an instance of
81 initialize( Locale.getDefault(Locale.Category.FORMAT) );
130 return getInstance(Locale.getDefault(Locale.Category.FORMAT));
314 * negative format is specified, one is formed by prefixing
315 * minusSign to the positive format.
324 * negative format is specified, one is formed by prefixing
325 * minusSign to the positive format.
335 * negative format is specified, one is formed by prefixing
336 * minusSign to the positive format.
    [all...]
SimpleDateFormat.java 71 * with a default format pattern. You may modify the format pattern
289 * 00 and 59. The format is locale independent and digits must be taken
294 * For formatting, the RFC 822 4-digit time zone format is used:
307 * The number of pattern letters designates the format for both formatting
396 * It is recommended to create separate format instances for each thread.
397 * If multiple threads access a format concurrently, it must be synchronized
400 * @see <a href="http://java.sun.com/docs/books/tutorial/i18n/format/simpleDateFormat.html">Java Tutorial</a>
426 * When streaming out this class, the most recent format
449 * The minus sign to be used with format and parse
942 public StringBuffer format(Date date, StringBuffer toAppendTo, method in class:SimpleDateFormat
950 private StringBuffer format(Date date, StringBuffer toAppendTo, method in class:SimpleDateFormat
1006 format((Date)obj, sb, delegate); method
1009 format(new Date(((Number)obj).longValue()), sb, delegate); method
    [all...]
  /frameworks/av/services/audioflinger/
AudioMixer.h 82 FORMAT = 0x4001,
114 // The failure could be because of an invalid channelMask or format, or that
117 audio_format_t format, int sessionId);
135 static inline bool isValidPcmTrackFormat(audio_format_t format) {
136 switch (format) {
159 // sample format is not explicitly specified, and is assumed to be AUDIO_FORMAT_PCM_16_BIT
196 uint8_t unused_padding; // formerly format, was always 16
244 audio_format_t mMixerFormat; // output mix format: AUDIO_FORMAT_PCM_(FLOAT|16_BIT)
245 audio_format_t mFormat; // input track format
246 audio_format_t mMixerInFormat; // mix internal format AUDIO_FORMAT_PCM_(FLOAT|16_BIT
    [all...]
  /frameworks/av/services/audioflinger/tests/
test-mixer.cpp 48 fprintf(stderr, " -P # frames provided per call to resample() in CSV format\n");
64 info.format = SF_FORMAT_WAV | (isBufferFloat ? SF_FORMAT_FLOAT : SF_FORMAT_PCM_16);
264 AudioMixer::FORMAT,
318 // Aux buffer is always in q4_27 format for now.
  /cts/tests/camera/src/android/hardware/camera2/cts/
ImageReaderTest.java 63 * <p>YUV_420_888: flexible YUV420, it is mandatory format for camera. </p>
64 * <p>JPEG: used for JPEG still capture, also mandatory format. </p>
66 * <p>TODO: Add more format tests? </p>
321 * resolution and format supported.
348 for (int format : YUVFormats) {
349 if (CameraTestUtils.contains(supportedFormats, format)) {
350 supportedYUVFormats.add(format);
362 for (int format : supportedYUVFormats) {
364 mStaticInfo.getAvailableSizesForFormatChecked(format,
378 yuvReader = createImageReader(captureSz, format, MAX_NUM_IMAGES
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
ULocaleTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ULocaleTest.java     [all...]
  /external/clang/utils/
FuzzTest 185 being executed. The syntax is "%(VARIABLE)FORMAT" where FORMAT is a standard
186 printf format, and VARIABLE is one of:

Completed in 1969 milliseconds

1 2 3 4 5 6 78 91011>>