Searched refs:Item (Results 1 - 13 of 13) sorted by relevance

/openjdk7/hotspot/test/compiler/6843752/
H A DTest.java33 Item list;
35 static class Item { class in class:Test
36 public Item next;
37 public Item prev;
40 Item(boolean r) { remove = r; } method in class:Test.Item
43 private void linkIn(Item item) {
44 Item head = list;
57 private void linkOut(Item item) {
58 Item head = list;
73 Item ite
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassWriter.java244 * Normal type Item stored in the ClassWriter {@link ClassWriter#typeTable},
251 * Uninitialized type Item stored in the ClassWriter
259 * Merged type Item stored in the ClassWriter {@link ClassWriter#typeTable},
288 Item[] items;
298 final Item key;
303 final Item key2;
308 final Item key3;
315 * the Item whose index is <tt>i</tt>. All Item objects stored in this
317 * allow to retrieve an Item fro
[all...]
H A DItem.java68 final class Item { class
85 * Special Item types are used for Items that are stored in the ClassWriter
131 Item next;
134 * Constructs an uninitialized {@link Item}.
136 Item() { method in class:Item
140 * Constructs an uninitialized {@link Item} for constant pool element at
145 Item(final int index) { method in class:Item
155 Item(final int index, final Item i) { method in class:Item
255 boolean isEqualTo(final Item
[all...]
H A DAnnotationWriter.java215 Item i = cw.newConstItem(value);
H A DClassReader.java309 Item[] items2 = new Item[ll];
313 Item item = new Item(i);
H A DMethodWriter.java771 Item i = cw.newClassItem(type);
796 Item i = cw.newFieldItem(owner, name, desc);
838 Item i = cw.newMethodItem(owner, name, desc, itf);
847 * several times this variation for the same Item, we use the
1032 Item i = cw.newConstItem(cst);
1152 Item i = cw.newClassItem(desc);
H A DFrame.java175 * in an index into the type table (the Item at that index contains both an
856 final Item item)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DItems.java70 private final Item voidItem;
71 private final Item thisItem;
72 private final Item superItem;
73 private final Item[] stackItem = new Item[TypeCodeCount];
79 voidItem = new Item(VOIDcode) {
91 Item makeVoidItem() {
96 Item makeThisItem() {
102 Item makeSuperItem() {
109 Item makeStackIte
186 abstract class Item { class in class:Items
192 Item(int typecode) { method in class:Items.Item
[all...]
H A DGen.java673 Item result;
828 public Item genExpr(JCTree tree, Type pt) {
1116 Item sel = genExpr(tree.selector, syms.intType);
1409 Item excVar = makeTemp(syms.throwableType);
1659 Item r = genExpr(tree.expr, pt).load();
1686 Item m = genExpr(tree.meth, methodType);
1742 Item arr = makeNewArray(tree.pos(), tree.type, 1);
1763 Item makeNewArray(DiagnosticPosition pos, Type type, int ndims) {
1785 Item l = genExpr(tree.lhs, tree.lhs.type);
1792 Item
[all...]
/openjdk7/jdk/test/java/io/Serializable/sanityCheck/
H A DSanityCheck.java32 class Item implements Serializable { class in inherits:Serializable
59 Item() { method in class:Item
99 if (!(obj instanceof Item)) {
102 Item other = (Item) obj;
135 Item item = new Item();
141 Item itemcopy = (Item) oin.readObject();
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DExtern.java53 * Map package names onto Extern Item objects.
56 private Map<String,Item> packageToItemMap;
71 private class Item { class in class:Extern
90 * Constructor to build a Extern Item object and map it with the package name.
92 * Item object or offline location will be retained.
99 Item(String packageName, String path, boolean relative) { method in class:Extern.Item
104 packageToItemMap = new HashMap<String,Item>();
145 Item fnd = findPackageItem(pkgName);
180 * Get the Extern Item object associated with this package name.
184 private Item findPackageIte
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Font.h265 class Item { class in class:AwtFontCache
267 Item(const WCHAR* s, HFONT f, Item* n = NULL);
268 ~Item();
272 Item* next;
285 LONG IncRefCount(Item* item);
286 LONG DecRefCount(Item* item);
289 Item* m_head;
H A Dawt_Font.cpp1089 fontCache.m_head = new Item(name, font, fontCache.m_head);
1094 Item* item = fontCache.m_head;
1095 Item* lastItem = NULL;
1109 Item* item = fontCache.m_head;
1122 Item* item = fontCache.m_head;
1123 Item* lastItem = NULL;
1144 Item* item = m_head;
1145 Item* next;
1162 Item* item = fontCache.m_head;
1174 LONG AwtFontCache::IncRefCount(Item* ite
1192 AwtFontCache::Item::Item(const WCHAR* s, HFONT f, AwtFontCache::Item* n ) function in class:AwtFontCache::Item
[all...]

Completed in 92 milliseconds