Searched defs:to (Results 101 - 125 of 169) sorted by relevance

1234567

/openjdk7/jdk/src/windows/native/java/io/
H A DWin32FileSystem_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,
331 /* ## Clean this up to use direct Win32 calls */
403 jobject from, jobject to)
408 WITH_NATIVE_PATH(env, to, ids.path, toPath) {
402 Java_java_io_Win32FileSystem_rename0(JNIEnv *env, jobject this, jobject from, jobject to) argument
H A DWinNTFileSystem_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,
92 /* Need Windows Vista or newer to get the final path */
109 * to allocate a larger buffer.
160 /* unable to get final path */
322 never happen, we will need to revisit the lookup implementation.
647 /* Append "*", or possibly "\\*", to path */
658 /* Open handle to the first file */
739 jobject to)
744 WCHAR *topath = fileToNTPath(env, to, id
738 Java_java_io_WinNTFileSystem_rename0(JNIEnv *env, jobject this, jobject from, jobject to) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.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,
45 * This code and its internal interfaces are subject to change or
204 /** Instantiate undetermined type variable to its minimal upper bound.
259 /** Instantiate undetermined type variable to the lub of all its lower bounds.
298 /** Try to instantiate expression type `that' to given type `to'.
300 * a subtype of type `to', return the instantiated type.
305 Type to,
304 instantiateExpr(ForAll that, Type to, Warner warn) argument
584 instantiateArg(ForAll that, Type to, List<Type> tvars, Warner warn) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DHttpClient.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,
97 // retryPostProp is true by default so as to preserve behavior
107 * through a Netscape proxy to a server that sent me a keep-alive
109 * after 5 sec. So we have to hard code our effective timeout to
114 /** whether the response is to be cached */
167 * to true if the system property http.keepAlive isn't set.
200 protected HttpClient(URL url, Proxy p, int to) throws IOException { argument
208 setConnectTimeout(to);
242 HttpClient(URL url, String proxyHost, int proxyPort, boolean proxyDisabled, int to) argument
263 New(URL url, Proxy p, int to, boolean useCache, HttpURLConnection httpuc) argument
323 New(URL url, Proxy p, int to, HttpURLConnection httpuc) argument
336 New(URL url, String proxyHost, int proxyPort, boolean useCache, int to, HttpURLConnection httpuc) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DPreprocessor.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,
39 // -D57110<daz> Allow ID pragma directive to be applied to modules and update
40 // feature in accordance to CORBA 2.3.
171 // will process escaped identifiers according to specification.
435 parser.token = token; // Since parser to parse, give it this token
442 parser.token = token; // Since parser to parse, give it this token
646 // Add pragma entry to container
664 // we are adding extensions to th
1190 replaceAll(String string, String from, String to) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFGenerator.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 * (handed off through a series of LTTextAcceptor calls). Can be used to
39 * generate RTF from any object which knows how to write to a text acceptor
54 to Integers */
115 static public void writeDocument(Document d, OutputStream to) argument
118 RTFGenerator gen = new RTFGenerator(to);
126 a way to iterate more generically ? */
134 public RTFGenerator(OutputStream to) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBufferedImage.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,
57 * <code>ColorModel</code> to represent its color and alpha components.
59 * coordinate of (0,&nbsp;0). Any <code>Raster</code> used to construct a
101 * the color data must be adjusted to a non-premultiplied form
111 * with alpha. The color data in this image is considered not to be
113 * <code>imageType</code> argument to a <code>BufferedImage</code>
122 * with alpha. The color data in this image is considered to be
129 * to a Windows- or Solaris- style BGR color model, with the colors
134 * the color data must be adjusted to
1542 addTileObserver(TileObserver to) argument
1551 removeTileObserver(TileObserver to) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokerBytecodeGenerator.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,
107 // Create an array to map name indexes to locals indexes.
116 // Create an array to map name indexes to locals indexes.
139 System.out.println("Dumping class files to "+DUMP_CLASS_FILES_DIR+"/...");
375 * NOTE: These load/store methods use the localsMap to find the correct index!
414 * @param type primitive type class to box.
427 * @param type wrapper type class to unbo
822 emitPrimCast(char from, char to) argument
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DSimpleDateFormat.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.
67 * <code>SimpleDateFormat</code> allows you to start by choosing
69 * are encouraged to create a date-time formatter with either
83 * <code>'A'</code> to <code>'Z'</code> and from <code>'a'</code> to
86 * Text can be quoted using single quotes (<code>'</code>) to avoid
94 * <code>'A'</code> to <code>'Z'</code> and from <code>'a'</code> to
2135 translatePattern(String pattern, String from, String to) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
37 // (To minimize the amount of work we have to do if we have to merge FPU stacks)
43 // the dummy interval is needed to enforce the walker to walk until the given id:
66 // to decide if the register is live or not at the block begin -> the
74 assert(iw.current_position() == id, "did not walk completely to id");
82 assert(interval->from() <= id && id < interval->to(), "interval out of range");
124 // Set up to process block
138 "FPU stack state must be present due to linea
408 insert_copy(LIR_Opr from, LIR_Opr to) argument
422 do_rename(LIR_Opr from, LIR_Opr to) argument
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
87 // there is no need to do anything extra to allocate the guard pages
97 // On Bsd, reservations are made on a page by page basis, nothing to do.
103 // Bang the shadow pages if they need to be touched to be mapped.
264 struct sockaddr *to, socklen_t tolen) {
265 RESTARTABLE_RETURN_INT((int)::sendto(fd, buf, len, flags, to, tolen));
263 sendto(int fd, char* buf, size_t len, uint flags, struct sockaddr *to, socklen_t tolen) argument
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
101 // On Linux, reservations are made on a page by page basis, nothing to do.
107 // Bang the shadow pages if they need to be touched to be mapped.
269 struct sockaddr* to, socklen_t tolen) {
270 RESTARTABLE_RETURN_INT((int)::sendto(fd, buf, len, flags, to, tolen));
268 sendto(int fd, char* buf, size_t len, uint flags, struct sockaddr* to, socklen_t tolen) argument
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
519 assert(end != NULL, "should not reset block end to NULL");
555 void BlockBegin::disconnect_edge(BlockBegin* from, BlockBegin* to) { argument
556 // disconnect any edges between from and to
559 tty->print_cr("Disconnected edge B%d -> B%d", from->block_id(), to->block_id());
564 if (sux == to) {
603 // In general it is not possible to calculate a value for the field "depth_first_number"
624 // link predecessor to new block
627 // The ordering needs to be the same, so remove the link that the
648 // link the new block back to i
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
46 // os defines the interface to operating system; this includes traditional
59 // %%%%% Moved ThreadState, START_FN, OSThread to new osThread.hpp. -- Rose
165 // Interface to the performance counter
207 // Returns the number of CPUs this process is currently allowed to run on.
211 // Bind processes to processors.
213 // first you generate a distribution of processes to processors,
214 // then you bind processes according to that distribution.
215 // Compute a distribution for number of processes to processors.
219 // Binds the current process to
862 switch_state(State from, State to) argument
[all...]
/openjdk7/jdk/src/windows/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,
55 { WSAEHOSTUNREACH, "No route to host" },
157 * Check if there was an error - this is preferable to check if
166 * Unable to establish connection - to get the reason we must
186 int flags, struct sockaddr *to, int tolen) {
187 return sendto(fd, buf, len, flags, to, tolen);
232 /* Additions to original follow */
267 * throws to return
185 dbgsysSendTo(int fd, char *buf, int len, int flags, struct sockaddr *to, int tolen) argument
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DRicochetTest.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,
501 msg = ("applying "+x+" & "+y+" to "+v);
625 private static MethodType subst(MethodType mt, Class<?> from, Class<?> to) { argument
628 mt = mt.changeParameterType(i, to);
631 mt = mt.changeReturnType(to);
/openjdk7/jdk/src/share/classes/sun/tools/jar/
H A DMain.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,
55 // An entryName(path)->File map generated during "expand", it helps to
56 // decide whether or not an existing entry in a jar file needs to be
60 // All files need to be added/updated.
84 * If true, maintain compatibility with JDK releases prior to 6.0 by
86 * Default is to use the time given in the archive.
157 // zip file entry. We use this to make sure that we don't
158 // add the zip file to itself.
414 /* just want to updat
776 copy(InputStream from, OutputStream to) argument
790 copy(File from, OutputStream to) argument
807 copy(InputStream from, File to) argument
[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/jdk/src/share/classes/sun/net/ftp/
H A DFtpClient.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 * A class that implements the FTP protocol according to
45 * A typical usage would consist of connecting the client to the server,
61 * like a connection reset, and they are usually fatal to the session, meaning,
62 * in all likelyhood the connection to the server has been lost and the session
65 * like when trying to download a non-existing file for example. These errors
66 * are usually non fatal to the session, meaning more commands can be sent to the
70 * too much sense, due to th
517 rename(String from, String to) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DBasisLibrary.java14 * Unless required by applicable law or agreed to in writing, software
348 public static String translateF(String value, String from, String to) { argument
349 final int tol = to.length();
360 result.append(to.charAt(j));
416 * utility function for calls to local-name().
428 * to this method. This method will generate a runtime errors. A good
430 * constructs, and never really tries to call it if it doesn't exist.
431 * But simple stylesheets may result in a call to this method.
432 * The compiler should generate a warning if it encounters a call to
440 * Utility function to thro
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DRepositoryId.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,
39 // Imports for using codebase URL to load class
55 // not legal in IDL. This allows us to treat a fully
150 // would be more efficient and easier to maintain...
163 // Anita4: convert to uppercase
267 * Used to convert ascii to hex.
289 // bug fix for 4328952; to eliminate possibility of overriding this
302 // To create a RepositoryID, use code similar to th
944 delete(String str, int from, int to) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DClassLoader.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,
66 * href="#name">binary name</a> of a class, a class loader should attempt to
68 * typical strategy is to transform the name into a file name and then read a
72 * Class#getClassLoader() reference} to the <tt>ClassLoader</tt> that defined
82 * <p> Applications implement subclasses of <tt>ClassLoader</tt> in order to
86 * <p> Class loaders may typically be used by security managers to indicate
89 * <p> The <tt>ClassLoader</tt> class uses a delegation model to search for
91 * associated parent class loader. When requested to find a class or
93 * class or resource to it
1525 needsClassLoaderPermissionCheck(ClassLoader from, ClassLoader to) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
77 // Easy to compute, so fill them in now.
112 // Have to use a conservative value in this case.
116 // Adjust the definition of this condition to be more useful:
204 // last entry will be used to represent the possibility that
221 // Put an entry at the end of our list to represent the possibility
322 // Analyze the method to see if monitors are used properly.
327 // Check to see if a previous compilation computed the
401 // will return true for all locals in some cases to improve debug
416 // oopmap generator. This is used as a double check during osr to
1174 print_codes_on(int from, int to, outputStream* st) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegion.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
119 gclog_or_tty->print_cr("points to obj "PTR_FORMAT" not in the heap",
123 HeapRegion* to = _g1h->heap_region_containing((HeapWord*)obj); local
130 gclog_or_tty->print_cr("points to dead obj "PTR_FORMAT" in region "
132 (void*) obj, to->bottom(), to->end());
144 HeapRegion* to = _g1h->heap_region_containing(obj); local
145 if (from != NULL && to != NULL &&
146 from != to &&
147 !to
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparallelScavengeHeap.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
106 // Update sizes to reflect the selected page size(s).
110 // move to the common code.
118 // Align old gen size down to preserve specified heap size.
145 // alignment" ReservedSpace ctor to avoid having to use the same page size for
153 // Failed to reserve at specified address - the requested memory
155 // Try again to reserver heap higher.
160 // Failed to reserve at specified address again - give up.
270 // Need to ini
914 MutableSpace* to = young_gen()->to_space(); local
[all...]

Completed in 110 milliseconds

1234567