Searched refs:toElement (Results 1 - 14 of 14) sorted by relevance

/openjdk9/jdk/src/java.base/share/classes/java/util/
H A DNavigableSet.java197 * {@code fromElement} to {@code toElement}. If {@code fromElement} and
198 * {@code toElement} are equal, the returned set is empty unless {@code
210 * @param toElement high endpoint of the returned set
214 * {@code fromElement}, inclusive, to {@code toElement}, exclusive
216 * {@code toElement} cannot be compared to one another using this
220 * {@code toElement} cannot be compared to elements currently in
223 * {@code toElement} is null and this set does
226 * greater than {@code toElement}; or if this set itself
228 * {@code toElement} lies outside the bounds of the range.
231 E toElement, boolea
230 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
260 headSet(E toElement, boolean inclusive) argument
300 subSet(E fromElement, E toElement) argument
311 headSet(E toElement) argument
[all...]
H A DSortedSet.java122 * from {@code fromElement}, inclusive, to {@code toElement},
123 * exclusive. (If {@code fromElement} and {@code toElement} are
133 * @param toElement high endpoint (exclusive) of the returned set
135 * {@code fromElement}, inclusive, to {@code toElement}, exclusive
137 * {@code toElement} cannot be compared to one another using this
141 * {@code toElement} cannot be compared to elements currently in
144 * {@code toElement} is null and this set does not permit null
147 * greater than {@code toElement}; or if this set itself
149 * {@code toElement} lies outside the bounds of the range
151 SortedSet<E> subSet(E fromElement, E toElement); argument
178 headSet(E toElement) argument
[all...]
H A DTreeSet.java317 * @throws NullPointerException if {@code fromElement} or {@code toElement}
324 E toElement, boolean toInclusive) {
326 toElement, toInclusive));
331 * @throws NullPointerException if {@code toElement} is null and
337 public NavigableSet<E> headSet(E toElement, boolean inclusive) { argument
338 return new TreeSet<>(m.headMap(toElement, inclusive));
356 * {@code toElement} is null and this set uses natural ordering,
360 public SortedSet<E> subSet(E fromElement, E toElement) { argument
361 return subSet(fromElement, true, toElement, false);
366 * @throws NullPointerException if {@code toElement} i
323 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
371 headSet(E toElement) argument
[all...]
H A DCollections.java1168 public SortedSet<E> subSet(E fromElement, E toElement) { argument
1169 return new UnmodifiableSortedSet<>(ss.subSet(fromElement,toElement));
1171 public SortedSet<E> headSet(E toElement) { argument
1172 return new UnmodifiableSortedSet<>(ss.headSet(toElement));
1255 public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { argument
1257 ns.subSet(fromElement, fromInclusive, toElement, toInclusive));
1260 public NavigableSet<E> headSet(E toElement, boolean inclusive) { argument
1262 ns.headSet(toElement, inclusive));
2213 public SortedSet<E> subSet(E fromElement, E toElement) { argument
2216 ss.subSet(fromElement, toElement), mute
2219 headSet(E toElement) argument
2319 subSet(E fromElement, E toElement) argument
2324 headSet(E toElement) argument
2335 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
2341 headSet(E toElement, boolean inclusive) argument
3295 subSet(E fromElement, E toElement) argument
3298 headSet(E toElement) argument
3365 subSet(E fromElement, E toElement) argument
3368 headSet(E toElement) argument
3375 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
3379 headSet(E toElement, boolean inclusive) argument
[all...]
H A DTreeMap.java1157 E toElement, boolean toInclusive) {
1159 toElement, toInclusive));
1161 public NavigableSet<E> headSet(E toElement, boolean inclusive) { argument
1162 return new KeySet<>(m.headMap(toElement, inclusive));
1167 public SortedSet<E> subSet(E fromElement, E toElement) { argument
1168 return subSet(fromElement, true, toElement, false);
1170 public SortedSet<E> headSet(E toElement) { argument
1171 return headSet(toElement, false);
1156 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
/openjdk9/jdk/src/java.base/share/classes/java/util/concurrent/
H A DConcurrentSkipListSet.java412 * {@code toElement} is null
417 E toElement,
421 toElement, toInclusive));
426 * @throws NullPointerException if {@code toElement} is null
429 public NavigableSet<E> headSet(E toElement, boolean inclusive) { argument
430 return new ConcurrentSkipListSet<E>(m.headMap(toElement, inclusive));
445 * {@code toElement} is null
448 public NavigableSet<E> subSet(E fromElement, E toElement) { argument
449 return subSet(fromElement, true, toElement, false);
454 * @throws NullPointerException if {@code toElement} i
415 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
457 headSet(E toElement) argument
[all...]
H A DConcurrentSkipListMap.java2431 K toElement,
2434 toElement, toInclusive));
2436 public NavigableSet<K> headSet(K toElement, boolean inclusive) { argument
2437 return new KeySet<>(m.headMap(toElement, inclusive));
2442 public NavigableSet<K> subSet(K fromElement, K toElement) { argument
2443 return subSet(fromElement, true, toElement, false);
2445 public NavigableSet<K> headSet(K toElement) { argument
2446 return headSet(toElement, false);
2429 subSet(K fromElement, boolean fromInclusive, K toElement, boolean toInclusive) argument
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DXMLCipher.java709 return factory.toElement(encryptedData);
725 return factory.toElement(encryptedData);
743 return factory.toElement(encryptedKey);
759 return factory.toElement(encryptedKey);
777 return factory.toElement(referenceList);
793 return factory.toElement(referenceList);
823 Element encryptedElement = factory.toElement(ed);
861 Element encryptedElement = factory.toElement(ed);
2473 Element toElement(EncryptedData encryptedData) { method in class:XMLCipher.Factory
2474 return ((EncryptedDataImpl) encryptedData).toElement();
2481 Element toElement(EncryptedKey encryptedKey) { method in class:XMLCipher.Factory
2489 Element toElement(ReferenceList referenceList) { method in class:XMLCipher.Factory
2621 Element toElement() { method in class:XMLCipher.Factory.CipherDataImpl
2678 Element toElement() { method in class:XMLCipher.Factory.CipherReferenceImpl
2712 Element toElement() { method in class:XMLCipher.Factory.CipherValueImpl
2732 Element toElement() { method in class:XMLCipher.Factory.EncryptedDataImpl
2816 Element toElement() { method in class:XMLCipher.Factory.EncryptedKeyImpl
3117 Element toElement() { method in class:XMLCipher.Factory.EncryptionMethodImpl
3201 Element toElement() { method in class:XMLCipher.Factory.EncryptionPropertiesImpl
3293 Element toElement() { method in class:XMLCipher.Factory.EncryptionPropertyImpl
3355 public Element toElement() { method in class:XMLCipher.Factory.TransformsImpl
3425 Element toElement() { method in class:XMLCipher.Factory.ReferenceListImpl
3496 public Element toElement() { method in class:XMLCipher.Factory.ReferenceListImpl.ReferenceImpl
[all...]
/openjdk9/langtools/test/jdk/javadoc/tool/sampleapi/lib/sampleapi/generator/
H A DModuleGenerator.java88 Element toElement = (Element) toList.item(j);
89 exports.modules.add(toElement.getAttribute("module"));
100 Element toElement = (Element) toList.item(j);
101 opens.modules.add(toElement.getAttribute("module"));
/openjdk9/jdk/test/java/util/Spliterator/
H A DSpliteratorTraversingAndSplittingTest.java327 public SortedSet<Integer> subSet(Integer fromElement, Integer toElement) {
328 return s.subSet(fromElement, toElement);
332 public SortedSet<Integer> headSet(Integer toElement) {
333 return s.headSet(toElement);
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/
H A Djquery-1.10.2.js5229 props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
5247 event.relatedTarget = fromElement === event.target ? original.toElement : fromElement;
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/external/jquery/
H A Djquery.js5229 props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
5247 event.relatedTarget = fromElement === event.target ? original.toElement : fromElement;
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/resources/jquery/
H A Djquery-1.10.2.js5229 props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
5247 event.relatedTarget = fromElement === event.target ? original.toElement : fromElement;
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/resources/jquery/external/jquery/
H A Djquery.js5229 props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
5247 event.relatedTarget = fromElement === event.target ? original.toElement : fromElement;

Completed in 249 milliseconds