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

1 2 34 5 6 7

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DateFormatSymbolsTest.java 88 assertEquals(DateFormatSymbols.getInstance(Locale.ROOT), symbols);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyCodeDescriptionMapper.java 332 final String resourceName = String.format(Locale.ROOT, resourceNameFormat, code);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 275 Locale.ROOT, "%d (%4.2f), %s", cur.mScore, normalizedScore,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
DebugSettingsFragment.java 249 return String.format(Locale.ROOT, "%d%%", value);
  /libcore/luni/src/main/java/java/util/
ResourceBundle.java 40 * This base bundle acts as the root and is the last fallback in case none of
389 || (Locale.ROOT.equals(ret.getLocale()) && (!(locales.size() == 1 && locales
390 .contains(Locale.ROOT))))) {
828 retList.add(Locale.ROOT);
    [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/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/core/java/android/text/util/
Linkify.java 368 String prefix = (scheme == null) ? "" : scheme.toLowerCase(Locale.ROOT);
  /frameworks/base/wifi/java/android/net/wifi/
WifiInfo.java 487 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/utils/
DictionaryInfoUtils.java 241 MAIN_DICT_PREFIX + locale.toString().toLowerCase(Locale.ROOT);
StringUtils.java 498 // In order to get accented upper case letter, {@link Locale#ROOT} should be used.
500 return Locale.ROOT;
  /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...]
DTMDefaultBaseTraversers.java 178 case Axis.ROOT :
339 * @param axisRoot The root identity of the axis.
364 // If the parent occured before the subtree root, then
369 // Otherwise, it could be a descendant below the subtree root
370 // children, or it could be after the subtree root. So we have
371 // to climb up until the parent is less than the subtree root, in
373 // root, in which case we continue to look.
422 * of origin for the traversal -- its "root node" or starting point.
517 * node that occurs after the axis root.
519 * @param axisRoot The root identity of the axis
1566 int root=getDocumentRoot(context); local
1667 int root = first(context); local
1738 int root = getDocumentRoot(context); local
    [all...]
  /external/libnl/lib/
msg.c 788 PRINT_FLAG(ROOT);
  /frameworks/base/core/java/android/provider/
Settings.java     [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasClient.java 344 client.mPath.clear(); // we're in root after connected
376 case ROOT:
724 * Goes back to root of folder hierarchy
    [all...]
  /frameworks/base/core/java/android/net/
Uri.java     [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.net_1.2.200.v20130430-1352.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.net_1.2.200.v20130430-1352.jar 
  /external/llvm/utils/llvm-build/llvmbuild/
main.py 128 # Add the root component.
129 if '$ROOT' in self.component_info_map:
130 fatal("project is not allowed to define $ROOT component")
131 self.component_info_map['$ROOT'] = componentinfo.GroupComponentInfo(
132 '/', '$ROOT', None)
133 self.component_infos.append(self.component_info_map['$ROOT'])
200 visit(self.component_info_map['$ROOT'])
207 # Ignore the $ROOT component.
216 # Ignore root components.
796 group.add_option("", "--source-root", dest="source_root", metavar="PATH"
    [all...]
  /frameworks/base/core/java/android/database/
DatabaseUtils.java     [all...]

Completed in 1028 milliseconds

1 2 34 5 6 7