Searched refs:to (Results 51 - 75 of 331) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DLineWidget.java16 * 2 along with this work; if not, write to the Free Software Foundation,
65 private Point to; field in class:LineWidget
75 public LineWidget(DiagramScene scene, OutputSlot s, List<Connection> connections, Point from, Point to, LineWidget predecessor, SceneAnimator animator, boolean isBold, boolean isDashed) { argument
81 this.to = to;
93 int maxX = to.x;
94 int maxY = to.y;
130 return to;
171 g.drawLine(from.x, from.y, to.x, to
[all...]
H A DMultiConnectionWidget.java16 * 2 along with this work; if not, write to the Free Software Foundation,
63 public Point to; field in class:MultiConnectionWidget.Route
68 public Route(Point from, Point to) { argument
70 assert to != null;
72 this.to = to;
81 return r.from.equals(from) && r.to.equals(to);
89 return ((((from.x * 1711) + from.y) * 1711 + to.x) * 1711 + to
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableModel.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
36 * uses a <code>Vector</code> of <code>Vectors</code> to store the
45 * <code>TableRowSorter</code> you are strongly encouraged to override
46 * <code>getColumnClass</code> to return the appropriate type.
54 * has been added to the <code>java.beans</code> package.
148 * to the <code>setDataVector</code> method.
165 * to the <code>setDataVector</code>
182 * each a single row of values. In other words, to get to th
257 justifyRows(int from, int to) argument
439 moveRow(int start, int end, int to) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMultiHashtable.java14 * Unless required by applicable law or agreed to in writing, software
43 public Object maps(Object from, Object to) { argument
50 if (item.equals(to)) {
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/charsets/
H A Dmac.txt4 # Name: cp10000_MacRoman to Unicode table
/openjdk7/hotspot/src/cpu/x86/vm/
H A DinterpreterRT_x86_64.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
42 Register InterpreterRuntime::SignatureHandlerGenerator::to() { return rsp; } function in class:InterpreterRuntime::SignatureHandlerGenerator
64 __ movl(Address(to(), _stack_offset), rax);
92 __ movl(Address(to(), _stack_offset), rax);
119 __ movptr(Address(to(), _stack_offset), rax);
147 __ movptr(Address(to(), _stack_offset), rax);
162 __ movl(Address(to(), _stack_offset), rax);
170 __ movl(Address(to(), _stack_offset), rax);
184 __ movptr(Address(to(), _stack_offset), rax);
192 __ movptr(Address(to(), _stack_offse
372 SlowSignatureHandler(methodHandle method, address from, intptr_t* to) argument
464 SlowSignatureHandler(methodHandle method, address from, intptr_t* to) argument
[all...]
H A DinterpreterRT_x86_32.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
61 __ movl(Address(to(), to_offset * wordSize), temp());
67 __ cmpptr(Address(from(), Interpreter::local_offset_in_bytes(from_offset)), (int32_t)NULL_WORD); // do not use temp() to avoid AGI
72 __ movptr(Address(to(), to_offset * wordSize), temp());
77 // generate code to handle arguments
89 Register InterpreterRuntime::SignatureHandlerGenerator::to() { return rsp; } function in class:InterpreterRuntime::SignatureHandlerGenerator
127 SlowSignatureHandler(methodHandle method, address from, intptr_t* to) : argument
130 _to = to + (is_static() ? 2 : 1);
134 IRT_ENTRY(address, InterpreterRuntime::slow_signature_handler(JavaThread* thread, methodOopDesc* method, intptr_t* from, intptr_t* to))
138 SlowSignatureHandler(m, (address)from, to
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A Dhelper.js16 * 2 along with this work; if not, write to the Free Software Foundation,
47 function removeInputs(property, regexp, from, to) {
49 if(from == undefined && to == undefined) {
51 } else if(to == undefined) {
54 f.addRule(new RemoveInputsFilter.RemoveInputsRule(new MatcherSelector(new Properties.RegexpPropertyMatcher(property, regexp)), from, to));
/openjdk7/jdk/test/com/sun/jdi/
H A DWatchFramePop.sh18 # 2 along with this work; if not, write to the Free Software Foundation,
33 # These are variables that can be set to control execution
63 System.out.println("in a3"); // After the watch, we'll run to here, line 21
64 a4(); // We'll do a 'next' to here. The failure is that this
65 } // runs to completion, or asserts with java_g
76 # drive jdb by sending cmds to it and examining its output
84 cmd next # The bug is that this next runs to completion
H A DRedefineChangeClassOrder.sh18 # 2 along with this work; if not, write to the Free Software Foundation,
36 # Would like to run this test with this option:
39 # Uncomment this to see the JDI trace
70 // This Hack code block exists to force some verification_type_info
74 // moved after the Foo2 code below which causes things to be
76 // cpool_index in the Object_variable_info has to be updated
77 // in the redefined code's StackMapTable to refer to right
120 # This is called to feed cmds to jd
[all...]
/openjdk7/jdk/test/sun/net/www/ftptest/
H A DFtpFileSystemHandler.java16 * 2 along with this work; if not, write to the Free Software Foundation,
30 * Change current directory to.
33 * @param path the path of the directory to change to, in either relative
39 * Change current directory to parent.
56 * Get the content of a file. Returns an InputStream pointing to the
71 * pointing to the content (in text form) of the current directory.
77 * pointing to it.
91 * @param name the path of the directory to create, which can be
100 * @param from the name of the file to renam
105 rename(String from, String to) argument
[all...]
/openjdk7/jdk/test/java/util/Collections/
H A DAddAll.java16 * 2 along with this work; if not, write to the Free Software Foundation,
62 private static Integer[] range(int from, int to) { argument
63 Integer[] result = new Integer[to - from];
64 for (int i = from, j=0; i < to; i++, j++)
/openjdk7/langtools/test/tools/javah/4942232/
H A DTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
110 void copy(File from, File to) throws IOException { argument
111 if (to.isDirectory())
112 to = new File(to, from.getName());
114 FileOutputStream out = new FileOutputStream(to)) {
/openjdk7/hotspot/agent/test/jdi/
H A Drunsa.sh17 # 2 along with this work; if not, write to the Free Software Foundation,
35 Run sagclient.class using Serviceability Agent to talk to a corefile/pid/debugserver.
38 -jdk means to use that jdk. Default is 1.4.1/latest.
39 -jdbx means to run it under jdbx
40 -jdb means to connect using jdb instead of the sagclient program.
41 -remote debugserver means you want to connect to a remote debug server
99 # We have to pass the name of the program that produced the
154 # Have to d
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DinterfaceSupport.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
51 // Wrapper for all entry points to the virtual machine.
55 // to the saved values in that HandleMark.
76 // VM_ENTRY_BASE macros. These macros are used to guard entry points into
91 // Helper methods used to implement +ScavengeALot and +FullGCALot
141 static inline void transition(JavaThread *thread, JavaThreadState from, JavaThreadState to) { argument
144 assert((from & 1) == 0 && (to & 1) == 0, "odd numbers are transitions states");
146 // Change to transition state (assumes total store ordering! -Urs)
155 // store to serialize page so VM thread can do pseudo remote membar
163 thread->set_thread_state(to);
174 transition_and_fence(JavaThread *thread, JavaThreadState from, JavaThreadState to) argument
202 transition_from_java(JavaThread *thread, JavaThreadState to) argument
207 transition_from_native(JavaThread *thread, JavaThreadState to) argument
237 trans(JavaThreadState from, JavaThreadState to) argument
238 trans_from_java(JavaThreadState to) argument
239 trans_from_native(JavaThreadState to) argument
240 trans_and_fence(JavaThreadState from, JavaThreadState to) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Descape.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
51 // - PointsTo (-P>) {LV, OF} to JO
52 // - Deferred (-D>) from {LV, OF} to {LV, OF}
53 // - Field (-F>) from JO to OF
58 // point to.
60 // The algorithm describes how to construct the connection graph
72 // to the static memory.
81 // The LoadP, Proj and CheckCastPP behave like variables assigned to only once.
82 // Only a Phi can have multiple assignments. Each input to a Phi is treated
83 // as an assignment to i
458 add_edge(PointsToNode* from, PointsToNode* to) argument
479 add_base(FieldNode* from, PointsToNode* to) argument
504 add_local_var_and_edge(Node* n, PointsToNode::EscapeState es, Node* to, Unique_Node_List *delayed_worklist) argument
553 set_map(Node* from, Node* to) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/doc-files/
H A DModality.txt8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
52 to get native focus. All the AWT windows use global active focus
53 input model (see ICCCM for details) and listens to WM_TAKE_FOCUS
54 protocol. If the window manager asks AWT to set focus on the
56 set the focus to the window's blocker.
60 According to the Modality spec any modal dialog should be always on
64 WM_TRANSIENT_FOR is used to mark one window to be a child of another
76 are set to nul
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DasParNewGeneration.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
55 // reports false, do not attempt to resize the spaces.
104 // Don't let the space shrink to 0
118 // The only space available for shrinking is in to-space if it
120 if (to()->bottom() > from()->bottom()) {
122 if (to()->capacity() < alignment) {
125 return to()->capacity() - alignment;
136 // bytes to the minimum young gen size
137 // bytes to the size currently being used + some small extra
140 // to maintai
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_32.s16 # 2 along with this work; if not, write to the Free Software Foundation,
57 # Set fpu to 53 bit precision. This happens too early to use a stub.
70 ## routine to vet the address. If the address is the faulting LD then
94 # void* to,
103 movl 8+ 8(%esp),%edi # to
109 # copy from low to high
130 jz 4f # no dwords to move
158 # copy from high to low
161 leal -4(%edi,%ecx),%edi # to
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1OopClosures.inline.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
35 * This really ought to be an inline function, but apparently the C++
36 * compiler sometimes sees fit to ignore inline declarations. Sigh.
59 // This closure is applied to the fields of the objects that have just been copied.
67 // We're not going to even bother checking whether the object is
69 // stall. We'll try to prefetch the object (for write, given that
70 // we might need to install the forwarding reference) and we'll
71 // get back to it when pop it from the queue
75 // slightly paranoid test; I'm trying to catch potential
76 // problems before we go into push_on_queue to kno
175 HeapRegion* to = _g1->heap_region_containing(obj); local
[all...]
/openjdk7/hotspot/src/share/tools/hsdis/
H A Dhsdis-demo.c16 * 2 along with this work; if not, write to the Free Software Foundation,
177 /* return non-null to notify hsdis not to print the addr */
189 void disassemble(void* from, void* to) { argument
195 printf("Decoding from %p to %p...\n", from, to);
200 res = (*decode_instructions)(from, to, NULL, stdout, NULL, stdout, options);
202 res = (*decode_instructions)(from, to, NULL, NULL, NULL, stdout, options);
204 res = (*decode_instructions)(from, to,
209 if (res != to)
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DEnvironment.java8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
37 * It is used to load classes, resolve class names and
45 * Environments can be nested to change the source object.<p>
49 * they are subject to change or removal without notice.
56 * The actual environment to which everything is forwarded.
83 * Tells whether an Identifier refers to a package which should be
101 * of a call to 'resolveName' or a synthetic class name.
117 // to do the lookup in this case. This is part of a fix for bugid
120 // 'ClassName.N'. Note that the '.' qualifications get converted to
643 isMoreSpecific(Type from, Type to) argument
651 implicitCast(Type from, Type to) argument
712 explicitCast(Type from, Type to) argument
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dlinux_x86_32.s16 # 2 along with this work; if not, write to the Free Software Foundation,
49 ## routine to vet the address. If the address is the faulting LD then
73 # void* to,
82 movl 8+ 8(%esp),%edi # to
88 # copy from low to high
109 jz 4f # no dwords to move
137 # copy from high to low
140 leal -4(%edi,%ecx),%edi # to + count - 4
147 jz 4f # no dwords to move
179 # void* to,
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dsolaris_x86_32.s16 // 2 along with this work; if not, write to the Free Software Foundation,
49 / Set fpu to 53 bit precision. This happens too early to use a stub.
106 / void* to,
114 movl 8+ 8(%esp),%edi / to
120 / copy from low to high
141 jz 4f / no dwords to move
169 / copy from high to low
172 leal -4(%edi,%ecx),%edi / to + count - 4
179 jz 4f / no dwords to mov
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DDefNewGeneration.java16 * 2 along with this work; if not, write to the Free Software Foundation,
35 to-space. */
75 public ContiguousSpace to() { method in class:DefNewGeneration
79 public long capacity() { return eden().capacity() + from().capacity(); /* to() is only used during scavenge */ }
80 public long used() { return eden().used() + from().used(); /* to() is only used during scavenge */ }
81 public long free() { return eden().free() + from().free(); /* to() is only used during scavenge */ }
92 blk.doSpace(to());
101 tty.print("\n to ");
102 to().printOn(tty);

Completed in 38 milliseconds

1234567891011>>