Home
last modified time | relevance | path

Searched refs:nsee (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DLinkedHashMap.java683 static <K1,V1> Node<K1,V1> nsee(Node<K1,V1> node) { in nsee() method in LinkedHashMap
768 public final K getFirst() { return nsee(reversed ? tail : head).key; } in getFirst()
769 public final K getLast() { return nsee(reversed ? head : tail).key; } in getLast()
771 var node = nsee(reversed ? tail : head); in removeFirst()
776 var node = nsee(reversed ? head : tail); in removeLast()
874 public final V getFirst() { return nsee(reversed ? tail : head).value; } in getFirst()
875 public final V getLast() { return nsee(reversed ? head : tail).value; } in getLast()
877 var node = nsee(reversed ? tail : head); in removeFirst()
882 var node = nsee(reversed ? head : tail); in removeLast()
986 final Node<K,V> nsee(Node<K,V> e) { in nsee() method in LinkedHashMap.LinkedEntrySet
[all …]
DCollections.java6107 private E nsee(Map.Entry<E, Boolean> e) {
6130 public E getFirst() { return nsee(map().firstEntry()); }
6131 public E getLast() { return nsee(map().lastEntry()); }
6132 public E removeFirst() { return nsee(map().pollFirstEntry()); }
6133 public E removeLast() { return nsee(map().pollLastEntry()); }
/libcore/ojluni/src/test/java/util/Scanner/
DScanTest.java747 } catch (NoSuchElementException nsee) { in ioExceptionTest()
959 } catch (NoSuchElementException nsee) { in findInLineTest()
1112 } catch (NoSuchElementException nsee) { in byteTest()
1121 } catch (NoSuchElementException nsee) { in byteTest()
1326 } catch (NoSuchElementException nsee) { in booleanTest()
1354 } catch (NoSuchElementException nsee) { in hasNextTest()
1375 } catch (NoSuchElementException nsee) { in nextTest()
1419 } catch (NoSuchElementException nsee) { in nextPatternTest()
1428 } catch (NoSuchElementException nsee) { in nextPatternTest()
1437 } catch (NoSuchElementException nsee) { in nextPatternTest()
[all …]
/libcore/luni/src/test/java/libcore/java/util/
DOptionalIntTest.java40 } catch (NoSuchElementException nsee) { in testGet()
DOptionalDoubleTest.java42 } catch (NoSuchElementException nsee) { in testGet()
DOptionalLongTest.java45 } catch (NoSuchElementException nsee) { in testGet()