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

1 2 3 4 5 6 7 8 9

  /build/tools/
warn.py 17 MEDIUM=3
26 if sev == severity.MEDIUM:
37 { 'category':'make', 'severity':severity.MEDIUM, 'members':[], 'option':'',
52 { 'category':'C/C++', 'severity':severity.MEDIUM, 'members':[], 'option':'',
61 { 'category':'C/C++', 'severity':severity.MEDIUM, 'members':[], 'option':'-Wunused-parameter',
64 { 'category':'C/C++', 'severity':severity.MEDIUM, 'members':[], 'option':'-Wunused',
68 { 'category':'C/C++', 'severity':severity.MEDIUM, 'members':[], 'option':'-Wunused-value',
71 { 'category':'C/C++', 'severity':severity.MEDIUM, 'members':[], 'option':'-Wmissing-field-initializers',
77 { 'category':'C/C++', 'severity':severity.MEDIUM, 'members':[], 'option':'-Wformat',
80 { 'category':'C/C++', 'severity':severity.MEDIUM, 'members':[], 'option':'-Wformat-extra-args'
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
IntegralToStringBenchmark.java 26 private static final int MEDIUM = 12345;
37 Integer.toString(MEDIUM);
55 Integer.toString(MEDIUM, 2);
73 Integer.toString(MEDIUM, 10);
91 Integer.toString(MEDIUM, 16);
109 Integer.toBinaryString(MEDIUM);
127 Integer.toHexString(MEDIUM);
145 new StringBuilder().append(MEDIUM);
163 String.format("%d", MEDIUM);
RealToStringBenchmark.java 26 private static final float MEDIUM = -123.45e8f;
67 Float.toString(MEDIUM);
85 new StringBuilder().append(MEDIUM);
103 String.format("%f", MEDIUM);
121 String.format("%.2f", MEDIUM);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DateFormatTest.java 89 assertTrue("Default not medium",
90 DateFormat.DEFAULT == DateFormat.MEDIUM);
102 f2 = (SimpleDateFormat) DateFormat.getDateInstance(DateFormat.MEDIUM);
105 DateFormat.MEDIUM, Locale.getDefault())));
150 f2 = (SimpleDateFormat) DateFormat.getDateInstance(DateFormat.MEDIUM,
219 testDateTime(DateFormat.SHORT, DateFormat.MEDIUM);
223 testDateTime(DateFormat.MEDIUM, DateFormat.SHORT);
224 testDateTime(DateFormat.MEDIUM, DateFormat.MEDIUM);
225 testDateTime(DateFormat.MEDIUM, DateFormat.LONG)
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
CameraPairwiseTest.java 65 public enum PictureSize { SMALL, MEDIUM, LARGE };
130 * Scene: Sunset / Pic: Medium / Geo: off
135 PictureSize.MEDIUM, Geotagging.OFF);
165 PictureSize.MEDIUM, Geotagging.OFF);
200 * Scene: Action / Pic: Medium / Geo: off
205 PictureSize.MEDIUM, Geotagging.OFF);
250 * Scene: Party / Pic: Medium / Geo: on
255 PictureSize.MEDIUM, Geotagging.ON);
270 * Scene: Auto / Pic: Medium / Geo: on
275 PictureSize.MEDIUM, Geotagging.ON)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
HolographicOutlineHelper.java 43 private static final int MEDIUM = 1;
130 case MEDIUM:
159 case MEDIUM:
213 MEDIUM);
218 applyExpensiveOutlineWithBlur(srcDst, srcDstCanvas, color, outlineColor, MEDIUM);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
AstroTest.java 247 DateFormat df = DateFormat.getTimeInstance(cal, DateFormat.MEDIUM, Locale.US);
248 DateFormat df2 = DateFormat.getDateTimeInstance(cal, DateFormat.MEDIUM, DateFormat.MEDIUM, Locale.US);
249 DateFormat day = DateFormat.getDateInstance(cal, DateFormat.MEDIUM, Locale.US);
323 DateFormat d3 = DateFormat.getDateTimeInstance(cal3, DateFormat.MEDIUM,DateFormat.MEDIUM,Locale.US);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
SegmentedButtons.java 35 private static final Typeface MEDIUM = Typeface.create("sans-serif-medium", Typeface.NORMAL);
68 c.setTypeface(selected ? MEDIUM : REGULAR);
  /libcore/luni/src/main/java/libcore/icu/
