Searched defs:to (Results 76 - 100 of 169) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/java/text/
H A DRBCollationTables.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,
34 * patents. This notice and attribution to Taligent may not be removed.
90 * from gaining direct access to the internals of this class.
96 * This function is used by RBTableBuilder to fill in all the members of this
98 * class, but to avoid changing too much of the logic, it carries around "shadow"
247 // need to consider supplementary pair.
248 static void reverse (StringBuffer result, int from, int to) argument
253 int j = to - 1;
/openjdk7/jdk/src/share/classes/java/util/
H A DArrays.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,
33 * that allows arrays to be viewed as lists.
41 * <i>specification</i>. Implementors should feel free to substitute other
42 * algorithms, so long as the specification itself is adhered to. (For
43 * example, the algorithm used by {@code sort(Object[])} does not have to be
44 * a MergeSort, but it does have to be <i>stable</i>.)
70 * quicksorts to degrade to quadratic performance, and is typically
73 * @param a the array to b
2473 copyOfRange(T[] original, int from, int to) argument
2508 copyOfRange(U[] original, int from, int to, Class<? extends T[]> newType) argument
2546 copyOfRange(byte[] original, int from, int to) argument
2582 copyOfRange(short[] original, int from, int to) argument
2618 copyOfRange(int[] original, int from, int to) argument
2654 copyOfRange(long[] original, int from, int to) argument
2690 copyOfRange(char[] original, int from, int to) argument
2726 copyOfRange(float[] original, int from, int to) argument
2762 copyOfRange(double[] original, int from, int to) argument
2798 copyOfRange(boolean[] original, int from, int to) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DMatcher.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,
34 * Pattern#matcher matcher} method. Once created, a matcher can be used to
39 * <li><p> The {@link #matches matches} method attempts to match the entire
42 * <li><p> The {@link #lookingAt lookingAt} method attempts to match the
66 * #appendTail appendTail} methods can be used in tandem in order to collect
68 * #replaceAll replaceAll} method can be used to create a string in which every
78 * <p> The explicit state of a matcher is initially undefined; attempting to
80 * IllegalStateException} to be thrown. The explicit state of a matcher is
91 * to zer
122 int from, to; field in class:Matcher
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
121 // Create another symbol to save as signature stream unreferences
163 VerificationType* from, VerificationType* to, int32_t len, TRAPS) const {
166 if (!to[i].is_assignable_from(from[i], verifier(), THREAD)) {
175 // We allow flags of {UninitThis} to assign to {} if-and-only-if the
184 // methods to cover the invokespecial instruction. See 7020118.
224 // Only need to compare type elements up to target->locals() or target->stack().
226 // assignable to bogu
162 is_assignable_to( VerificationType* from, VerificationType* to, int32_t len, TRAPS) const argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcHeapSummary.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
98 PSHeapSummary(VirtualSpaceSummary& heap_space, size_t heap_used, VirtualSpaceSummary old, SpaceSummary old_space, VirtualSpaceSummary young, SpaceSummary eden, SpaceSummary from, SpaceSummary to) : argument
99 GCHeapSummary(heap_space, heap_used), _old(old), _old_space(old_space), _young(young), _eden(eden), _from(from), _to(to) { }
105 const SpaceSummary& to() const { return _to; } function in class:PSHeapSummary
/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...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiManageCapabilities.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
38 // but to only one environment
42 // but to only one environment
46 // but to only one environment
50 // but to only one environment
218 void JvmtiManageCapabilities::copy_capabilities(const jvmtiCapabilities *from, jvmtiCapabilities *to) { argument
220 char *resultp = (char *)to;
258 // add to the set of ever acquired capabilities
351 // This controls whether the compilers keep extra locals live to
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DHeaderList.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,
60 * This list can be modified to add headers
62 * since intermediate processing layers often need to
68 * expected to preserve the order of headers in the input
75 * To perform SOAP mustUnderstang processing correctly, we need to keep
78 * a {@link Pipe} author needs to keep in mind.
82 * (that is, if it did enough computing with the header to claim that
90 * There are two ways to mark a header as understood:
95 * Most often, a {@link Pipe} knows it's going to understan
134 private String to = null; field in class:HeaderList
[all...]
/openjdk7/jdk/src/solaris/native/java/io/
H A DUnixFileSystem_md.c8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
366 jobject from, jobject to)
371 WITH_FIELD_PLATFORM_STRING(env, to, ids.path, toPath) {
365 Java_java_io_UnixFileSystem_rename0(JNIEnv *env, jobject this, jobject from, jobject to) argument
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DDefaultSynthStyle.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,
58 * Information specific to ComponentState.
67 * Font to use if there is no matching StateInfo, or the StateInfo doesn't
78 * Painter to use if the StateInfo doesn't have one.
93 * @param style Style to duplicate
163 // No color, fallback to that of the widget.
188 * @return Color to render with
211 * @param font Font to use for rendering
235 * to th
307 getInsets(SynthContext state, Insets to) argument
[all...]
/openjdk7/jdk/src/share/demo/jfc/CodePointIM/
H A DCodePointInputMethod.java16 * contributors may be used to endorse or promote products derived
33 * This source code is provided to illustrate the usage of a given feature
60 * characters to be entered using their code point or code unit values. See the
118 startComposition(); // Enter to composition mode
181 // automatically, users don't have to type these keys.
262 * Send the composed text to the client.
275 * Send the committed text to the client.
290 * Move the insertion point one position to the left in the composed text.
291 * Do not let the caret move to the left of the "\\u" or "\\U".
310 * Move the insertion point one position to th
421 getCodePoint(StringBuffer sb, int from, int to) argument
[all...]
/openjdk7/langtools/test/tools/javac/types/
H A DTypeHarness.java16 * 2 along with this work; if not, write to the Free Software Foundation,
40 * Test harness whose goal is to simplify the task of writing type-system
41 * regression test. It provides functionalities to build custom types as well
42 * as to access the underlying javac's symbol table in order to retrieve
47 * This class is meant to be a common super class for all concrete type test
49 * to write compact tests. An example is reported below:
63 * The above code is used to create two class types, namely {@code A<X,Y>} and
119 /** assert that 's' is castable to 't' */
124 /** assert that 's' is/is not castable to '
226 Mapping(Type from, Type to) argument
232 Type to; field in class:TypeHarness.Mapping
233 Mapping(Type from, Type to) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionList.java33 * "Apache BCEL" must not be used to endorse or promote products
76 * (read only) access to the list structure, such that it can be traversed and
79 * A list is finally dumped to a byte code array with <a
90 private int[] byte_positions; // byte code offsets corresponding to instructions
129 * Find the target instruction (handle) that corresponds to the given target
133 * @param pos array of positions corresponding to ihs, i.e. il.getInstructionPositions()
135 * @param target target position to search for
165 * @param pos byte code position to search for
185 * to the list.
210 byte_positions = new int[count]; // Trim to prope
797 delete(InstructionHandle from, InstructionHandle to) argument
811 delete(Instruction from, Instruction to) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLWriter.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,
46 * Stores all elements for which end tags have to
83 * Set to true after the head has been output.
88 * Set to true when entities (such as &lt;) should be replaced.
114 * @param pos the document location from which to fetch the content
115 * @param len the amount to write out
191 is correct. But, we need to make sure that if current is
253 // translate css attributes to html
559 // PENDING: should this be changed to chec
994 convertToHTML(AttributeSet from, MutableAttributeSet to) argument
1031 convertToHTML32(AttributeSet from, MutableAttributeSet to) argument
1100 addAttribute(MutableAttributeSet to, Object key, Object value) argument
1117 createFontAttribute(CSS.Attribute a, AttributeSet from, MutableAttributeSet to) argument
1141 convertToHTML40(AttributeSet from, MutableAttributeSet to) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
82 // No point in asserting barrier set type here. Need to make CardTableExtension
122 // We get passed the space_top value to prevent us from traversing into
154 // figure out when to stop scanning
204 // we know which cards to scan, now clear them
248 // We do not want to scan objects more than once. In order to accomplish
250 // belongs to us. We may need to extend the range of scanned cards if the
306 // Some objects may be large enough to spa
344 oop* to = (oop*)addr_for(following_clean_card); local
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
41 // to-space.
50 // Size of object to pretenure in words; command line provides bytes
55 // Initialize state to optimistically assume no promotion failure will
74 // Objects may be in eden, from-space, or to-space
76 // in to-space. If B exists, all roots that once pointed
77 // to A must now point to B.
79 // Eden, from-space, and to-space will all be collected by
218 ContiguousSpace* to() cons function in class:DefNewGeneration
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DbytecodeInterpreter_sparc.inline.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
46 inline void BytecodeInterpreter::VMmemCopy64(uint32_t to[2], const uint32_t from[2]) { argument
48 to[0] = from[0]; to[1] = from[1];
285 // The implementations are platform dependent. We have to worry about alignment
/openjdk7/hotspot/src/cpu/x86/vm/
H A DbytecodeInterpreter_x86.inline.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
46 inline void BytecodeInterpreter::VMmemCopy64(uint32_t to[2], const uint32_t from[2]) { argument
48 to[0] = from[0]; to[1] = from[1];
/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.inline.hpp17 * 2 along with this work; if not, write to the Free Software Foundation,
65 inline void BytecodeInterpreter::VMmemCopy64(uint32_t to[2], argument
67 *(uint64_t *) to = *(uint64_t *) from;
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.cpp17 * 2 along with this work; if not, write to the Free Software Foundation,
75 // to determine the amount of free space on the stack. We
76 // set the sp to a close approximation of the real value in
77 // order to allow this step to complete.
78 // - Step 120 (printing native stack) tries to walk the stack.
101 // Nothing to do.
129 // Note: it's not uncommon that JNI code uses signal/sigset to
130 // install then restore certain signal handler (e.g. to temporarily
138 // allow chained handler to g
480 _Copy_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) argument
494 _Copy_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
508 _Copy_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
523 _Copy_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
528 _Copy_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
533 _Copy_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
538 _Copy_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
[all...]
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.cpp17 * 2 along with this work; if not, write to the Free Software Foundation,
70 // to determine the amount of free space on the stack. We
71 // set the sp to a close approximation of the real value in
72 // order to allow this step to complete.
73 // - Step 120 (printing native stack) tries to walk the stack.
96 // Nothing to do.
124 // Note: it's not uncommon that JNI code uses signal/sigset to
125 // install then restore certain signal handler (e.g. to temporarily
133 // allow chained handler to g
424 _Copy_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) argument
438 _Copy_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
452 _Copy_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
467 _Copy_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
472 _Copy_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
477 _Copy_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
482 _Copy_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
[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/jdk/src/solaris/native/java/net/
H A Dbsd_close.c8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
59 * Signal to unblock thread
72 * then they have to set an explicit limit, higher than this,
106 "unable to allocate file descriptor table - out of memory");
158 * If fd has been interrupted then set errno to EBADF
206 * Lock the fd to hold-off additional I/O on this fd.
212 * Send a wakeup signal to all threads blocked on this
271 * Macro to perform a blocking IO operation. Restarts
314 flags, const struct sockaddr *to, in
313 NET_SendTo(int s, const void *msg, int len, unsigned int flags, const struct sockaddr *to, int tolen) argument
[all...]
H A Dlinux_close.c8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
58 * Signal to unblock thread
92 "unable to allocate file descriptor table - out of memory");
141 * If fd has been interrupted then set errno to EBADF
189 * Lock the fd to hold-off additional I/O on this fd.
195 * Send a wakeup signal to all threads blocked on this
254 * Macro to perform a blocking IO operation. Restarts
298 flags, const struct sockaddr *to, int tolen) {
299 BLOCKING_IO_RETURN_INT( s, sendto(s, msg, len, flags, to, tole
297 NET_SendTo(int s, const void *msg, int len, unsigned int flags, const struct sockaddr *to, int tolen) argument
[all...]
/openjdk7/jdk/src/solaris/transport/socket/
H A Dsocket_md.c8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
100 int flags, struct sockaddr *to, int tolen) {
103 rv = sendto(fd, buf, len, flags, to, tolen);
99 dbgsysSendTo(int fd, char *buf, int len, int flags, struct sockaddr *to, int tolen) argument

Completed in 164 milliseconds

1234567