Home
last modified time | relevance | path

Searched defs:Object (Results 1 – 17 of 17) sorted by relevance

/libcore/ojluni/annotations/mmodule/java/security/
DProvider.annotated.java73 public synchronized void replaceAll(java.util.function.BiFunction<? super java.lang.Object,? super … in replaceAll()
75 …d java.lang.Object compute(java.lang.Object key, java.util.function.BiFunction<? super java.lang.O… in compute()
77 …lang.Object computeIfAbsent(java.lang.Object key, java.util.function.Function<? super java.lang.Ob… in computeIfAbsent()
79 …ng.Object computeIfPresent(java.lang.Object key, java.util.function.BiFunction<? super java.lang.O… in computeIfPresent()
81 …ge(java.lang.Object key, java.lang.Object value, java.util.function.BiFunction<? super java.lang.O… in merge()
87 public synchronized void forEach(java.util.function.BiConsumer<? super java.lang.Object,? super jav… in forEach()
/libcore/ojluni/src/test/java/util/Map/
DInPlaceOpsCollisions.java46 public void testPutIfAbsent(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testPutIfAbsent()
77 public void testRemoveMapping(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testRemoveMapping()
111 public void testReplaceOldValue(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testReplaceOldValue()
143 public void testReplaceIfMapped(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testReplaceIfMapped()
228 …public void testComputeIfAbsentNonNull(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testComputeIfAbsentNonNull()
235 public void testComputeIfAbsentNull(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testComputeIfAbsentNull()
283 …public void testComputeIfPresentNonNull(String desc, Supplier<Map<Object, Object>> ms, Object val)… in testComputeIfPresentNonNull()
290 … public void testComputeIfPresentNull(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testComputeIfPresentNull()
336 public void testComputeNull(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testComputeNull()
419 public void testMergeNull(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testMergeNull()
DCollisions.java113 public void testRemove(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testRemove()
128 public void testKeysIteratorRemove(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testKeysIteratorRemove()
143 … public void testValuesIteratorRemove(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testValuesIteratorRemove()
158 … public void testEntriesIteratorRemove(String desc, Supplier<Map<Object, Object>> ms, Object val) { in testEntriesIteratorRemove()
DEntryHashCode.java75 private static void addTestData(Map<Object,Object> map) { in addTestData()
/libcore/ojluni/annotations/sdk/nullability/java/lang/
DObject.annotated.java32 public class Object { class
34 public Object() { throw new RuntimeException("Stub!"); } in Object() method in Object
/libcore/ojluni/src/main/java/java/security/
DProvider.java485 …public synchronized void replaceAll(BiFunction<? super Object, ? super Object, ? extends Object> f… in replaceAll()
514 BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) { in compute()
544 …public synchronized Object computeIfAbsent(Object key, Function<? super Object, ? extends Object> … in computeIfAbsent()
573 …public synchronized Object computeIfPresent(Object key, BiFunction<? super Object, ? super Object,… in computeIfPresent()
605 …public synchronized Object merge(Object key, Object value, BiFunction<? super Object, ? super Obj… in merge()
634 public synchronized void forEach(BiConsumer<? super Object, ? super Object> action) { in forEach()
793 …private void implReplaceAll(BiFunction<? super Object, ? super Object, ? extends Object> function)… in implReplaceAll()
804 …private Object implMerge(Object key, Object value, BiFunction<? super Object, ? super Object, ? ex… in implMerge()
815 …private Object implCompute(Object key, BiFunction<? super Object, ? super Object, ? extends Object… in implCompute()
833 …private Object implComputeIfAbsent(Object key, Function<? super Object, ? extends Object> mappingF… in implComputeIfAbsent()
[all …]
/libcore/ojluni/annotations/hiddenapi/java/lang/
DObject.java32 public class Object { class
34 public Object() { in Object() method in Object
/libcore/ojluni/src/main/java/java/lang/
DObject.java40 public class Object { class
56 public Object() {} in Object() method in Object
/libcore/ojluni/src/test/java/util/IdentityHashMap/
DCapacity.java93 static void growUsingPut(IdentityHashMap<Object,Object> map, in growUsingPut()
99 static void growUsingPutAll(IdentityHashMap<Object,Object> map, in growUsingPutAll()
106 static void growUsingRepeatedPutAll(IdentityHashMap<Object,Object> map, in growUsingRepeatedPutAll()
/libcore/luni/src/test/java/libcore/java/lang/ref/
DFinalizeTest.java121 new Object() { in createSlowFinalizer() method
144 new Object() { in createChainedFinalizer() method
/libcore/ojluni/annotations/hiddenapi/sun/security/provider/
DX509Factory.java55 sun.security.util.Cache<java.lang.Object, V> cache, byte[] encoding, V value) { in addToCache()
/libcore/ojluni/src/main/java/sun/security/provider/
DX509Factory.java225 private static synchronized <V> void addToCache(Cache<Object, V> cache, in addToCache()
/libcore/ojluni/src/main/java/java/lang/reflect/
DWeakCache.java206 ConcurrentMap<Object, Supplier<V>> valuesMap) { in Factory()
/libcore/ojluni/src/test/java/lang/invoke/
DExplicitCastArgumentsTest.java73 RANDOM_VALUES.put(Wrapper.OBJECT, new Object()); in RANDOM_VALUES.put()
DMethodHandlesGeneralTest.java1244 boolean mixArgs(List<Class<?>> argTypes, int mix, Map<Object,Integer> argTypesSeen) { in mixArgs()
/libcore/luni/src/test/java/libcore/java/nio/file/
DFiles2Test.java1821 public TestFileVisitor(Map<Object, VisitOption> dirMap) { in TestFileVisitor()
1825 public TestFileVisitor(Map<Object, VisitOption> dirMap, Set<FileVisitOption> option) { in TestFileVisitor()
1838 public TestFileVisitor(Map<Object, VisitOption> dirMap, List<Object> pathList) { in TestFileVisitor()
/libcore/ojluni/src/test/java/util/Arrays/
DArraysEqCmpTest.java838 BiFunction<ArrayType<?>, Integer, Object> constructor, in testArrayType() argument