/libcore/ojluni/src/main/java/java/util/ |
GregorianCalendar.java | 587 this(TimeZone.getDefaultRef(), Locale.getDefault(Locale.Category.FORMAT)); 598 this(zone, Locale.getDefault(Locale.Category.FORMAT)); [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
MediaScannerTest.java | 138 values.put(MediaStore.Files.FileColumns.FORMAT, MtpConstants.FORMAT_UNDEFINED);
|
/cts/tests/tests/view/src/android/view/cts/ |
KeyEventTest.java | 502 mKeyEvent = new KeyEvent(KeyEvent.ACTION_DOWN, Character.FORMAT);
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
nouveau_video.c | 621 BEGIN_NV04(push, NV31_MPEG(FORMAT), 2); 672 u_sampler_view_default_template(&sv_templ, buf->resources[i], buf->resources[i]->format); 674 if (util_format_get_nr_components(buf->resources[i]->format) == 1) 705 unsigned nr_components = util_format_get_nr_components(buf->resources[i]->format); 712 u_sampler_view_default_template(&sv_templ, buf->resources[i], buf->resources[i]->format); 746 surf_templ.format = buf->resources[i]->format; 794 * and it only supports the NV12 format 820 templ.format = PIPE_FORMAT_R8_UNORM; 834 templ.format = PIPE_FORMAT_R8G8_UNORM [all...] |
/frameworks/base/core/java/android/provider/ |
MediaStore.java | 541 * The MTP format code of the file 545 public static final String FORMAT = "format"; [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidXmlEditor.java | 140 * formatting. A format operation should completely preserve the semantics of the XML [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
Calendar.java | 175 * <p>The date or time format strings are not part of the definition of a 178 * to format dates. [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
Calendar.java | 174 * <p>The date or time format strings are not part of the definition of a 177 * to format dates. [all...] |
/prebuilts/devtools/tools/lib/ |
monkeyrunner.jar | |
/prebuilts/gradle-plugin/com/android/tools/monkeyrunner/24.4.0-beta6/ |
monkeyrunner-24.4.0-beta6.jar | |
/prebuilts/gradle-plugin/com/android/tools/monkeyrunner/24.5.0/ |
monkeyrunner-24.5.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/monkeyrunner/25.0.0-alpha1/ |
monkeyrunner-25.0.0-alpha1.jar | |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
DateTimePatternGenerator.java | 41 * This class provides flexible generation of date format patterns, like 72 * Construct a flexible generator according to data for the default <code>FORMAT</code> locale. 73 * @see Category#FORMAT 76 return getInstance(ULocale.getDefault(Category.FORMAT)); 435 return MessageFormat.format(getDateTimeFormat(), new Object[]{timePattern, datePattern}); 516 // base + pattern combination was derived from either (a) a canonical item, (b) a standard format, or 693 * The date time format is a message format pattern used to compose date and 706 * @param dateTimeFormat message format pattern, where {1} will be replaced by the date [all...] |
MeasureFormat.java | 55 * <p>To format a Measure object, first create a formatter 57 * object's format or formatMeasures methods. 66 * System.out.println(fmtFr.format(measure)); 71 * System.out.println(fmtFr.format(measureF)); 204 * Create a format from the locale, formatWidth, and format. 215 * Create a format from the {@link java.util.Locale} and formatWidth. 226 * Create a format from the locale, formatWidth, and format. 230 * @param format This is defensively copied 292 public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos) { method in class:MeasureFormat 1055 public synchronized StringBuffer format( method in class:MeasureFormat.ImmutableNumberFormat 1060 public synchronized StringBuffer format( method in class:MeasureFormat.ImmutableNumberFormat 1066 public synchronized String format(Number number) { method in class:MeasureFormat.ImmutableNumberFormat [all...] |
MessageFormat.java | 23 import java.text.Format; 57 * <p><code>MessageFormat</code> differs from the other <code>Format</code> 69 * <p>An argument might not specify any format type. In this case, 75 * Format object is created, cached and used. 81 * <p>After construction, a custom Format object can be set for 96 * (or using a custom Format object if one was set). 151 * a <code>Format</code> instance for the format element. The following 152 * table shows how the values map to Format instances. Combinations not 154 * be a valid pattern string for the Format subclass used 916 public final StringBuffer format(Object[] arguments, StringBuffer result, method in class:MessageFormat 919 format(arguments, null, new AppendableWrapper(result), pos); method 950 public final StringBuffer format(Map<String, Object> arguments, StringBuffer result, method in class:MessageFormat 952 format(null, arguments, new AppendableWrapper(result), pos); method 971 public static String format(String pattern, Object... arguments) { method in class:MessageFormat 988 public static String format(String pattern, Map<String, Object> arguments) { method in class:MessageFormat 1027 public final StringBuffer format(Object arguments, StringBuffer result, method in class:MessageFormat 1030 format(arguments, new AppendableWrapper(result), pos); method 1077 format(arguments, wrapper, null); method 1559 private void format(int msgStart, PluralSelectorContext pluralNumber, method in class:MessageFormat 1718 format(msgStart, pluralNumber, args, argsMap, dest, null); method 2072 private void format(Object arguments, AppendableWrapper result, FieldPosition fp) { method in class:MessageFormat 2074 format(null, (Map<String, Object>)arguments, result, fp); method 2076 format((Object[])arguments, null, result, fp); method 2087 private void format(Object[] arguments, Map<String, Object> argsMap, method in class:MessageFormat [all...] |
DecimalFormat.java | 18 import java.text.Format; 43 * format numbers in any locale, including support for Western, Arabic, or Indic digits. 54 * customize the format object, do something like this: 65 * format for each locale. 70 * NumberFormat format; 72 * System.out.println("FORMAT"); 81 * format = NumberFormat.getInstance(locales[i]); break; 83 * format = NumberFormat.getCurrencyInstance(locales[i]); break; 85 * format = NumberFormat.getPercentInstance(locales[i]); break; 88 * // Assume format is a DecimalForma 781 public StringBuffer format(double number, StringBuffer result, FieldPosition fieldPosition) { method in class:DecimalFormat 828 private StringBuffer format(double number, StringBuffer result, FieldPosition fieldPosition, method in class:DecimalFormat 1074 public StringBuffer format(long number, StringBuffer result, FieldPosition fieldPosition) { method in class:DecimalFormat 1078 private StringBuffer format(long number, StringBuffer result, FieldPosition fieldPosition, method in class:DecimalFormat 1131 public StringBuffer format(BigInteger number, StringBuffer result, method in class:DecimalFormat 1136 private StringBuffer format(BigInteger number, StringBuffer result, FieldPosition fieldPosition, method in class:DecimalFormat 1165 public StringBuffer format(java.math.BigDecimal number, StringBuffer result, method in class:DecimalFormat 1170 private StringBuffer format(java.math.BigDecimal number, StringBuffer result, method in class:DecimalFormat 1197 public StringBuffer format(BigDecimal number, StringBuffer result, method in class:DecimalFormat [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
DateTimePatternGenerator.java | 40 * This class provides flexible generation of date format patterns, like 74 * Construct a flexible generator according to data for the default <code>FORMAT</code> locale. 75 * @see Category#FORMAT 79 return getInstance(ULocale.getDefault(Category.FORMAT)); 438 return MessageFormat.format(getDateTimeFormat(), new Object[]{timePattern, datePattern}); 527 // base + pattern combination was derived from either (a) a canonical item, (b) a standard format, or 708 * The date time format is a message format pattern used to compose date and 721 * @param dateTimeFormat message format pattern, where {1} will be replaced by the date [all...] |
MeasureFormat.java | 54 * <p>To format a Measure object, first create a formatter 56 * object's format or formatMeasures methods. 65 * System.out.println(fmtFr.format(measure)); 70 * System.out.println(fmtFr.format(measureF)); 214 * Create a format from the locale, formatWidth, and format. 226 * Create a format from the {@link java.util.Locale} and formatWidth. 238 * Create a format from the locale, formatWidth, and format. 242 * @param format This is defensively copied 308 public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos) { method in class:MeasureFormat 1082 public synchronized StringBuffer format( method in class:MeasureFormat.ImmutableNumberFormat 1087 public synchronized StringBuffer format( method in class:MeasureFormat.ImmutableNumberFormat 1093 public synchronized String format(Number number) { method in class:MeasureFormat.ImmutableNumberFormat [all...] |
MessageFormat.java | 22 import java.text.Format; 56 * <p><code>MessageFormat</code> differs from the other <code>Format</code> 68 * <p>An argument might not specify any format type. In this case, 74 * Format object is created, cached and used. 80 * <p>After construction, a custom Format object can be set for 95 * (or using a custom Format object if one was set). 150 * a <code>Format</code> instance for the format element. The following 151 * table shows how the values map to Format instances. Combinations not 153 * be a valid pattern string for the Format subclass used 938 public final StringBuffer format(Object[] arguments, StringBuffer result, method in class:MessageFormat 941 format(arguments, null, new AppendableWrapper(result), pos); method 973 public final StringBuffer format(Map<String, Object> arguments, StringBuffer result, method in class:MessageFormat 975 format(null, arguments, new AppendableWrapper(result), pos); method 995 public static String format(String pattern, Object... arguments) { method in class:MessageFormat 1013 public static String format(String pattern, Map<String, Object> arguments) { method in class:MessageFormat 1054 public final StringBuffer format(Object arguments, StringBuffer result, method in class:MessageFormat 1057 format(arguments, new AppendableWrapper(result), pos); method 1105 format(arguments, wrapper, null); method 1603 private void format(int msgStart, PluralSelectorContext pluralNumber, method in class:MessageFormat 1762 format(msgStart, pluralNumber, args, argsMap, dest, null); method 2116 private void format(Object arguments, AppendableWrapper result, FieldPosition fp) { method in class:MessageFormat 2118 format(null, (Map<String, Object>)arguments, result, fp); method 2120 format((Object[])arguments, null, result, fp); method 2131 private void format(Object[] arguments, Map<String, Object> argsMap, method in class:MessageFormat [all...] |
DecimalFormat.java | 17 import java.text.Format; 42 * format numbers in any locale, including support for Western, Arabic, or Indic digits. 53 * customize the format object, do something like this: 64 * format for each locale. 69 * NumberFormat format; 71 * System.out.println("FORMAT"); 80 * format = NumberFormat.getInstance(locales[i]); break; 82 * format = NumberFormat.getCurrencyInstance(locales[i]); break; 84 * format = NumberFormat.getPercentInstance(locales[i]); break; 87 * // Assume format is a DecimalForma 786 public StringBuffer format(double number, StringBuffer result, FieldPosition fieldPosition) { method in class:DecimalFormat 833 private StringBuffer format(double number, StringBuffer result, FieldPosition fieldPosition, method in class:DecimalFormat 1080 public StringBuffer format(long number, StringBuffer result, FieldPosition fieldPosition) { method in class:DecimalFormat 1084 private StringBuffer format(long number, StringBuffer result, FieldPosition fieldPosition, method in class:DecimalFormat 1139 public StringBuffer format(BigInteger number, StringBuffer result, method in class:DecimalFormat 1144 private StringBuffer format(BigInteger number, StringBuffer result, FieldPosition fieldPosition, method in class:DecimalFormat 1175 public StringBuffer format(java.math.BigDecimal number, StringBuffer result, method in class:DecimalFormat 1180 private StringBuffer format(java.math.BigDecimal number, StringBuffer result, method in class:DecimalFormat 1209 public StringBuffer format(BigDecimal number, StringBuffer result, method in class:DecimalFormat [all...] |
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaProvider.java | 90 import android.text.format.DateUtils; 395 * Updates the database format when a new content provider is used 396 * with an older database format. 3185 int format = (formatObject == null ? 0 : formatObject.intValue()); local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar | |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar | |
org.eclipse.equinox.p2.repository_2.3.0.v20130412-2032.jar | |
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar | |