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

/libcore/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java98 public static File copyFile(File root, String folder, String file) { argument
101 f = new File(root.toString() + "/" + folder);
107 f = root;
/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java65 * Key to a system property defining root location of golden files.
312 * from "<module root>/src/test/resources/serialization/<code>testPackage</code>"
347 * resource files from "<module root>/src/test/resources/serialization/<code>testPackage</code>"
438 * The folder for created file is: <code>root + test's package name</code>.
441 * @param root - root directory for serialization resource files
446 public static void createGoldenFile(String root, TestCase test, Object object) argument
450 if (root != null) {
451 goldenPath = root + File.separatorChar + goldenPath;
/libcore/luni/src/main/java/java/net/
H A DURLClassLoader.java275 // as index.list only keeps track of directories and root files
384 // as index.list only keeps track of directories and root files
980 * @param root
986 private ArrayList<URL> getInternalURLs(URL root, String classpath) { argument
990 String file = root.getFile();
/libcore/luni/src/main/java/java/util/concurrent/
H A DPhaser.java311 * The root of phaser tree. Equals this if not in a tree.
313 private final Phaser root; field in class:Phaser
319 * Subphasers share queues with root to speed up releases.
354 final Phaser root = this.root;
356 long s = (root == this) ? state : reconcileState();
368 if (root == this) {
417 root.internalAwaitAdvance(phase, null);
423 else if (parent == null) { // 1st root registration
441 phase = (int)(root
[all...]
/libcore/luni/src/test/java/libcore/java/util/prefs/
H A DOldAbstractPreferencesTest.java37 AbstractPreferences root; field in class:OldAbstractPreferencesTest
43 root = (AbstractPreferences) Preferences.userRoot();
44 for (String child : root.childrenNames()) {
45 root.node(child).removeNode();
47 root.clear();
825 root.removeNode();
/libcore/luni/src/main/java/java/util/prefs/
H A DAbstractPreferences.java123 //handler to this node's root node
124 private AbstractPreferences root; field in class:AbstractPreferences
137 * that the new node is a root node.
140 * this node is called "root".
149 root = (parent == null) ? this : parent.root;
157 userNode = root.userNode;
344 } else if (parentPref == root) {
508 return root == Preferences.userRoot();
533 return root;
[all...]
/libcore/luni/src/main/java/java/util/
H A DTreeMap.java77 Node<K, V> root; field in class:TreeMap
159 map.root = root != null ? root.copy(null) : null;
190 root = null;
252 if (root == null) {
257 root = new Node<K, V>(null, key);
260 return root;
275 Node<K, V> nearest = root;
448 root
522 rotateLeft(Node<K, V> root) argument
550 rotateRight(Node<K, V> root) argument
[all...]

Completed in 223 milliseconds