Searched defs:from (Results 51 - 75 of 197) sorted by relevance

12345678

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputEdge.java39 private int from; field in class:InputEdge
43 public InputEdge(char toIndex, int from, int to) { argument
45 this.from = from;
67 return from;
80 return conn2.toIndex == toIndex && conn2.from == from && conn2.to == to;
85 return "Edge from " + from + " to " + to + "(" + (int) toIndex + ") ";
90 return (from << 2
[all...]
/openjdk7/jdk/make/tools/swing-beans/
H A DGenDocletBeanInfo.java83 * Method called from the javadoc environment to determint the options length.
236 * Create a "BeanInfo" data structure from the tag. This is a data structure
408 private static String hansalizeIt(String from){ argument
409 char [] chars = from.toCharArray();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/addressing/
H A DOneWayFeature.java45 * to be added for all messages that are sent from the port configured with
62 private WSEndpointReference from; field in class:OneWayFeature
98 * @param from specifies the {@link WSEndpointReference} of wsa:From header.
101 @FeatureConstructor({"enabled","replyTo","from","relatesTo"})
102 public OneWayFeature(boolean enabled, WSEndpointReference replyTo, WSEndpointReference from, String relatesTo) { argument
105 this.from = from;
143 return from;
152 this.from = address;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DDirectoryManager.java168 * from the package directory corresponding to the first string
172 * For example, if the parameter "from" is "java.lang"
176 * @param from the package name from which path is calculated
178 * @return relative path between "from" and "to" with URL
183 public static String getRelativePath(String from, String to) { argument
185 pathstr.append(getRelativePath(from));
193 * from the corresponding package directory to the root of
197 * For example, if the string "from" is "java.lang",
200 * @param from th
204 getRelativePath(PackageDoc from) argument
221 getRelativePath(String from) argument
[all...]
/openjdk7/langtools/test/com/sun/javadoc/testSourceTab/
H A DTestSourceTab.java89 void initTabs(File from, File to) throws IOException { argument
90 for (File f: from.listFiles()) {
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinffast.c102 unsigned dmax; /* maximum distance from zlib header */
119 unsigned char FAR *from; /* where to copy match from */ local
211 if (dist > op) { /* see if copy from window */
218 from = window - OFF;
220 from += wsize - op;
221 if (op < len) { /* some from window */
224 PUP(out) = PUP(from);
226 from = out - dist; /* rest from outpu
[all...]
/openjdk7/jdk/test/java/util/Arrays/
H A DCorrect.java71 static void stupidSort(Object[] a1, int from, int to) throws Exception { argument
72 for (int x=from; x<to; x++) {
/openjdk7/jdk/test/sun/net/ftp/
H A DB6427768.java101 public boolean rename(String from, String to) { argument
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DInstructionFinder.java34 * derived from this software without prior written permission. For
37 * 5. Products derived from this software may not be called "Apache",
146 * all white space from string. Meta characters such as +, * are ignored.
212 * @param from where to start the search in the instruction list
218 public final Iterator search(String pattern, InstructionHandle from, argument
225 if(handles[i] == from) {
226 start = i; // Where to start search from (index)
232 throw new ClassGenException("Instruction handle " + from +
259 * Start search beginning from the start of the given instruction list.
271 * Start search beginning from `fro
278 search(String pattern, InstructionHandle from) argument
406 precompile(short from, short to, short extra) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/undo/
H A DUndoManager.java52 * <code>undo</code> is invoked all edits from the index of the next
100 * removing all edits from the index of the next edit to the end of
102 * <i>e</i>, is added the edit <b>D</b> is removed from the list
229 * will have <code>die</code> invoked on them and are removed from
231 * <code>from</code> &gt; <code>to</code>.
233 * @param from the minimum index to remove
236 protected void trimEdits(int from, int to) { argument
237 if (from <= to) {
238 // System.out.println("Trimming " + from + " " + to + " with index " +
240 for (int i = to; from <
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DProcessBuilder.java44 * #start()} method can be invoked repeatedly from the same instance
60 * <li>an <i>environment</i>, which is a system-dependent mapping from
69 * By default, the subprocess reads input from a pipe. Java code
121 * <li>the stream returned from {@link Process#getErrorStream()} will
447 * <li>a redirection to read from a file, created by an invocation of
448 * {@link Redirect#from Redirect.from(File)}
476 * The type of redirects returned from
477 * {@link Redirect#from Redirect.from(Fil
560 public static Redirect from(final File file) { method in class:ProcessBuilder.Redirect
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DFileTime.java104 public static FileTime from(long value, TimeUnit unit) { method in class:FileTime
124 * <p> Conversion from a coarser granularity that would numerically overflow
141 * <p> Conversion from a coarser granularity that would numerically overflow
222 * this method deviates from ISO 8601 in the same manner as the
/openjdk7/jdk/src/share/classes/java/util/
H A DEnumSet.java32 * the elements in an enum set must come from a single enum type that is
133 * Adds all of the elements from the appropriate enum type to this enum
142 * @param s the enum set from which to initialize this enum set
150 * Creates an enum set initialized from the specified collection. If
156 * @param c the collection from which to initialize this enum set
181 * @param s the enum set from whose complement to initialize this enum set
335 * @param from the first element in the range
337 * @throws NullPointerException if {@code from} or {@code to} are null
338 * @throws IllegalArgumentException if {@code from.compareTo(to) > 0}
342 public static <E extends Enum<E>> EnumSet<E> range(E from, argument
354 addRange(E from, E to) argument
[all...]
H A DJumboEnumSet.java54 void addRange(E from, E to) { argument
55 int fromIndex = from.ordinal() >>> 6;
59 elements[fromIndex] = (-1L >>> (from.ordinal() - to.ordinal() - 1))
60 << from.ordinal();
62 elements[fromIndex] = (-1L << from.ordinal());
67 size = to.ordinal() - from.ordinal() + 1;
212 * Removes the specified element from this set if it is present.
214 * @param e element to be removed from this set, if present
286 * Removes from this set all of its elements that are contained in
289 * @param c elements to be removed from thi
[all...]
H A DRegularEnumSet.java48 void addRange(E from, E to) { argument
49 elements = (-1L >>> (from.ordinal() - to.ordinal() - 1)) << from.ordinal();
168 * Removes the specified element from this set if it is present.
170 * @param e element to be removed from this set, if present
234 * Removes from this set all of its elements that are contained in
237 * @param c elements to be removed from this set
279 * Removes all of the elements from this set.
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1RemSet.hpp79 // outside the CS (having invoked "blk->set_region" to set the "from"
101 // Record, if necessary, the fact that *p (where "p" is in region "from",
103 template <class T> void write_ref(HeapRegion* from, T* p);
104 template <class T> void par_write_ref(HeapRegion* from, T* p, int tid);
158 void set_from(HeapRegion* from) { argument
159 assert(from != NULL, "from region must be non-NULL");
160 _from = from;
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DConvertingMethod.java39 static ConvertingMethod from(Method m) { method in class:ConvertingMethod
81 /* Check that this method will be callable when we are going from
82 * open types to Java types, for example when we are going from
98 /* Check that this method will be callable when we are going from
99 * Java types to open types, for example when we are going from
190 "from open values: " + e;
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DBer.java49 int from, int to) {
56 new ByteArrayInputStream(bytes, from, to),
48 dumpBER(OutputStream outStream, String tag, byte[] bytes, int from, int to) argument
/openjdk7/jdk/src/share/classes/com/sun/management/
H A DGcInfo.java62 * with attributes as specified in the {@link #from from} method.
223 public static GcInfo from(CompositeData cd) { method in class:GcInfo
277 * in the {@link #from(CompositeData) from} method, plus optionally
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dcopy_sparc.hpp30 static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
31 (void)memmove(to, from, count * HeapWordSize);
34 static void pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) { argument
36 case 8: to[7] = from[7];
37 case 7: to[6] = from[6];
38 case 6: to[5] = from[5];
39 case 5: to[4] = from[4];
40 case 4: to[3] = from[3];
41 case 3: to[2] = from[2];
42 case 2: to[1] = from[
50 pd_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) argument
68 pd_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
72 pd_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
76 pd_conjoint_bytes(void* from, void* to, size_t count) argument
80 pd_conjoint_bytes_atomic(void* from, void* to, size_t count) argument
84 pd_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) argument
100 pd_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
116 pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
127 pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) argument
144 pd_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
148 pd_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
152 pd_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
156 pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
160 pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) argument
[all...]
H A DinterpreterRT_sparc.cpp152 enum { // We need to differenciate float from non floats in reg args
166 // pass address of from
219 SlowSignatureHandler(methodHandle method, address from, intptr_t* to, intptr_t *RegArgSig) : NativeSignatureIterator(method) { argument
220 _from = from;
232 intptr_t* from,
239 SlowSignatureHandler(m, (address)from, m->is_static() ? to+2 : to+1, to).iterate(UCONST64(-1));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DHierarchicalGraphLayout.java56 private VertexWrapper from; field in class:HierarchicalGraphLayout.LinkWrapper
59 public LinkWrapper(VertexWrapper from, VertexWrapper to) { argument
60 this.from = from;
65 return from.getSlot();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DMultiConnectionWidget.java62 public Point from; field in class:MultiConnectionWidget.Route
68 public Route(Point from, Point to) { argument
69 assert from != null;
71 this.from = from;
81 return r.from.equals(from) && r.to.equals(to);
89 return ((((from.x * 1711) + from.y) * 1711 + to.x) * 1711 + to.y);
141 int x = r.from
[all...]
/openjdk7/hotspot/src/share/tools/hsdis/
H A Dhsdis-demo.c189 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,
/openjdk7/hotspot/src/share/vm/utilities/
H A Dcopy.hpp32 void _Copy_conjoint_words(HeapWord* from, HeapWord* to, size_t count);
33 void _Copy_disjoint_words(HeapWord* from, HeapWord* to, size_t count);
35 void _Copy_conjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count);
36 void _Copy_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count);
38 void _Copy_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count);
39 void _Copy_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count);
41 void _Copy_conjoint_bytes(void* from, void* to, size_t count);
43 void _Copy_conjoint_bytes_atomic (void* from, void* to, size_t count);
44 void _Copy_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count);
45 void _Copy_conjoint_jints_atomic (jint* from, jin
88 conjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
94 disjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
101 disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) argument
108 aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
114 aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
123 conjoint_jbytes(void* from, void* to, size_t count) argument
128 conjoint_jbytes_atomic(void* from, void* to, size_t count) argument
133 conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) argument
139 conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
145 conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
151 conjoint_oops_atomic(oop* from, oop* to, size_t count) argument
157 conjoint_oops_atomic(narrowOop* from, narrowOop* to, size_t count) argument
170 arrayof_conjoint_jbytes(HeapWord* from, HeapWord* to, size_t count) argument
175 arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
181 arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
187 arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
193 arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) argument
201 conjoint_words_to_lower(HeapWord* from, HeapWord* to, size_t byte_count) argument
215 conjoint_words_to_higher(HeapWord* from, HeapWord* to, size_t byte_count) argument
269 params_disjoint(HeapWord* from, HeapWord* to, size_t count) argument
278 assert_disjoint(HeapWord* from, HeapWord* to, size_t count) argument
285 assert_params_ok(void* from, void* to, intptr_t log_align) argument
300 assert_params_aligned(HeapWord* from, HeapWord* to) argument
[all...]

Completed in 512 milliseconds

12345678