Searched refs:top (Results 1 - 25 of 586) sorted by relevance

1234567891011>>

/openjdk9/nashorn/test/script/basic/es6/
H A Dlet-load-lib.js35 // top level function should be visible
36 function top() { function
37 print("top level function");
46 top();
H A Dlet-load.js46 top();
/openjdk9/corba/src/java.corba/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...]
/openjdk9/jdk/src/java.desktop/unix/native/libawt_xawt/awt/
H A Dawt_Insets.h29 jfieldID top; member in struct:InsetsIDs
/openjdk9/jdk/src/java.desktop/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...]
/openjdk9/jdk/make/src/classes/build/tools/generatenimbus/
H A DInsets.java31 @XmlAttribute int top; field in class:Insets
40 public Insets(int top, int left, int bottom, int right) { argument
41 this.top = top;
50 uiSuffix, top, left, bottom, right);
H A DBorder.java38 @XmlAttribute private int top; field in class:Border
47 painter, top, left, bottom, right);
50 top, left, bottom, right);
/openjdk9/hotspot/src/share/vm/gc/serial/
H A DtenuredGeneration.inline.hpp44 if (addr < _the_space->top()) {
47 assert(addr == _the_space->top(), "non-block head arg to block_size");
48 return _the_space->end() - _the_space->top();
53 return addr < _the_space ->top();
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/border/
H A DEmptyBorder.java61 * The top inset of the border.
63 protected int top; field in class:EmptyBorder
71 * @param top the top inset of the border
76 public EmptyBorder(int top, int left, int bottom, int right) { argument
77 this.top = top;
89 this.top = borderInsets.top;
108 insets.top
[all...]
H A DMatteBorder.java63 * @param top the top inset of the border
69 public MatteBorder(int top, int left, int bottom, int right, Color matteColor) { argument
70 super(top, left, bottom, right);
87 * @param top the top inset of the border
93 public MatteBorder(int top, int left, int bottom, int right, Icon tileIcon) { argument
94 super(top, left, bottom, right);
112 * the tile icon, where the top and bottom will be equal to the
136 g.fillRect(0, 0, width - insets.right, insets.top);
[all...]
/openjdk9/hotspot/src/share/vm/gc/shared/
H A DspaceDecorator.cpp56 // Mangle between top and the high water mark. Safeguard
60 if (top() < mangled_end) {
61 MemRegion mangle_mr(top(), mangled_end);
79 MemRegion mangle_mr(top(), end());
91 // Check that top, top_for_allocations and the last
102 assert(top() == end() ||
103 (is_mangled(top())), "Top not mangled");
104 assert((top_for_allocations() < top()) ||
108 assert(top() == end() ||
122 HeapWord* q = top();
[all...]
H A Dspace.cpp47 HeapWord* DirtyCardToOopClosure::get_actual_top(HeapWord* top, argument
63 top = top_obj + oop(top_obj)->size();
67 top = top_obj;
70 assert(top == _sp->end(), "only case where top_obj == NULL");
72 return top;
77 HeapWord* top) {
86 for (; bottom < top; bottom += _sp->block_size(bottom)) {
123 HeapWord* top = mr.end(); local
133 top <= _last_bottom,
141 assert(top_obj <= top, "jus
75 walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top) argument
188 get_actual_top(HeapWord* top, HeapWord* top_obj) argument
210 walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top) argument
[all...]
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...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/
H A DInsetsUIResource.java55 * @param top the inset from the top
60 public InsetsUIResource(int top, int left, int bottom, int right) { argument
61 super(top, left, bottom, right);
/openjdk9/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
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/
H A DContiguousSpace.java56 public Address top() { method in class:ContiguousSpace
67 return top().minus(bottom());
72 return end().minus(top());
78 return new MemRegion(bottom(), top());
84 res.add(new MemRegion(bottom(), top()));
90 return (bottom().lessThanOrEqual(p) && top().greaterThan(p));
95 top() + "," + end() + ")");
/openjdk9/jdk/test/java/nio/file/WatchService/
H A DFileTreeModifier.java61 static void doTest(Path top) throws IOException { argument
62 FileSystem fs = top.getFileSystem();
66 Path subdir = Files.createDirectories(top.resolve("a").resolve("b").resolve("c"));
70 WatchKey key = top.register(watcher,
75 checkExpectedEvent(watcher, ENTRY_CREATE, top.relativize(file));
80 WatchKey k = top.register(watcher,
87 checkExpectedEvent(watcher, ENTRY_DELETE, top.relativize(file));
92 k = top.register(watcher, new WatchEvent.Kind<?>[]{ ENTRY_CREATE });
110 file = Files.createFile(top.resolve("bar"));
111 checkExpectedEvent(watcher, ENTRY_CREATE, top
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DXPathParser.java858 int top)
862 return action_obj.CUP$XPathParser$do_action(act_num, parser, stack, top);
1146 int CUP$XPathParser$top)
1160 CUP$XPathParser$result = new com.sun.java_cup.internal.runtime.Symbol(37/*QName*/, ((com.sun.java_cup.internal.runtime.Symbol)CUP$XPathParser$stack.elementAt(CUP$XPathParser$top-0)).left, ((com.sun.java_cup.internal.runtime.Symbol)CUP$XPathParser$stack.elementAt(CUP$XPathParser$top-0)).right, RESULT);
1169 CUP$XPathParser$result = new com.sun.java_cup.internal.runtime.Symbol(37/*QName*/, ((com.sun.java_cup.internal.runtime.Symbol)CUP$XPathParser$stack.elementAt(CUP$XPathParser$top-0)).left, ((com.sun.java_cup.internal.runtime.Symbol)CUP$XPathParser$stack.elementAt(CUP$XPathParser$top-0)).right, RESULT);
1178 CUP$XPathParser$result = new com.sun.java_cup.internal.runtime.Symbol(37/*QName*/, ((com.sun.java_cup.internal.runtime.Symbol)CUP$XPathParser$stack.elementAt(CUP$XPathParser$top-0)).left, ((com.sun.java_cup.internal.runtime.Symbol)CUP$XPathParser$stack.elementAt(CUP$XPathParser$top-0)).right, RESULT);
1187 CUP$XPathParser$result = new com.sun.java_cup.internal.runtime.Symbol(37/*QName*/, ((com.sun.java_cup.internal.runtime.Symbol)CUP$XPathParser$stack.elementAt(CUP$XPathParser$top
854 do_action( int act_num, com.sun.java_cup.internal.runtime.lr_parser parser, java.util.Stack stack, int top) argument
[all...]
/openjdk9/jdk/test/java/nio/file/Files/walkFileTree/
H A DMaxDepth.java39 Path top = CreateFileTree.create();
41 test(top);
43 TestUtil.removeAll(top);
47 static void test(final Path top) throws IOException { argument
51 Files.walkFileTree(top, opts, maxDepth, new SimpleFileVisitor<Path>() {
52 // compute depth based on relative path to top directory
54 Path rp = file.relativize(top);
H A DTerminateWalk.java55 Path top = CreateFileTree.create();
57 test(top);
59 TestUtil.removeAll(top);
/openjdk9/hotspot/src/share/vm/opto/
H A Drootnode.cpp66 Node* top = Compile::current()->top(); local
68 init_req(TypeFunc::I_O, top);
69 init_req(TypeFunc::Memory, top);
71 init_req(TypeFunc::ReturnAdr,top);
/openjdk9/corba/make/
H A DMakefile37 # Try to locate top-level makefile
40 $(info Will run $(subsystem_name) target on top-level Makefile)
44 $(info Cannot locate top-level Makefile. Is this repo not checked out as part of a complete forest?)
45 $(error Build from top-level Makefile instead)
/openjdk9/jdk/src/demo/share/jfc/Metalworks/
H A DMetalworksInBox.java65 DefaultMutableTreeNode top = new DefaultMutableTreeNode("Mail Boxes");
67 top.add(unread = new DefaultMutableTreeNode("Unread Mail"));
68 top.add(personal = new DefaultMutableTreeNode("Personal"));
69 top.add(business = new DefaultMutableTreeNode("Business"));
70 top.add(spam = new DefaultMutableTreeNode("Spam"));
102 JTree tree = new JTree(top);
/openjdk9/hotspot/src/share/vm/gc/parallel/
H A DpsPromotionLAB.cpp54 debug_only(Copy::fill_to_words(top(), free()/HeapWordSize, badHeapWord));
67 assert(this->top() <= this->end(), "pointers out of order");
74 assert(top() <= end(), "pointers out of order");
84 typeArrayOop filler_oop = (typeArrayOop) top();
88 pointer_delta(tlab_end, top()) - typeArrayOopDesc::header_size(T_INT);
110 assert(object_end == top(), "Not matching last allocation");
123 assert(top() <= end(), "pointers out of order");
128 HeapWord* obj = top();

Completed in 99 milliseconds

1234567891011>>