Searched defs:top (Results 1 - 25 of 128) sorted by relevance

123456

/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Insets.h29 jfieldID top; member in struct:InsetsIDs
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DInsetsUIResource.java52 public InsetsUIResource(int top, int left, int bottom, int right) { argument
53 super(top, left, bottom, right);
/openjdk7/hotspot/src/share/vm/opto/
H A Drootnode.cpp64 Node* top = Compile::current()->top(); local
66 init_req(TypeFunc::I_O, top);
67 init_req(TypeFunc::Memory, top);
69 init_req(TypeFunc::ReturnAdr,top);
/openjdk7/jdk/test/java/nio/file/WatchService/
H A DFileTreeModifier.java60 static void doTest(Path top) throws IOException { argument
61 FileSystem fs = top.getFileSystem();
65 Path subdir = Files.createDirectories(top.resolve("a").resolve("b").resolve("c"));
69 WatchKey key = top.register(watcher,
74 checkExpectedEvent(watcher, ENTRY_CREATE, top.relativize(file));
79 WatchKey k = top.register(watcher,
86 checkExpectedEvent(watcher, ENTRY_DELETE, top.relativize(file));
91 k = top.register(watcher, new WatchEvent.Kind<?>[]{ ENTRY_CREATE });
109 file = Files.createFile(top.resolve("bar"));
110 checkExpectedEvent(watcher, ENTRY_CREATE, top
[all...]
H A DSensitivityModifier.java55 static void doTest(Path top) throws Exception { argument
56 FileSystem fs = top.getFileSystem();
65 dirs[i] = Files.createDirectory(top.resolve("dir" + i));
/openjdk7/jaxp/src/com/sun/java_cup/internal/runtime/
H A Dvirtual_parse_stack.java32 * replaces the top portion of the actual parse stack (the part that
81 * This is measured from top of stack, so 0 would indicate that no
88 /** The virtual top portion of the stack. This stack contains Integer
89 * objects with state numbers. This stack shadows the top portion
132 /** Return value on the top of the stack (without popping it). */
133 public int top() throws java.lang.Exception method in class:virtual_parse_stack
137 "Internal parser error: top() called on empty virtual stack");
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClassStack.java74 public JavaClass top() { return (JavaClass)stack.peek(); } method in class:ClassStack
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DStackImpl.java37 private int top = -1 ; field in class:StackImpl
41 return top == -1;
44 // Looks at the object at the top of this stack without removing it
50 return data[ top ];
53 // Removes the object at the top of this stack and returns that
57 data[top] = null ;
58 top-- ;
64 if (top == (data.length-1)) {
72 // Pushes an item onto the top of the stack
75 top
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/gc_implementation/shared/
H A DMutableSpace.java57 public Address top() { return topField.getValue(addr); } method in class:MutableSpace
61 return top().minus(bottom());
67 res.add(new MemRegion(bottom(), top()));
73 top() + "," + end() + "] ");
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1HRPrinter.cpp78 HeapRegion* hr, HeapWord* top) {
84 if (top != NULL) {
86 action_str, type_str, bottom, top);
92 if (top != NULL) {
94 action_str, bottom, top);
77 print(ActionType action, RegionType type, HeapRegion* hr, HeapWord* top) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DliveRange.hpp38 LiveRange(HeapWord* bottom, HeapWord* top): MemRegion(bottom, top) {} argument
H A DspaceDecorator.hpp54 // the region between the new top and the top just before a
64 // The class SpaceMangler keeps a pointer to the top of the allocated
79 // and remangling is needed between the current top and this
87 // makes it always below top so that mangling done as part
93 // Methods for top and end that delegate to the specific
95 virtual HeapWord* top() const = 0;
105 // Mangle only the region not previously mangled [top, top_previously_mangled)
107 // Mangle all the unused region [top, end)
130 HeapWord* top() cons function in class:GenSpaceMangler
143 HeapWord* top() const { return _sp->top(); } function in class:MutableSpaceMangler
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifOptionPaneUI.java99 * <code>getIcon</code> to <code>top</code>. This is messaged from
102 protected void addIcon(Container top) { argument
110 top.add(iconLabel, "West");
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DThreadGroupIterator.java67 private Iterator<ThreadGroupReference> top() { method in class:ThreadGroupIterator
72 * The invariant in this class is that the top iterator
74 * empty, there is no top. This method assures
79 while (!stack.isEmpty() && !top().hasNext()) {
95 ThreadGroupReference tg = top().next();
/openjdk7/jdk/src/share/classes/java/awt/
H A DInsets.java43 * The inset from the top.
50 public int top; field in class:Insets
97 * specified top, left, bottom, and right insets.
98 * @param top the inset from the top.
103 public Insets(int top, int left, int bottom, int right) { argument
104 this.top = top;
111 * Set top, left, bottom, and right to the specified values
113 * @param top th
119 set(int top, int left, int bottom, int right) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/redefineMethod/
H A DDifferent_RedefineSubTarg.java4 void top() { method in class:RedefineSubTarg
9 top(); // 9
H A DRedefineSubTarg.java2 void top() { method in class:RedefineSubTarg
6 top(); // 6
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DContiguousSpace.java55 public Address top() { method in class:ContiguousSpace
66 return top().minus(bottom());
71 return end().minus(top());
77 return new MemRegion(bottom(), top());
83 res.add(new MemRegion(bottom(), top()));
89 return (bottom().lessThanOrEqual(p) && top().greaterThan(p));
94 top() + "," + end() + ")");
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DEmptyBorder.java51 protected int left, right, top, bottom; field in class:EmptyBorder
55 * @param top the top inset of the border
60 public EmptyBorder(int top, int left, int bottom, int right) { argument
61 this.top = top;
73 this.top = borderInsets.top;
92 insets.top = top;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadGroupIterator.java64 private Iterator<ThreadGroupReference> top() { method in class:ThreadGroupIterator
69 * The invariant in this class is that the top iterator
71 * empty, there is no top. This method assures
76 while (!stack.isEmpty() && !top().hasNext()) {
92 ThreadGroupReference tg = top().next();
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAbstractMenuItem.java35 void paint(Graphics g, int top, int bottom, int width, int shortcutOffset, boolean selected); argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMTreeWalker.java112 int top = pos; // Remember the root of this subtree
122 if (top == pos)
131 if ((DTM.NULL == pos) || (top == pos))
133 // %REVIEW% This condition isn't tested in traverse(pos,top)
155 * @param top Node in the tree where to end traversal.
156 * If top==DTM.NULL, run through end of document.
160 public void traverse(int pos, int top) throws org.xml.sax.SAXException argument
163 // if(top==DTM.NULL) top=0
175 if ((DTM.NULL != top)
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/readers/
H A DTextCatalogReader.java67 protected int top = -1; field in class:TextCatalogReader
249 // loop back to the top and start again...
251 stack[++top] = nextch;
252 stack[++top] = ch;
273 stack[++top] = ch;
274 stack[++top] = nextch;
297 if (top < 0) {
300 return stack[top--];
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DTreeWalker.java144 Node top = pos;
156 if (top.equals(pos))
165 if ((null == pos) || (top.equals(pos)))
191 * @param top Node in the tree where to end traversal
195 public void traverse(Node pos, Node top) throws org.xml.sax.SAXException argument
210 if ((null != top) && top.equals(pos))
219 if ((null == pos) || ((null != top) && top.equals(pos)))
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DTreeWalker.java176 Node top = pos;
188 if (top.equals(pos))
197 if ((null == pos) || (top.equals(pos)))
222 * @param top Node in the tree where to end traversal
226 public void traverse(Node pos, Node top) throws org.xml.sax.SAXException argument
241 if ((null != top) && top.equals(pos))
250 if ((null == pos) || ((null != top) && top.equals(pos)))

Completed in 80 milliseconds

123456