HomeSort by relevance Sort by last modified time
    Searched refs:ROOT (Results 126 - 150 of 301) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/text/
CompactDecimalDataCache.java 100 // ROOT // In root locale
105 NOT_ROOT // Locale cannot be root.
126 * <li>local numbering system no ROOT fallback</li>
127 * <li>latin numbering system no ROOT fallback</li>
128 * <li>latin numbering system ROOT locale.</li>
215 * isRoot returns true if r is in root locale or false otherwise.
219 // Note: bundleLocale for root should be ULocale.ROOT, which is equivalent to new ULocale("").
220 // However, resource bundle might be initialized with locale ID "root", which should b
    [all...]
StringSearch.java 212 search_.internalBreakIter_ = BreakIterator.getCharacterInstance(collLocale == null ? ULocale.ROOT : collLocale);
315 search_.internalBreakIter_ = BreakIterator.getCharacterInstance(collLocale == null ? ULocale.ROOT : collLocale);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationAPITest.java 639 RuleBasedCollator coll = (RuleBasedCollator)Collator.getInstance(new Locale("","","")); //root
645 errln("Root tailored rules failed");
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CompactDecimalDataCache.java 99 // ROOT // In root locale
104 NOT_ROOT // Locale cannot be root.
125 * <li>local numbering system no ROOT fallback</li>
126 * <li>latin numbering system no ROOT fallback</li>
127 * <li>latin numbering system ROOT locale.</li>
214 * isRoot returns true if r is in root locale or false otherwise.
218 // Note: bundleLocale for root should be ULocale.ROOT, which is equivalent to new ULocale("").
219 // However, resource bundle might be initialized with locale ID "root", which should b
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationAPITest.java 635 RuleBasedCollator coll = (RuleBasedCollator)Collator.getInstance(new Locale("","","")); //root
641 errln("Root tailored rules failed");
    [all...]
  /frameworks/base/core/java/android/net/
UrlQuerySanitizer.java 309 String asLower = value.toLowerCase(Locale.ROOT);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DateFormatSymbolsTest.java 88 assertEquals(DateFormatSymbols.getInstance(Locale.ROOT), symbols);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
RichInputMethodSubtypeTests.java 184 if (Locale.ROOT.equals(displayLocale)) {
  /libcore/ojluni/src/main/java/java/util/
Locale.java 577 * Useful constant for the root locale. The root locale is the locale whose
584 static public final Locale ROOT = createConstant("", "");
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
CodeGenTreeWalker.g 242 if ( ast_suffix.getType() == ANTLRParser.ROOT )
721 : ^(ROOT e=element[label,$ROOT])
901 rootSuffix = new GrammarAST(ROOT,"ROOT");
908 $code.addAggr("root.{el,line,pos}",
994 // back to root, which has delegate methods for all
995 // rules. Don't use scope if we are root.
    [all...]
TreeToNFAConverter.g 350 : ^(ROOT e=element {$g = $e.g;})
651 : ROOT
ANTLRv3.g 70 ROOT='^';
203 // must create root manually as it's used by invoked rules in real antlr tool.
  /external/icu/android_icu4j/src/main/java/android/icu/util/
ULocale.java 249 * The root ULocale.
251 public static final ULocale ROOT = new ULocale("", EMPTY_LOCALE);
580 // non-null default ULocale. For now, this implementation returns ULocale.ROOT
585 return ULocale.ROOT;
647 return ULocale.ROOT;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
ULocaleTest.java 98 // Currency getLocale API is obsolete in 3.2. Since it now returns ULocale.ROOT,
306 /* 'root' is "less than" everything */
307 if (prefix.equals("root")) {
308 return string.equals("root") ? 0 : 1;
311 // consider "" to be an alternate name for "root".
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ULocale.java 270 * The root ULocale.
273 public static final ULocale ROOT = new ULocale("", EMPTY_LOCALE);
627 // non-null default ULocale. For now, this implementation returns ULocale.ROOT
632 return ULocale.ROOT;
695 return ULocale.ROOT;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ULocaleTest.java 94 // Currency getLocale API is obsolete in 3.2. Since it now returns ULocale.ROOT,
302 /* 'root' is "less than" everything */
303 if (prefix.equals("root")) {
304 return string.equals("root") ? 0 : 1;
307 // consider "" to be an alternate name for "root".
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateTimeGeneratorTest.java 129 DateTimePatternGenerator rootGen = DateTimePatternGenerator.getInstance(ULocale.ROOT);
130 SimpleDateFormat rootFormat = new SimpleDateFormat(rootGen.getBestPattern("yMdHms"), ULocale.ROOT);
133 assertEquals("root format: yMdHms", "1999-10-14 06:58:59", rootFormat.format(sampleDate));
139 SimpleDateFormat format = new SimpleDateFormat(nullGen.getBestPattern("yMdHms"), ULocale.ROOT);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateTimeGeneratorTest.java 125 DateTimePatternGenerator rootGen = DateTimePatternGenerator.getInstance(ULocale.ROOT);
126 SimpleDateFormat rootFormat = new SimpleDateFormat(rootGen.getBestPattern("yMdHms"), ULocale.ROOT);
129 assertEquals("root format: yMdHms", "1999-10-14 06:58:59", rootFormat.format(sampleDate));
135 SimpleDateFormat format = new SimpleDateFormat(nullGen.getBestPattern("yMdHms"), ULocale.ROOT);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarAST.java 355 public static List<Tree> descendants(Tree root){
356 return descendants(root, false);
359 public static List<Tree> descendants(Tree root, boolean insertDownUpNodes){
361 int count = root.getChildCount();
364 result.add(root);
368 Tree child = root.getChild(i);
375 result.add(root);
377 Tree child = root.getChild(i);
387 // check this node (the root) first
408 // check this node (the root) firs
518 GrammarAST root = dup(t); \/\/ make copy of root local
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiInfo.java 532 return SupplicantState.valueOf(stateName.toUpperCase(Locale.ROOT));
  /libcore/support/src/test/java/tests/http/
MockWebServer.java 349 String lowercaseHeader = header.toLowerCase(Locale.ROOT);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 364 Locale.ROOT, "%d (%4.2f), %s", cur.mScore, normalizedScore,
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 72 ROOT='^';
206 // must create root manually as it's used by invoked rules in real antlr tool.
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseIterators.java 155 case Axis.ROOT :
222 case Axis.ROOT :
298 * @param node Sets the root of the iteration.
352 * @param node Sets the root of the iteration.
443 * @param node Sets the root of the iteration.
534 * @param node Sets the root of the iteration.
600 * @param node Sets the root of the iteration.
685 * Iterator that returns the the root node as defined by the XPath data model
705 * @param node Sets the root of the iteration.
824 * @param node Sets the root of the iteration
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
LocaleDisplayNamesImpl.java 135 this.locale = ULocale.ROOT.equals(langData.getLocale()) ? regionData.getLocale() :
286 // Empty basename indicates root locale (keywords are ignored for this).
287 // Our data uses 'root' to access display names for the root locale in the
290 lang = "root";
408 if (lang.equals("root") || lang.indexOf('_') != -1) {
562 return ULocale.ROOT;

Completed in 1150 milliseconds

1 2 3 4 56 7 8 91011>>