Searched defs:Entry (Results 51 - 59 of 59) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/failover/
H A DCheckAttributedTree.java559 Entry e = new Entry(file, check, encl, self);
580 showEntry((Entry) entries.getSelectedItem());
623 private void showEntry(Entry e) {
759 private class Entry { class in class:CheckAttributedTree.Viewer
760 Entry(JavaFileObject file, String check, Info encl, Info self) { method in class:CheckAttributedTree.Viewer.Entry
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java1039 private Entry[] table;
1053 private Entry[] newTable(int n) {
1054 return new Entry[n];
1111 Entry entry = (Entry) x;
1113 Entry prev = table[i];
1114 Entry p = prev;
1116 Entry next = p.next;
1137 private Entry[] getTable() {
1156 Entry[] ta
1263 private static class Entry extends WeakReference<MethodType> { class in class:MethodType.WeakInternSet
1270 Entry(MethodType key, method in class:MethodType.WeakInternSet.Entry
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DConstantPool.java143 class Entry implements Comparable { class in class:ConstantPool
147 protected Entry(byte tag) { method in class:ConstantPool.Entry
155 public Entry getRef(int i) {
159 public boolean eq(Entry that) { // same reference
178 Entry that = (Entry) o;
208 class Utf8Entry extends Entry {
255 class LiteralEntry extends Entry {
301 public Entry getRef(int i) { return i == 0 ? ref : null; }
303 StringEntry(Entry re
[all...]
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp42 enum Entries { Entry, enumerator in enum:CodeOffsets::Entries
63 _values[Entry ] = 0;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipFileIndex.java99 private Entry[] entries;
210 entries = Entry.EMPTY_ARRAY;
234 synchronized Entry getZipIndexEntry(RelativePath path) {
327 Entry entry = getZipIndexEntry(path);
334 Entry entry = getZipIndexEntry(path);
352 Entry entry = getZipIndexEntry(path);
358 synchronized byte[] read(Entry entry) throws IOException {
366 Entry entry = getZipIndexEntry(path);
372 synchronized int read(Entry entry, byte[] buffer)
378 private byte[] readBytes(Entry entr
1063 static class Entry implements Comparable<Entry> { class in class:ZipFileIndex
1080 public Entry(RelativePath path) { method in class:ZipFileIndex.Entry
1084 public Entry(RelativeDirectory directory, String name) { method in class:ZipFileIndex.Entry
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DTreeMap.java83 * <p>All {@code Map.Entry} pairs returned by methods in this class
85 * produced. They do <strong>not</strong> support the {@code Entry.setValue}
118 private transient Entry<K,V> root = null;
244 for (Entry<K,V> e = getFirstEntry(); e != null; e = successor(e))
273 Entry<K,V> p = getEntry(key);
337 final Entry<K,V> getEntry(Object key) {
344 Entry<K,V> p = root;
363 final Entry<K,V> getEntryUsingComparator(Object key) {
367 Entry<K,V> p = root;
387 final Entry<
1889 static final class Entry<K,V> implements Map.Entry<K,V> { class in class:TreeMap
1901 Entry(K key, V value, Entry<K,V> parent) { method in class:TreeMap.Entry
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java2036 private WeakHashMap<MethodSymbol, SoftReference<Map<TypeSymbol, Entry>>> _map =
2037 new WeakHashMap<MethodSymbol, SoftReference<Map<TypeSymbol, Entry>>>();
2039 class Entry { class in class:Types.ImplementationCache
2045 public Entry(MethodSymbol cachedImpl, method in class:Types.ImplementationCache.Entry
2063 SoftReference<Map<TypeSymbol, Entry>> ref_cache = _map.get(ms);
2064 Map<TypeSymbol, Entry> cache = ref_cache != null ? ref_cache.get() : null;
2066 cache = new HashMap<TypeSymbol, Entry>();
2067 _map.put(ms, new SoftReference<Map<TypeSymbol, Entry>>(cache));
2069 Entry e = cache.get(origin);
2074 cache.put(origin, new Entry(imp
2112 class Entry { class in class:Types.MembersClosureCache
2116 public Entry(boolean skipInterfaces, CompoundScope compoundScope) { method in class:Types.MembersClosureCache.Entry
[all...]
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java313 Entry e;
322 e = new Entry(inode.name); // pseudo directory
339 Entry e = getEntry0(path); // ensureOpen checked
342 if (e.type == Entry.CEN)
343 e.type = Entry.COPY; // copy e
424 Entry e = new Entry(dir, Entry.NEW);
442 Entry eSrc = getEntry0(src); // ensureOpen checked
457 Entry eDs
1785 static class Entry extends IndexNode { class in class:ZipFileSystem
1817 Entry() {} method in class:ZipFileSystem.Entry
1819 Entry(byte[] name) { method in class:ZipFileSystem.Entry
1828 Entry(byte[] name, int type) { method in class:ZipFileSystem.Entry
1833 Entry (Entry e, int type) { method in class:ZipFileSystem.Entry
1853 Entry (byte[] name, Path file, int type) { method in class:ZipFileSystem.Entry
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java1697 private List<Entry> pool = new ArrayList<Entry>(32);
1823 for (Entry e : pool) {
1831 private short addEntry(Entry entry) {
1890 * Entry is the abstact superclass of all constant pool entry types
1894 private static abstract class Entry { class in class:ProxyGenerator.ConstantPool
1907 private static class ValueEntry extends Entry {
1951 private static class IndirectEntry extends Entry {

Completed in 53 milliseconds

123