Searched defs:root (Results 1 - 24 of 24) sorted by relevance

/dalvik/libcore/xml/src/main/java/org/apache/xpath/
H A DSourceTree.java36 * @param root The root of the source tree, which may or may not be a
40 public SourceTree(int root, String url) argument
42 m_root = root;
49 /** The root of the source tree, which may or may not be a
/dalvik/libcore/xml/src/main/java/org/apache/xpath/axes/
H A DRTFIterator.java39 public RTFIterator(int root, DTMManager manager) { argument
40 super(root, manager);
H A DReverseAxesWalker.java46 * Set the root node of the TreeWalker.
49 * @param root The context node of this step.
51 public void setRoot(int root) argument
53 super.setRoot(root);
54 m_iterator = getDTM(root).getAxisIterator(m_axis);
55 m_iterator.setStartNode(root);
102 // * Set the root node of the TreeWalker.
104 // * @param root The context node of this step.
106 // public void setRoot(int root)
108 // super.setRoot(root);
[all...]
H A DFilterExprWalker.java121 * Set the root node of the TreeWalker.
123 * @param root non-null reference to the root, or starting point of
126 public void setRoot(int root) argument
129 super.setRoot(root);
131 m_exprObj = FilterExprIteratorSimple.executeFilterExpr(root,
187 * to step upward from the TreeWalker's root node, returns
H A DAxesWalker.java189 * The root node of the TreeWalker, as specified in setRoot(int root).
211 * Set the root node of the TreeWalker.
214 * @param root The context node of this step.
216 public void setRoot(int root) argument
220 m_dtm = xctxt.getDTM(root);
224 m_root = root;
225 m_currentNode = root;
227 if (DTM.NULL == root)
230 XSLMessages.createXPATHMessage(XPATHErrorResources.ER_SETTING_WALKER_ROOT_TO_NULL, null)); //"\n !!!! Error! Setting the root o
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
H A DWhiteSpaceInfo.java82 public void recompose(StylesheetRoot root) argument
84 root.recomposeWhiteSpaceInfo(this);
H A DElemAttributeSet.java167 * @param root The root stylesheet for this transformation.
169 public void recompose(StylesheetRoot root) argument
171 root.recomposeAttributeSets(this);
H A DKeyDeclaration.java191 * @param root The root stylesheet for this transformation.
193 public void recompose(StylesheetRoot root) argument
195 root.recomposeKeys(this);
H A DNamespaceAlias.java152 * @param root The owning root stylesheet
154 public void recompose(StylesheetRoot root) argument
156 root.recomposeNamespaceAliases(this);
H A DOutputProperties.java538 * @param root non-null reference to the stylesheet root object.
540 public void recompose(StylesheetRoot root) argument
543 root.recomposeOutput(this);
H A DDecimalFormatProperties.java397 * @param root Stylesheet root
399 public void recompose(StylesheetRoot root) argument
401 root.recomposeDecimalFormats(this);
H A DElemTemplate.java144 * Get the root stylesheet.
146 * @return The root stylesheet for this element
406 * @param root The root stylesheet for this transformation.
408 public void recompose(StylesheetRoot root) argument
410 root.recomposeTemplates(this);
H A DElemVariable.java346 // it was already added by stylesheet root.
450 * @param root The root stylesheet for this transformation.
452 public void recompose(StylesheetRoot root) argument
454 root.recomposeVariables(this);
H A DElemTemplateElement.java165 * Get the owning root stylesheet. This looks up the
168 * to the root stylesheet.
170 * @return the owning root stylesheet
181 public void recompose(StylesheetRoot root) throws TransformerException argument
/dalvik/hit/src/com/android/hit/
H A DState.java91 public final void addRoot(RootObj root) { argument
92 mCurrentHeap.addRoot(root);
H A DHeap.java78 public final void addRoot(RootObj root) { argument
79 root.mIndex = mRoots.size();
80 mRoots.add(root);
181 for (RootObj root: mRoots) {
182 root.resolveReferences(state);
/dalvik/libcore/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java82 public static File copyFile(File root, String folder, String file) { argument
85 f = new File(root.toString() + "/" + folder);
91 f = root;
/dalvik/libcore/xml/src/main/java/org/apache/xpath/objects/
H A DXRTreeFrag.java50 public XRTreeFrag(int root, XPathContext xctxt, ExpressionNode parent) argument
54 initDTM(root, xctxt);
61 public XRTreeFrag(int root, XPathContext xctxt) argument
64 initDTM(root, xctxt);
67 private final void initDTM(int root, XPathContext xctxt){ argument
68 m_dtmRoot = root;
69 final DTM dtm = xctxt.getDTM(root);
162 * because it is treated like a node-set with a single root node.
/dalvik/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java89 * Key to a system property defining root location of golden files.
391 * from "<module root>/src/test/resources/serialization/<code>testPackage</code>"
436 * resource files from "<module root>/src/test/resources/serialization/<code>testPackage</code>"
555 * The folder for created file is: <code>root + test's package name</code>.
558 * @param root -
559 * root directory for serialization resource files
567 public static void createGoldenFile(String root, TestCase test, argument
574 if (root != null) {
575 goldenPath = root + File.separatorChar + goldenPath;
/dalvik/libcore/luni/src/main/java/java/net/
H A DURLClassLoader.java343 // as index.list only keeps track of directories and root files
460 // as index.list only keeps track of directories and root files
1162 * @param root
1168 private ArrayList<URL> getInternalURLs(URL root, String classpath) { argument
1172 String file = root.getFile();
/dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
H A DAbstractPreferencesTest.java43 static AbstractPreferences root; field in class:AbstractPreferencesTest
56 root = (AbstractPreferences) Preferences.userRoot();
1046 root.removeNode();
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DLogManagerTest.java252 // but for non-mock LogManager, foo's parent should be root
279 Logger root = new MockLogger("testAddLoggerReverseOrder", null);
290 manager.addLogger(root);
291 assertSame(root, fooGrandChild.getParent());
292 assertSame(realRoot, root.getParent());
295 assertSame(root, foo.getParent());
306 assertSame(root, foo.getParent());
307 assertSame(realRoot, root.getParent());
317 Logger root = new MockLogger("testAddSimiliarLogger", null);
325 manager.addLogger(root);
1490 static Logger root = null; field in class:LogManagerTest.MockValidConfig2
[all...]
/dalvik/libcore/prefs/src/main/java/java/util/prefs/
H A DAbstractPreferences.java128 //handler to this node's root node
129 private AbstractPreferences root; field in class:AbstractPreferences
142 * that the new node is a root node.
145 * this node is called "root".
154 root = null == parent ? this : parent.root;
162 userNode = root.userNode;
349 } else if (parentPref == root) {
519 return root == Preferences.userRoot();
544 return root;
[all...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DTreeMap.java45 transient Node<K, V> root; field in class:TreeMap
190 this(map, minimum(map.root));
510 Node<K, V> node = backingMap.root;
571 Node<K, V> node = minimum(backingMap.root);
629 Node<K, V> node = backingMap.root;
693 Node<K, V> node = maximum(backingMap.root);
765 from = minimum(backingMap.root);
776 to = maximum(backingMap.root);
823 from = minimum(subMap.backingMap.root);
905 from = minimum(subMap.backingMap.root);
[all...]

Completed in 458 milliseconds