Searched defs:sm (Results 1 - 5 of 5) sorted by relevance

/libcore/benchmarks/src/benchmarks/regression/
H A DReflectionBenchmark.java103 Method m = klass.getDeclaredMethod("sm");
217 public static void sm() { method in class:ReflectionBenchmark.C
/libcore/ojluni/src/main/java/java/net/
H A DURL.java384 SecurityManager sm = System.getSecurityManager();
385 if (sm != null) {
387 checkSpecifyHandler(sm);
533 SecurityManager sm = System.getSecurityManager();
534 if (sm != null) {
535 checkSpecifyHandler(sm);
664 private void checkSpecifyHandler(SecurityManager sm) { argument
665 sm.checkPermission(SecurityConstants.SPECIFY_HANDLER_PERMISSION);
1046 SecurityManager sm = System.getSecurityManager();
1047 if (p.type() != Proxy.Type.DIRECT && sm !
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
H A DJarFileTest.java141 SecurityManager sm = new SecurityManager() { field in class:JarFileTest
/libcore/luni/src/test/java/libcore/java/net/
H A DOldSocketTest.java54 SecurityManager sm = new SecurityManager() { field in class:OldSocketTest
474 SecurityManager sm = new SecurityManager() {
/libcore/ojluni/src/main/java/java/util/
H A DCollections.java1840 private final SortedMap<K, ? extends V> sm; field in class:Collections.UnmodifiableSortedMap
1842 UnmodifiableSortedMap(SortedMap<K, ? extends V> m) {super(m); sm = m; }
1843 public Comparator<? super K> comparator() { return sm.comparator(); }
1845 { return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey)); }
1847 { return new UnmodifiableSortedMap<>(sm.headMap(toKey)); }
1849 { return new UnmodifiableSortedMap<>(sm.tailMap(fromKey)); }
1850 public K firstKey() { return sm.firstKey(); }
1851 public K lastKey() { return sm.lastKey(); }
2796 private final SortedMap<K,V> sm; field in class:Collections.SynchronizedSortedMap
2800 sm
4011 private final SortedMap<K, V> sm; field in class:Collections.CheckedSortedMap
[all...]

Completed in 127 milliseconds