Searched defs:to (Results 26 - 50 of 169) sorted by relevance

1234567

/openjdk7/langtools/test/tools/javadoc/T4994049/
H A DT4994049.java16 * 2 along with this work; if not, write to the Free Software Foundation,
27 * @summary Unit test for SourcePosition.column with respect to tab expansion
69 static void initTabs(File from, File to) throws IOException { argument
71 File t = new File(to, f.getName());
/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/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/output/
H A DStringOutputBuffer.java14 * Unless required by applicable law or agreed to in writing, software
46 public OutputBuffer append(char[] s, int from, int to) { argument
47 _buffer.append(s, from, to);
H A DWriterOutputBuffer.java14 * Unless required by applicable law or agreed to in writing, software
78 public OutputBuffer append(char[] s, int from, int to) { argument
80 _writer.write(s, from, to);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/util/
H A DArraySorter.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,
82 // Sorts arr between from and to, inclusive. This is a quick, off-the-top-
89 static private void quickSort(Object[] arr, Comparer c, int from, int to) { argument
90 if (to <= from)
92 int mid = (from + to) / 2;
98 int high = to;
138 // Now we just need to sort from from..highestBelowPivot
139 // and from high+1..to
145 quickSort(arr, c, high+1, to);
[all...]
H A DVectorSorter.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,
83 // Sorts v between from and to, inclusive. This is a quick, off-the-top-
90 static private void quickSort(Vector<Object> v, Comparer c, int from, int to) { argument
91 if (to <= from)
93 int mid = (from + to) / 2;
100 int high = to;
139 // Now we just need to sort from from..highestBelowPivot
140 // and from high+1..to
146 quickSort(v, c, high+1, to);
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DjniTypes_sparc.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
32 // This file holds platform-dependent routines used to write primitive jni
33 // types to the array of arguments passed into JavaCalls::call
37 // to a java stack slot array to be passed as an argument to JavaCalls:calls.
47 static inline void put_int2 (jint *from, jint *to) { to[0] = from[0]; to[1] = from[1]; } argument
48 static inline void put_int2 (jint *from, jint *to, in argument
49 put_int2r(jint *from, jint *to) argument
50 put_int2r(jint *from, jint *to, int& pos) argument
54 put_int(jint from, intptr_t *to) argument
55 put_int(jint from, intptr_t *to, int& pos) argument
56 put_int(jint *from, intptr_t *to, int& pos) argument
60 put_long(jlong from, intptr_t *to) argument
61 put_long(jlong from, intptr_t *to, int& pos) argument
62 put_long(jlong *from, intptr_t *to, int& pos) argument
66 put_long(jlong from, intptr_t *to) argument
67 put_long(jlong from, intptr_t *to, int& pos) argument
68 put_long(jlong *from, intptr_t *to, int& pos) argument
72 put_obj(oop from, intptr_t *to) argument
73 put_obj(oop from, intptr_t *to, int& pos) argument
74 put_obj(oop *from, intptr_t *to, int& pos) argument
77 put_float(jfloat from, intptr_t *to) argument
78 put_float(jfloat from, intptr_t *to, int& pos) argument
79 put_float(jfloat *from, intptr_t *to, int& pos) argument
83 put_double(jdouble from, intptr_t *to) argument
84 put_double(jdouble from, intptr_t *to, int& pos) argument
85 put_double(jdouble *from, intptr_t *to, int& pos) argument
88 put_double(jdouble from, intptr_t *to) argument
89 put_double(jdouble from, intptr_t *to, int& pos) argument
90 put_double(jdouble *from, intptr_t *to, int& pos) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DjniTypes_x86.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
32 // This file holds platform-dependent routines used to write primitive jni
33 // types to the array of arguments passed into JavaCalls::call
37 // to a java stack slot array to be passed as an argument to JavaCalls:calls.
49 static inline void put_int2r(jint *from, intptr_t *to) { *(jint *)(to++) = from[1]; argument
50 *(jint *)(to ) = from[0]; }
51 static inline void put_int2r(jint *from, intptr_t *to, in argument
56 put_int(jint from, intptr_t *to) argument
57 put_int(jint from, intptr_t *to, int& pos) argument
58 put_int(jint *from, intptr_t *to, int& pos) argument
63 put_long(jlong from, intptr_t *to) argument
67 put_long(jlong from, intptr_t *to, int& pos) argument
72 put_long(jlong *from, intptr_t *to, int& pos) argument
79 put_long(jlong from, intptr_t *to) argument
80 put_long(jlong from, intptr_t *to, int& pos) argument
81 put_long(jlong *from, intptr_t *to, int& pos) argument
85 put_obj(oop from, intptr_t *to) argument
86 put_obj(oop from, intptr_t *to, int& pos) argument
87 put_obj(oop *from, intptr_t *to, int& pos) argument
90 put_float(jfloat from, intptr_t *to) argument
91 put_float(jfloat from, intptr_t *to, int& pos) argument
92 put_float(jfloat *from, intptr_t *to, int& pos) argument
99 put_double(jdouble from, intptr_t *to) argument
103 put_double(jdouble from, intptr_t *to, int& pos) argument
108 put_double(jdouble *from, intptr_t *to, int& pos) argument
116 put_double(jdouble from, intptr_t *to) argument
117 put_double(jdouble from, intptr_t *to, int& pos) argument
118 put_double(jdouble *from, intptr_t *to, int& pos) 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...]
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...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A DjniTypes_zero.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
32 // This file holds platform-dependent routines used to write primitive jni
33 // types to the array of arguments passed into JavaCalls::call
37 // to a java stack slot array to be passed as an argument to JavaCalls:calls.
47 static inline void put_int2 (jint *from, jint *to) { to[0] = from[0]; to[1] = from[1]; } argument
48 static inline void put_int2 (jint *from, jint *to, in argument
49 put_int2r(jint *from, jint *to) argument
50 put_int2r(jint *from, jint *to, int& pos) argument
54 put_int(jint from, intptr_t *to) argument
55 put_int(jint from, intptr_t *to, int& pos) argument
56 put_int(jint *from, intptr_t *to, int& pos) argument
60 put_long(jlong from, intptr_t *to) argument
61 put_long(jlong from, intptr_t *to, int& pos) argument
62 put_long(jlong *from, intptr_t *to, int& pos) argument
66 put_long(jlong from, intptr_t *to) argument
67 put_long(jlong from, intptr_t *to, int& pos) argument
68 put_long(jlong *from, intptr_t *to, int& pos) argument
72 put_obj(oop from, intptr_t *to) argument
73 put_obj(oop from, intptr_t *to, int& pos) argument
74 put_obj(oop *from, intptr_t *to, int& pos) argument
77 put_float(jfloat from, intptr_t *to) argument
78 put_float(jfloat from, intptr_t *to, int& pos) argument
79 put_float(jfloat *from, intptr_t *to, int& pos) argument
83 put_double(jdouble from, intptr_t *to) argument
84 put_double(jdouble from, intptr_t *to, int& pos) argument
85 put_double(jdouble *from, intptr_t *to, int& pos) argument
88 put_double(jdouble from, intptr_t *to) argument
89 put_double(jdouble from, intptr_t *to, int& pos) argument
90 put_double(jdouble *from, intptr_t *to, int& pos) argument
[all...]
H A Dcopy_zero.hpp17 * 2 along with this work; if not, write to the Free Software Foundation,
31 static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
32 memmove(to, from, count * HeapWordSize);
35 static void pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
37 case 8: to[7] = from[7];
38 case 7: to[6] = from[6];
39 case 6: to[5] = from[5];
40 case 5: to[4] = from[4];
41 case 4: to[3] = from[3];
42 case 3: to[
52 pd_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) argument
73 pd_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
79 pd_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
85 pd_conjoint_bytes(void* from, void* to, size_t count) argument
89 pd_conjoint_bytes_atomic(void* from, void* to, size_t count) argument
93 pd_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) argument
97 pd_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
101 pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
105 pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) argument
115 pd_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
121 pd_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
127 pd_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
133 pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
139 pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) argument
153 julong* to = (julong*) tohw; local
171 pd_fill_to_bytes(void* to, size_t count, jubyte value) argument
179 pd_zero_to_bytes(void* to, size_t count) argument
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dcopy_bsd_x86.inline.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
28 static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
30 (void)memmove(to, from, count * HeapWordSize);
67 : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
68 : "0" (from), "1" (to), "2" (count), "3" (temp)
73 static void pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
76 case 8: to[7] = from[7];
77 case 7: to[6] = from[6];
78 case 6: to[5] = from[5];
79 case 5: to[
111 pd_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) argument
135 pd_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
139 pd_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
143 pd_conjoint_bytes(void* from, void* to, size_t count) argument
222 pd_conjoint_bytes_atomic(void* from, void* to, size_t count) argument
226 pd_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) argument
230 pd_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
240 pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
265 pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) argument
276 pd_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
280 pd_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
284 pd_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
292 pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
300 pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) argument
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dcopy_linux_x86.inline.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
28 static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
30 (void)memmove(to, from, count * HeapWordSize);
67 : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
68 : "0" (from), "1" (to), "2" (count), "3" (temp)
73 static void pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
76 case 8: to[7] = from[7];
77 case 7: to[6] = from[6];
78 case 6: to[5] = from[5];
79 case 5: to[
111 pd_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) argument
135 pd_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
139 pd_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
143 pd_conjoint_bytes(void* from, void* to, size_t count) argument
222 pd_conjoint_bytes_atomic(void* from, void* to, size_t count) argument
226 pd_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) argument
230 pd_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
240 pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
265 pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) argument
276 pd_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
280 pd_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
284 pd_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
292 pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
300 pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) argument
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dcopy_solaris_x86.inline.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
28 static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
29 (void)memmove(to, from, count * HeapWordSize);
32 static void pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
34 (void)memcpy(to, from, count * HeapWordSize);
37 case 8: to[7] = from[7];
38 case 7: to[6] = from[6];
39 case 6: to[5] = from[5];
40 case 5: to[4] = from[4];
41 case 4: to[
53 pd_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) argument
71 pd_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
75 pd_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
79 pd_conjoint_bytes(void* from, void* to, size_t count) argument
87 pd_conjoint_bytes_atomic(void* from, void* to, size_t count) argument
91 pd_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) argument
95 pd_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
99 pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
104 pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) argument
113 pd_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
117 pd_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
121 pd_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
125 pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
133 pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) argument
[all...]
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dcopy_windows_x86.inline.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
28 static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
29 (void)memmove(to, from, count * HeapWordSize);
32 static void pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
35 case 8: to[7] = from[7];
36 case 7: to[6] = from[6];
37 case 6: to[5] = from[5];
38 case 5: to[4] = from[4];
39 case 4: to[3] = from[3];
40 case 3: to[
53 pd_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) argument
71 pd_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
75 pd_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
79 pd_conjoint_bytes(void* from, void* to, size_t count) argument
83 pd_conjoint_bytes_atomic(void* from, void* to, size_t count) argument
87 pd_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) argument
103 pd_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
119 pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
152 pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) argument
169 pd_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
177 pd_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
181 pd_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
185 pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
189 pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DBlockConnectionWidget.java16 * 2 along with this work; if not, write to the Free Software Foundation,
41 private BlockWidget to; field in class:BlockConnectionWidget
52 this.to = (BlockWidget) scene.findWidget(edge.getTo());
53 inputSlot = to.getInputSlot();
81 return "Connection[ " + from.toString() + " - " + to.toString() + "]";
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DChangingInterests.java16 * 2 along with this work; if not, write to the Free Software Foundation,
55 // give time for other end to be readable
70 * Changes the given key's interest set from one set to another and then
73 static void testChange(SelectionKey key, int from, int to) throws IOException { argument
82 // change to the "to" interest set
83 key.interestOps(to);
88 int expected = (to == 0) ? 0 : 1;
101 if ((to & OP_READ) == 0) {
102 assertTrue(!readable, "Not expected to b
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DEndPosParser.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 * This class is similar to Parser except that it stores ending
41 * This code and its internal interfaces are subject to change or
54 /** A hashtable to store ending positions
69 protected <T extends JCTree> T to(T t) { method in class:EndPosParser
/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/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);
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DSynthesizer.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 * MIDI events can be delivered to the <code>Synthesizer</code>.
39 * a corresponding message to the appropriate <code>MidiChannel</code>, or by
63 * the sound of this newly loaded instrument. For the instrument to play notes,
66 * bank and program number to be selected.
95 * time a MIDI message is delivered to the synthesizer and the time that the
127 * its length is always equal to the total number of voices, as returned by
142 * If the soundbank is unsupported, any attempts to load instruments from
159 * received (or has been received) that causes that patch to b
226 remapInstrument(Instrument from, Instrument to) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSizeSequence.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 * object could be used to track the heights
44 * to store the widths and X positions of all the columns.
47 * to find the column corresponding to a certain position.
59 to the size of the previous item, and so on.">
62 * In the figure, the first index (0) corresponds to the first column,
63 * the second index (1) to the second column, and so on.
101 * The result is a data structure that takes the same space to stor
190 setSizes(int from, int to, int size) argument
217 setSizes(int from, int to, int[] sizes) argument
238 getSizes(int from, int to, int[] sizes) argument
266 getPosition(int from, int to, int index) argument
292 getIndex(int from, int to, int position) argument
333 changeSize(int from, int to, int index, int delta) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputEdge.java16 * 2 along with this work; if not, write to the Free Software Foundation,
40 private int to; field in class:InputEdge
43 public InputEdge(char toIndex, int from, int to) { argument
46 this.to = to;
71 return to;
80 return conn2.toIndex == toIndex && conn2.from == from && conn2.to == to;
85 return "Edge from " + from + " to " + to
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DDirectoryManager.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,
38 * It is implementation that is subject to change.
168 * from the package directory corresponding to the first string
169 * to the package directory corresponding to the second string,
173 * and parameter "to" is "java.applet", return string
177 * @param to the package name to which path is calculated
178 * @return relative path between "from" and "to" wit
183 getRelativePath(String from, String to) argument
[all...]

Completed in 141 milliseconds

1234567