HomeSort by relevance Sort by last modified time
    Searched refs:Category (Results 51 - 75 of 300) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Category.java 30 * <code>org.apache.log4j.Category</code> class (as found in log4j 1.2) by
44 public class Category {
46 private static final String CATEGORY_FQCN = Category.class.getName();
55 Category(String name) {
63 public static Category getInstance(Class clazz) {
67 public static Category getInstance(String name) {
71 public final Category getParent() {
93 * Return the level in effect for this category/logger.
117 * Returns the assigned {@link Level}, if any, for this Category. This
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
ULocaleTest.java 14 import com.ibm.icu.util.ULocale.Category;
805 * Test method for 'com.ibm.icu.x.util.ULocale.getDefault(Category)'
808 ULocale dispLoc = ULocale.getDefault(Category.DISPLAY);
810 ULocale formLoc = ULocale.getDefault(Category.FORMAT);
815 * Test method for 'com.ibm.icu.x.util.ULocale.setDefault(Category, ULocale)'
819 ULocale orgDisplay = ULocale.getDefault(Category.DISPLAY);
820 ULocale orgFormat = ULocale.getDefault(Category.FORMAT);
825 // setDefault(ULocale) updates category defaults
827 assertEquals(ULocale.getDefault(Category.DISPLAY), jaUS);
828 assertEquals(ULocale.getDefault(Category.FORMAT), jaUS)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
EthiopicCalendar.java 15 import android.icu.util.ULocale.Category;
143 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
153 this(zone, ULocale.getDefault(Category.FORMAT));
GregorianCalendar.java 12 import android.icu.util.ULocale.Category;
329 * @see Category#FORMAT
332 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
339 * @see Category#FORMAT
342 this(zone, ULocale.getDefault(Category.FORMAT));
392 * @see Category#FORMAT
395 super(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
413 * @see Category#FORMAT
417 super(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
439 * @see Category#FORMA
    [all...]
ChineseCalendar.java 18 import android.icu.util.ULocale.Category;
148 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
157 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
171 * @see Category#FORMAT
193 * @see Category#FORMAT
198 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
227 * @see Category#FORMAT
251 * @see Category#FORMAT
256 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
285 * @see Category#FORMA
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
TimeZone.java 16 import com.ibm.icu.util.ULocale.Category;
363 return timeZone.getDisplayName(ULocale.getDefault(Category.DISPLAY).toLocale());
411 return getDisplayName(daylight, style, ULocale.getDefault(Category.DISPLAY));
    [all...]
ULocale.java 255 * the specific functionality represented by the category.
258 public enum Category {
260 * Category used to represent the default locale for displaying user interfaces.
265 * Category used to represent the default locale for formatting date, number and/or currency.
529 private static Locale[] defaultCategoryLocales = new Locale[Category.values().length];
530 private static ULocale[] defaultCategoryULocales = new ULocale[Category.values().length];
533 for (Category cat: Category.values()) {
565 // We need to update category defaults to match the
567 for (Category cat : Category.values())
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
EthiopicCalendar.java 14 import com.ibm.icu.util.ULocale.Category;
156 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
167 this(zone, ULocale.getDefault(Category.FORMAT));
GregorianCalendar.java 11 import com.ibm.icu.util.ULocale.Category;
334 * @see Category#FORMAT
338 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
345 * @see Category#FORMAT
349 this(zone, ULocale.getDefault(Category.FORMAT));
403 * @see Category#FORMAT
407 super(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
425 * @see Category#FORMAT
430 super(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
452 * @see Category#FORMA
    [all...]
ChineseCalendar.java 17 import com.ibm.icu.util.ULocale.Category;
149 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
159 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
173 * @see Category#FORMAT
196 * @see Category#FORMAT
202 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
231 * @see Category#FORMAT
256 * @see Category#FORMAT
262 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
292 * @see Category#FORMA
    [all...]
  /external/junit/src/org/junit/experimental/categories/
Categories.java 21 * annotated with either the category given with the @IncludeCategory
22 * annotation, or a subtype of that category.
24 * Note that, for now, annotating suites with {@code @Category} has no effect.
42 * &#064;Category(SlowTests.class)
48 * &#064;Category( { SlowTests.class, FastTests.class })
97 return "category " + fIncluded;
140 Category annotation= description.getAnnotation(Category.class);
178 if (each.getAnnotation(Category.class) != null)
179 throw new InitializationError("Category annotations on Parameterized classes are not supported on individual methods.")
    [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-over-slf4j-1.4.2.jar 
  /libcore/ojluni/src/main/java/java/text/
DateFormat.java 447 return get(DEFAULT, 0, 1, Locale.getDefault(Locale.Category.FORMAT));
459 return get(style, 0, 1, Locale.getDefault(Locale.Category.FORMAT));
483 return get(0, DEFAULT, 2, Locale.getDefault(Locale.Category.FORMAT));
495 return get(0, style, 2, Locale.getDefault(Locale.Category.FORMAT));
519 return get(DEFAULT, DEFAULT, 3, Locale.getDefault(Locale.Category.FORMAT));
534 return get(timeStyle, dateStyle, 3, Locale.getDefault(Locale.Category.FORMAT));
    [all...]
NumberFormat.java 385 return getInstance(Locale.getDefault(Locale.Category.FORMAT), NUMBERSTYLE);
401 return getInstance(Locale.getDefault(Locale.Category.FORMAT), NUMBERSTYLE);
424 return getInstance(Locale.getDefault(Locale.Category.FORMAT), INTEGERSTYLE);
447 return getInstance(Locale.getDefault(Locale.Category.FORMAT), CURRENCYSTYLE);
461 return getInstance(Locale.getDefault(Locale.Category.FORMAT), PERCENTSTYLE);
    [all...]
  /developers/build/prebuilts/gradle/LNotifications/Application/tests/src/com/example/android/lnotifications/
OtherMetadataFragmentTest.java 51 .HIGH, OtherMetadataFragment.Category.CALL, null);
53 assertEquals(Notification.CATEGORY_CALL, notification.category);
60 .DEFAULT, OtherMetadataFragment.Category.MESSAGE, dummyContactUri);
62 assertEquals(Notification.CATEGORY_MESSAGE, notification.category);
  /developers/samples/android/notification/LNotifications/Application/tests/src/com/example/android/lnotifications/
OtherMetadataFragmentTest.java 51 .HIGH, OtherMetadataFragment.Category.CALL, null);
53 assertEquals(Notification.CATEGORY_CALL, notification.category);
60 .DEFAULT, OtherMetadataFragment.Category.MESSAGE, dummyContactUri);
62 assertEquals(Notification.CATEGORY_MESSAGE, notification.category);
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DateFormat.java 21 import com.ibm.icu.util.ULocale.Category;
137 ULocale.getDefault(Category.FORMAT).toLocale());
    [all...]
NumberFormat.java 21 import com.ibm.icu.util.ULocale.Category;
519 return getInstance(ULocale.getDefault(Category.FORMAT), NUMBERSTYLE);
550 return getInstance(ULocale.getDefault(Category.FORMAT), style);
569 return getInstance(ULocale.getDefault(Category.FORMAT), NUMBERSTYLE);
601 return getInstance(ULocale.getDefault(Category.FORMAT), INTEGERSTYLE);
643 return getInstance(ULocale.getDefault(Category.FORMAT), CURRENCYSTYLE);
670 return getInstance(ULocale.getDefault(Category.FORMAT), PERCENTSTYLE);
697 return getInstance(ULocale.getDefault(Category.FORMAT), SCIENTIFICSTYLE);
    [all...]
DateFormatSymbols.java 14 import com.ibm.icu.util.ULocale.Category;
134 this(new java.text.DateFormatSymbols(ULocale.getDefault(Category.FORMAT).toLocale()));
    [all...]
DecimalFormatSymbols.java 16 import com.ibm.icu.util.ULocale.Category;
59 this(new java.text.DecimalFormatSymbols(ULocale.getDefault(Category.FORMAT).toLocale()));
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NumberFormat.java 30 import android.icu.util.ULocale.Category;
525 * @see Category#FORMAT
529 return getInstance(ULocale.getDefault(Category.FORMAT), NUMBERSTYLE);
555 * @see Category#FORMAT
558 return getInstance(ULocale.getDefault(Category.FORMAT), style);
573 * @see Category#FORMAT
576 return getInstance(ULocale.getDefault(Category.FORMAT), NUMBERSTYLE);
602 * @see Category#FORMAT
606 return getInstance(ULocale.getDefault(Category.FORMAT), INTEGERSTYLE);
643 * @see Category#FORMA
    [all...]
PluralFormat.java 22 import android.icu.util.ULocale.Category;
182 * @see Category#FORMAT
185 init(null, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
214 * @see Category#FORMAT
217 init(rules, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
272 * @see Category#FORMAT
275 init(null, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
304 * @see Category#FORMAT
307 init(rules, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
NumberFormat.java 29 import com.ibm.icu.util.ULocale.Category;
560 * @see Category#FORMAT
565 return getInstance(ULocale.getDefault(Category.FORMAT), NUMBERSTYLE);
593 * @see Category#FORMAT
597 return getInstance(ULocale.getDefault(Category.FORMAT), style);
613 * @see Category#FORMAT
617 return getInstance(ULocale.getDefault(Category.FORMAT), NUMBERSTYLE);
645 * @see Category#FORMAT
650 return getInstance(ULocale.getDefault(Category.FORMAT), INTEGERSTYLE);
689 * @see Category#FORMA
    [all...]
PluralFormat.java 21 import com.ibm.icu.util.ULocale.Category;
182 * @see Category#FORMAT
186 init(null, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
217 * @see Category#FORMAT
221 init(rules, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
280 * @see Category#FORMAT
284 init(null, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
314 * @see Category#FORMAT
318 init(rules, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
    [all...]
  /external/clang/include/clang/Frontend/
SerializedDiagnosticReader.h 87 /// \brief Visit a category. This associates the category \c ID to a \c Name.
98 unsigned Category, unsigned Flag, StringRef Message) {

Completed in 824 milliseconds

1 23 4 5 6 7 8 91011>>