Home
last modified time | relevance | path

Searched refs:uoe (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DImmutableCollections.java70 static UnsupportedOperationException uoe() { return new UnsupportedOperationException(); } in uoe() method in ImmutableCollections
74 @Override public boolean add(E e) { throw uoe(); } in add()
75 @Override public boolean addAll(Collection<? extends E> c) { throw uoe(); } in addAll()
76 @Override public void clear() { throw uoe(); } in clear()
77 @Override public boolean remove(Object o) { throw uoe(); } in remove()
78 @Override public boolean removeAll(Collection<?> c) { throw uoe(); } in removeAll()
79 @Override public boolean removeIf(Predicate<? super E> filter) { throw uoe(); } in removeIf()
80 @Override public boolean retainAll(Collection<?> c) { throw uoe(); } in retainAll()
104 @Override public void add(int index, E element) { throw uoe(); } in add()
105 @Override public boolean addAll(int index, Collection<? extends E> c) { throw uoe(); } in addAll()
[all …]
/libcore/ojluni/src/main/java/java/nio/file/
DFileSystems.java391 } catch (UnsupportedOperationException uoe) { in newFileSystem()
402 } catch (UnsupportedOperationException uoe) { in newFileSystem()
/libcore/luni/src/test/java/libcore/java/net/
DOldURLStreamHandlerTest.java98 } catch(UnsupportedOperationException uoe) { in test_openConnectionLjava_net_URLLjava_net_Proxy()