HomeSort by relevance Sort by last modified time
    Searched refs:Category (Results 76 - 100 of 366) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralFormat.java 23 import com.ibm.icu.util.ULocale.Category;
184 * @see Category#FORMAT
188 init(null, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
219 * @see Category#FORMAT
223 init(rules, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
282 * @see Category#FORMAT
286 init(null, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
316 * @see Category#FORMAT
320 init(rules, PluralType.CARDINAL, ULocale.getDefault(Category.FORMAT), null);
    [all...]
DateFormat.java 32 import com.ibm.icu.util.ULocale.Category;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ChineseCalendar.java 19 import com.ibm.icu.util.ULocale.Category;
151 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
161 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
175 * @see Category#FORMAT
198 * @see Category#FORMAT
204 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
233 * @see Category#FORMAT
258 * @see Category#FORMAT
264 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT), CHINESE_EPOCH_YEAR, CHINA_ZONE);
294 * @see Category#FORMA
    [all...]
ULocale.java 299 * the specific functionality represented by the category.
302 public enum Category {
304 * Category used to represent the default locale for displaying user interfaces.
309 * Category used to represent the default locale for formatting date, number and/or currency.
571 private static Locale[] defaultCategoryLocales = new Locale[Category.values().length];
572 private static ULocale[] defaultCategoryULocales = new ULocale[Category.values().length];
586 for (Category cat: Category.values()) {
609 // Java 6 or older does not have separated category locales,
610 // use the non-category default for al
    [all...]
IslamicCalendar.java 18 import com.ibm.icu.util.ULocale.Category;
189 * @see Category#FORMAT
194 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
201 * @see Category#FORMAT
206 this(zone, ULocale.getDefault(Category.FORMAT));
266 * @see Category#FORMAT
270 super(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
282 * @see Category#FORMAT
287 super(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
307 * @see Category#FORMA
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DateFormatSymbols.java 16 import com.ibm.icu.util.ULocale.Category;
136 this(new java.text.DateFormatSymbols(ULocale.getDefault(Category.FORMAT).toLocale()));
    [all...]
DecimalFormatSymbols.java 18 import com.ibm.icu.util.ULocale.Category;
61 this(new java.text.DecimalFormatSymbols(ULocale.getDefault(Category.FORMAT).toLocale()));
DecimalFormat.java 25 import com.ibm.icu.util.ULocale.Category;
623 if (!ULocale.getDefault(Category.FORMAT).toLocale().equals(Locale.getDefault())) {
626 java.text.NumberFormat jdkNfmt = java.text.NumberFormat.getInstance(ULocale.getDefault(Category.FORMAT).toLocale());
654 new java.text.DecimalFormatSymbols(ULocale.getDefault(Category.FORMAT).toLocale())));
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Currency.java 193 * {@link Locale.Category#DISPLAY DISPLAY} locale.
200 * getSymbol(Locale.getDefault(Locale.Category.DISPLAY))}.
203 * {@link Locale.Category#DISPLAY DISPLAY} locale
206 return getSymbol(Locale.getDefault(Locale.Category.DISPLAY));
261 * the default {@link Locale.Category#DISPLAY DISPLAY} locale.
267 * getDisplayName(Locale.getDefault(Locale.Category.DISPLAY))}.
270 * {@link Locale.Category#DISPLAY DISPLAY} locale
274 return getDisplayName(Locale.getDefault(Locale.Category.DISPLAY));
Locale.java 351 * {@link Locale.Category#DISPLAY DISPLAY} locale and one
370 * {@link Locale.Category#FORMAT FORMAT} locale:
    [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) {
  /toolchain/binutils/binutils-2.25/binutils/
sysdep.h 162 # define dcgettext(Domainname, Msgid, Category) (Msgid)
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateFormat.java 33 import android.icu.util.ULocale.Category;
    [all...]
  /external/icu/icu4c/source/test/intltest/
pluralmaptest.cpp 41 PluralMapBase::Category v,
117 PluralMapBase::Category index = PluralMapBase::NONE;
207 PluralMapBase::Category v,
  /external/junit/src/main/java/org/junit/experimental/categories/
Categories.java 18 * annotated with either the category given with the @IncludeCategory
19 * annotation, or a subtype of that category.
21 * Note that, for now, annotating suites with {@code @Category} has no effect.
41 * @Category(SlowTests.class)
46 * @Category({FastTests.class, SmokeTests.class})
52 * @Category({SlowTests.class, FastTests.class})
121 throw new NullPointerException("has null category");
126 public static CategoryFilter include(Class<?> category) {
127 return include(true, category);
136 throw new NullPointerException("has null category");
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
LintPreferencePage.java 29 import com.android.tools.lint.detector.api.Category;
579 private Map<Category, List<Issue>> mCategoryToIssues;
589 return element instanceof Category;
620 mCategoryToIssues = new HashMap<Category, List<Issue>>();
642 // Preserve the current category order, so instead of
645 List<Category> categories = new ArrayList<Category>(mCategoryToIssues.size());
646 for (Category category : mRegistry.getCategories()) {
647 if (mCategoryToIssues.containsKey(category)) {
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 123 return category;
225 unsigned Category, unsigned Flag, StringRef Message) override;
328 return reportInvalidFile("Out-of-bounds string in category");
380 unsigned Category, unsigned Flag, StringRef Message) {
385 D.category = Category;
387 D.CategoryText = Category ? TopDiags->Categories[Category] : "";
  /external/icu/android_icu4j/src/main/java/android/icu/util/
ULocale.java 264 * the specific functionality represented by the category.
266 public enum Category {
268 * Category used to represent the default locale for displaying user interfaces.
272 * Category used to represent the default locale for formatting date, number and/or currency.
527 private static Locale[] defaultCategoryLocales = new Locale[Category.values().length];
528 private static ULocale[] defaultCategoryULocales = new ULocale[Category.values().length];
542 for (Category cat: Category.values()) {
565 // Java 6 or older does not have separated category locales,
566 // use the non-category default for al
    [all...]
IslamicCalendar.java 19 import android.icu.util.ULocale.Category;
172 * @see Category#FORMAT
176 this(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
183 * @see Category#FORMAT
187 this(zone, ULocale.getDefault(Category.FORMAT));
243 * @see Category#FORMAT
246 super(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
258 * @see Category#FORMAT
262 super(TimeZone.getDefault(), ULocale.getDefault(Category.FORMAT));
282 * @see Category#FORMA
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 275 [cat](const OptionCategory *Category) {
276 return cat->getName() == Category->getName();
359 // Initialise the general option category.
    [all...]
  /development/vndk/tools/header-checker/header-abi-dumper/src/
header_checker.cpp 55 if (p.second->Category == &header_checker_category) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
ListFormatterTest.java 155 ULocale defaultLocale = ULocale.getDefault(ULocale.Category.FORMAT);
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
Calendar.java 16 import com.ibm.icu.util.ULocale.Category;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
ListFormatterTest.java 154 ULocale defaultLocale = ULocale.getDefault(ULocale.Category.FORMAT);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
mls.py 50 """Factory function for creating MLS category objects."""
55 if isinstance(sym, Category):
62 return Category(policy, sym)
65 return Category(policy, qpol.qpol_cat_t(policy, str(sym)))
67 raise exception.InvalidCategory("{0} is not a valid category".format(sym))
128 "{0} is not a valid level ({1} is not a valid category range)".
135 "{0} is not a valid level ({1} is not a valid category)".format(sym, group))
228 """Generator that yields all aliases for this category."""
234 class Category(BaseMLSComponent):
236 """An MLS category.""
    [all...]

Completed in 1205 milliseconds

1 2 34 5 6 7 8 91011>>