LocaleData.java 90 // Used by DateFormat to implement 12- and 24-hour SHORT and MEDIUM.
168 case DateFormat.MEDIUM:
186 case DateFormat.MEDIUM:
208 // Get the SHORT and MEDIUM 12- and 24-hour time format strings.
  /external/icu/icu4c/source/test/intltest/
astrotst.cpp 276 DateFormat *df_t = DateFormat::createTimeInstance(DateFormat::MEDIUM,Locale::getUS());
277 DateFormat *df_d = DateFormat::createDateInstance(DateFormat::MEDIUM,Locale::getUS());
278 DateFormat *df_dt = DateFormat::createDateTimeInstance(DateFormat::MEDIUM, DateFormat::MEDIUM, Locale::getUS());
381 DateFormat *d3 = DateFormat::createDateTimeInstance(DateFormat::MEDIUM,DateFormat::MEDIUM,Locale::getUS());
  /libcore/luni/src/main/java/java/text/
DateFormat.java 88 * is MEDIUM.
103 * The format style constant defining the medium style.
105 public static final int MEDIUM = 2;
370 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
374 * if {@code style} is not one of SHORT, MEDIUM, LONG, FULL, or
387 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
391 * if {@code style} is not one of SHORT, MEDIUM, LONG, FULL, or
419 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
421 * one of SHORT, MEDIUM, LONG, FULL, or DEFAULT.
426 * SHORT, MEDIUM, LONG, FULL, or DEFAULT
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BitmapFactory_Delegate.java 55 Density density = Density.MEDIUM;
  /hardware/qcom/msm8x84/kernel-headers/linux/
qseecom.h 130 MEDIUM,
  /hardware/qcom/msm8x84/original-kernel-headers/linux/
qseecom.h 173 MEDIUM,
  /cts/tests/tests/text/src/android/text/format/cts/
DateUtilsTest.java 165 fixedTime, java.text.DateFormat.MEDIUM, java.text.DateFormat.FULL));
177 fixedTime, java.text.DateFormat.FULL, java.text.DateFormat.MEDIUM));
  /packages/apps/Settings/src/com/android/settings/
UsageStatsActivity.java 197 System.currentTimeMillis(), DateFormat.MEDIUM, DateFormat.MEDIUM));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
RelativeDateFormat.java 343 case DateFormat.MEDIUM:
344 glueIndex += (DateFormat.MEDIUM +1);
  /external/v8/test/mjsunit/
whitespaces.js 37 0x205F, // MEDIUM MATHEMATICAL SPACE
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateFormat.java 45 * <li>The formatting styles include FULL, LONG, MEDIUM, and SHORT. More detail and examples of using these styles are
86 * You can pass in different options to these factory methods to control the length of the result; from SHORT to MEDIUM
90 * <li>MEDIUM is longer, such as Jan 12, 1952
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/resource/
Resource.java 518 DateFormat dfmt=DateFormat.getDateTimeInstance(DateFormat.MEDIUM,
519 DateFormat.MEDIUM);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/layoutRendering/
ApiDemosRenderingTest.java 263 Density.MEDIUM,
316 config.addQualifier(new DensityQualifier(Density.MEDIUM));
  /external/icu/icu4c/source/i18n/unicode/
datefmt.h 120 * result; from SHORT to MEDIUM to LONG to FULL. The exact result depends on the
124 * <li> MEDIUM is longer, such as Jan 12, 1952
154 * in the resource occurs in the order full, long, medium, short.
203 MEDIUM = kMedium,
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatRoundTripTest.java 79 case DateFormat.MEDIUM :
80 return "MEDIUM";
IntlTestDateFormatAPI.java 82 DateFormat it = DateFormat.getDateInstance(DateFormat.MEDIUM, Locale.ITALIAN);
  /external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
DateFormatTest.java 35 checkGetInstance(DateFormat.MEDIUM, -1, loc);

Completed in 3305 milliseconds

1 2 3 4 5 6 7 8 9