Searched defs:parent (Results 26 - 40 of 40) sorted by relevance

12

/libcore/luni/src/main/java/java/text/
H A DBidi.java400 long parent = 0;
402 parent = createUBiDi(text, 0, embeddings, 0, this.length, dir);
404 return createEmptyLineBidi(parent);
406 return new Bidi(ubidi_setLine(parent, lineStart, lineLimit));
408 ubidi_close(parent);
412 private Bidi createEmptyLineBidi(long parent) { argument
414 Bidi result = new Bidi(parent);
/libcore/luni/src/main/java/java/util/
H A DResourceBundle.java33 * resources, where the names are {@code Strings}. A bundle may have a parent bundle,
34 * and when a resource is not found in a bundle, the parent bundle is searched for
87 * The parent of this {@code ResourceBundle} that is used if this bundle doesn't
90 protected ResourceBundle parent; field in class:ResourceBundle
167 * of {@link Locale#toString()}. From this name all parent bundle names are
189 * all the parent bundles are instantiated too. If no such class can be
421 * cannot be found in this bundle, it falls back to the parent bundle (if
439 theParent = theParent.parent;
532 ResourceBundle parent = handleGetBundle(loadBase, base, strippedLocale, loader);
533 if (parent !
[all...]
H A DTreeMap.java376 Node<K, V> originalParent = node.parent;
396 left.parent = adjacent;
404 right.parent = adjacent;
434 Node<K, V> parent = node.parent;
435 node.parent = null;
437 replacement.parent = parent;
440 if (parent != null) {
441 if (parent
734 Node<K, V> parent; field in class:TreeMap.Node
741 Node(Node<K, V> parent, K key) argument
747 copy(Node<K, V> parent) argument
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DPhaser.java96 * groups of sub-phasers share a common parent. This may greatly
101 * child phasers with their parent are managed automatically.
105 * child phaser is registered with its parent. Whenever the number of
108 * from its parent.
258 * parent). In this (relatively rare) case, we use built-in
260 * parent.
305 * The parent of this phaser, or null if none
307 private final Phaser parent; field in class:Phaser
380 phase = parent.doArrive(ONE_DEREGISTER);
385 phase = parent
506 Phaser(Phaser parent) argument
522 Phaser(Phaser parent, int parties) argument
[all...]
H A DConcurrentHashMap.java1861 TreeNode<K,V> parent; // red-black tree links field in class:ConcurrentHashMap.TreeNode
1868 TreeNode<K,V> parent) {
1870 this.parent = parent;
1942 x.parent = null;
1963 x.parent = xp;
2147 TreeNode<K,V> pp = p.parent;
2148 if (s == pr) { // p was s's direct parent
2149 p.parent = s;
2153 TreeNode<K,V> sp = s.parent;
1867 TreeNode(int hash, K key, V val, Node<K,V> next, TreeNode<K,V> parent) argument
[all...]
/libcore/luni/src/main/java/java/util/logging/
H A DLogger.java47 * <p>Loggers "inherit" log level setting from their parent if their own level is
51 * returns {@code true}, loggers also inherit their parent's handlers. In this
112 /** The parent logger of this logger. */
113 Logger parent; field in class:Logger
123 * <li>the logging level of the parent
147 /** True to notify the parent's handlers of each log message. */
188 Logger parent = this.parent;
197 } else if (parent == null) {
207 * 2. This is a root logger (no parent)
583 setParent(Logger parent) argument
[all...]
/libcore/luni/src/test/java/libcore/java/util/prefs/
H A DOldAbstractPreferencesTest.java44 AbstractPreferences parent = null; field in class:OldAbstractPreferencesTest
57 parent = (AbstractPreferences) Preferences.userNodeForPackage(getClass());
58 pref = (AbstractPreferences) parent.node(nodeName);
716 assertTrue(node.parent().name().compareTo("First node") == 0);
721 node.parent();
856 assertEquals(parent.absolutePath() + "/" + nodeName, pref.absolutePath());
857 assertEquals(parent.absolutePath() + "/" + "new node", parent.node("new node").absolutePath());
861 assertTrue(parent.isUserNode());
896 parent
1082 MockAbstractPreferences(AbstractPreferences parent, String name) argument
[all...]
H A DOldPreferencesTest.java95 p.parent();
144 assertSame(pref, child1.parent());
335 Preferences parent = Preferences.userNodeForPackage(Preferences.class);
336 Preferences pref = parent.node("mock");
363 assertSame(prefs, parent);
370 Preferences parent = Preferences.userNodeForPackage(Preferences.class);
371 Preferences pref = parent.node("mock");
410 Preferences parent = Preferences.userNodeForPackage(Preferences.class);
411 Preferences pref = parent.node("mock");
413 assertSame(parent, pre
1053 public Preferences parent() { method in class:OldPreferencesTest.MockPreferences
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
H A DAbstractPreferencesTest.java67 private AbstractPreferences parent; field in class:AbstractPreferencesTest
88 parent = (AbstractPreferences) Preferences.userNodeForPackage(Preferences.class);
90 pref = (AbstractPreferences) parent.node("mock");
192 assertSame(pref, child1.parent());
470 assertSame(prefs, parent);
501 assertSame(child3, grandchild.parent());
559 assertSame(parent, pref.parent());
561 assertSame(pref, child1.parent());
562 assertNull(root.parent());
[all...]
/libcore/luni/src/main/java/java/util/prefs/
H A DAbstractPreferences.java103 * event will be fired for this node's parent.
117 //handler to this node's parent
133 * parent node and node name.
135 * @param parent
136 * the parent node of the new node or {@code null} to indicate
143 * parent} is not {@code null}.
145 protected AbstractPreferences(AbstractPreferences parent, String name) { argument
146 if ((parent == null ^ name.length() == 0) || name.indexOf("/") >= 0) {
149 root = (parent == null) ? this : parent
630 public Preferences parent() { method in class:AbstractPreferences
[all...]
/libcore/jsr166-tests/src/test/java/jsr166/
H A DCountedCompleterTest.java374 * getCompleter returns parent or null if at root
386 * getRoot returns self if no parent, else parent's root
456 * firstComplete.nextComplete returns parent if pending count is
503 public CCF(CountedCompleter parent, int n) { argument
504 super(parent, 1);
521 public LCCF(CountedCompleter parent, int n) { argument
522 super(parent, n);
535 public RCCF(CountedCompleter parent, int n) { argument
536 super(parent,
554 FailingCCF(CountedCompleter parent, int n) argument
572 LFCCF(CountedCompleter parent, int n) argument
586 RFCCF(CountedCompleter parent, int n) argument
[all...]
H A DForkJoinTaskTest.java214 private BinaryAsyncAction parent; field in class:ForkJoinTaskTest.BinaryAsyncAction
225 x.parent = y.parent = this;
255 BinaryAsyncAction p = a.parent;
257 a.parent = null;
278 if (!a.onException() || (a = a.parent) == null)
284 return parent;
292 parent = sibling = null;
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp855 XML_Parser parent = toXMLParser(parentParser); local
856 XML_Parser entityParser = XML_ExternalEntityParserCreate(parent, context.c_str(), NULL);
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 532 milliseconds

12