Searched defs:getEntry (Results 26 - 43 of 43) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpTableSupport.java187 public Object getEntry(int pos) { method in class:SnmpTableSupport
466 * and getEntry() will always return null.
H A DSnmpMibTable.java679 public synchronized Object getEntry(SnmpOid rowOid) method in class:SnmpMibTable
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLinkedHashMap.java253 Entry e = getEntry(key);
261 private Entry getEntry(Object key) { method in class:LinkedHashMap
/openjdk7/hotspot/test/compiler/6865031/
H A DTest.java305 Entry getEntry(Object key) method in class:WeakPool
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DQNameMap.java147 Entry<V> e = getEntry(nsUri,localPart);
334 return getEntry(nsUri,localName)!=null;
439 Entry<V> candidate = getEntry(e.nsUri,e.localName);
451 private Entry<V> getEntry(String nsUri,String localName) { method in class:QNameMap
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DLocalNameQualifiedNamesMap.java133 final Entry entry = _readOnlyMap.getEntry(key, hash);
162 private final Entry getEntry(String key, int hash) { method in class:LocalNameQualifiedNamesMap
164 final Entry entry = _readOnlyMap.getEntry(key, hash);
/openjdk7/jdk/test/java/util/jar/
H A DTestExtra.java85 ZipEntry ze = getEntry();
108 ZipEntry ze = getEntry();
127 ZipEntry ze = getEntry();
200 ZipEntry getEntry() { return new ZipEntry("zip" + count++ + ".txt"); } method in class:TestExtra
222 ZipEntry getEntry() { return new ZipEntry("jar" + count++ + ".txt"); } method in class:TestExtra.TestJarExtra
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyStore.java139 * ks.getEntry("privateKeyAlias", protParam);
1280 public final Entry getEntry(String alias, ProtectionParameter protParam) method in class:KeyStore
1313 * @see #getEntry(String, KeyStore.ProtectionParameter)
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipFile.java299 public ZipEntry getEntry(String name) { method in class:ZipFile
306 jzentry = getEntry(jzfile, zc.getBytes(name), true);
316 private static native long getEntry(long jzfile, byte[] name, method in class:ZipFile
349 jzentry = getEntry(jzfile, zc.getBytesUTF8(entry.name), false);
351 jzentry = getEntry(jzfile, zc.getBytes(entry.name), false);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DQNameMap.java140 Entry<V> e = getEntry(nsUri,localPart);
352 return getEntry(nsUri,localName)!=null;
452 Entry<V> candidate = getEntry(e.nsUri,e.localName);
463 private Entry<V> getEntry(@NotNull String nsUri,String localName) { method in class:QNameMap
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DX509KeyManagerImpl.java104 PrivateKeyEntry entry = getEntry(alias);
110 PrivateKeyEntry entry = getEntry(alias);
217 private PrivateKeyEntry getEntry(String alias) { method in class:X509KeyManagerImpl
243 Entry newEntry = ks.getEntry
/openjdk7/jdk/src/share/classes/java/util/
H A DHashMap.java421 Entry<K,V> entry = getEntry(key);
453 return getEntry(key) != null;
461 final Entry<K,V> getEntry(Object key) { method in class:HashMap
1088 Entry<K,V> candidate = getEntry(e.getKey());
H A DWeakHashMap.java485 return getEntry(key) != null;
492 Entry<K,V> getEntry(Object key) { method in class:WeakHashMap
1038 Entry<K,V> candidate = getEntry(e.getKey());
H A DTreeMap.java227 return getEntry(key) != null;
273 Entry<K,V> p = getEntry(key);
337 final Entry<K,V> getEntry(Object key) { method in class:TreeMap
358 * Version of getEntry using comparator. Split off from getEntry
595 Entry<K,V> p = getEntry(key);
983 Entry<K,V> p = getEntry(entry.getKey());
992 Entry<K,V> p = getEntry(entry.getKey());
1546 TreeMap.Entry node = m.getEntry(key);
1558 TreeMap.Entry<K,V> node = m.getEntry(ke
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DConstantPool.java766 public Entry getEntry(int i) { method in class:ConstantPool.Index
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipFileIndex.java239 return (de == null) ? null : de.getEntry(lookFor);
768 private Entry getEntry(String rootName) { method in class:ZipFileIndex.DirectoryEntry
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java498 PolicyEntry[] getEntry() { method in class:PolicyTool
1022 PolicyEntry entries[] = tool.getEntry();
1555 entries = tool.getEntry();
2210 PolicyEntry entries[] = tool.getEntry();
2453 PolicyEntry entries[] = tool.getEntry();
3621 PolicyEntry entries[] = tool.getEntry();
3627 entries = tool.getEntry();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFFileParser.java755 public DebugDirectoryEntry getEntry(int i) { method in class:COFFFileParser.COFFFileImpl.COFFHeaderImpl.DebugDirectoryImpl

Completed in 108 milliseconds

12