Searched defs:Object (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DObject.java32 * Class {@code Object} is the root of the class hierarchy.
33 * Every class has {@code Object} as a superclass. All objects,
40 public class Object { class
46 * Returns the runtime class of this {@code Object}. The returned
81 * <li>If two objects are equal according to the {@code equals(Object)}
85 * according to the {@link java.lang.Object#equals(java.lang.Object)}
93 * class {@code Object} does return distinct integers for distinct
100 * @see java.lang.Object#equals(java.lang.Object)
[all...]
/libcore/ojluni/src/main/java/java/security/
H A DProvider.java78 * <caption><b>Attributes Automatically Placed in a Provider Object</b></caption>
126 private transient Set<Map.Entry<Object,Object>> entrySet = null;
262 public synchronized Set<Map.Entry<Object,Object>> entrySet() {
289 public Set<Object> keySet() {
301 public Collection<Object> values() {
323 public synchronized Object put(Object key, Object valu
481 replaceAll(BiFunction<? super Object, ? super Object, ? extends Object> function) argument
509 compute(Object key, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) argument
540 computeIfAbsent(Object key, Function<? super Object, ? extends Object> mappingFunction) argument
569 computeIfPresent(Object key, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) argument
601 merge(Object key, Object value, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) argument
630 forEach(BiConsumer<? super Object, ? super Object> action) argument
786 implReplaceAll(BiFunction<? super Object, ? super Object, ? extends Object> function) argument
797 implMerge(Object key, Object value, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) argument
808 implCompute(Object key, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) argument
825 implComputeIfAbsent(Object key, Function<? super Object, ? extends Object> mappingFunction) argument
836 implComputeIfPresent(Object key, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) argument
[all...]

Completed in 2536 milliseconds