Searched defs:copy (Results 176 - 200 of 205) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/sun/tools/jar/
H A DMain.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
568 if (!entryMap.containsKey(name)) { // copy the old stuff
580 copy(zis, zos);
740 copy(file, zos);
762 * A buffer for use only by copy(InputStream, OutputStream).
763 * Not as clean as allocating a new buffer as needed by copy,
776 private void copy(InputStream from, OutputStream to) throws IOException { method in class:Main
790 private void copy(File from, OutputStream to) throws IOException { method in class:Main
793 copy(i
807 private void copy(InputStream from, File to) throws IOException { method in class:Main
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRBackend.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
112 public void setGCMode(long gc, boolean copy); argument
H A DXRBackendNative.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
79 public native void setGCMode(long gc, boolean copy); argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DMultiDOM.java10 * You may obtain a copy of the License at
494 public void copy(final int node, SerializationHandler handler) method in class:MultiDOM
498 _adapters[node >>> DTMManager.IDENT_DTM_NODE_BITS].copy(node, handler);
502 public void copy(DTMAxisIterator nodes, SerializationHandler handler) method in class:MultiDOM
507 _adapters[node >>> DTMManager.IDENT_DTM_NODE_BITS].copy(node, handler);
H A DAdaptiveResultTreeImpl.java10 * You may obtain a copy of the License at
317 public void copy(final int node, SerializationHandler handler) method in class:AdaptiveResultTreeImpl
321 _dom.copy(node, handler);
324 super.copy(node, handler);
328 public void copy(DTMAxisIterator nodes, SerializationHandler handler) method in class:AdaptiveResultTreeImpl
332 _dom.copy(nodes, handler);
335 super.copy(nodes, handler);
H A DSAXImpl.java10 * You may obtain a copy of the License at
1342 * Returns a deep copy of this iterator. The cloned iterator is not
1345 * @return a deep copy of this iterator.
1576 public void copy(DTMAxisIterator nodes, SerializationHandler handler) method in class:SAXImpl
1581 copy(node, handler);
1588 public void copy(SerializationHandler handler) throws TransletException method in class:SAXImpl
1590 copy(getDocument(), handler);
1594 * Performs a deep copy (ref. XSLs copy-of())
1600 public void copy(fina method in class:SAXImpl
1607 private final void copy(final int node, SerializationHandler handler, boolean isChild) method in class:SAXImpl
[all...]
H A DSimpleResultTreeImpl.java10 * You may obtain a copy of the License at
439 public void copy(final int node, SerializationHandler handler) method in class:SimpleResultTreeImpl
445 public void copy(DTMAxisIterator nodes, SerializationHandler handler) method in class:SimpleResultTreeImpl
451 copy(node, handler);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DBasisLibrary.java10 * You may obtain a copy of the License at
1374 * Utility function: used in xsl:copy.
1378 public static void copy(Object obj, method in class:BasisLibrary
1386 dom.copy(iter.reset(), handler);
1389 dom.copy(((Node) obj).node, handler);
1392 //((DOM)obj).copy(((com.sun.org.apache.xml.internal.dtm.ref.DTMDefaultBase)((DOMAdapter)obj).getDOMImpl()).getDocument(), handler);
1394 newDom.copy(newDom.getDocument(), handler);
/openjdk7/jdk/src/share/classes/sun/font/
H A DStandardGlyphVector.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
713 public StandardGlyphVector copy() { method in class:StandardGlyphVector
881 // it is a total pain that you have to copy the transform.
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectOutputStream.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
1825 * Writes specified span of byte values from given array. If copy is
1830 void write(byte[] b, int off, int len, boolean copy) argument
1833 if (!(copy || blkmode)) { // write directly
1843 if (len >= MAX_BLOCK_SIZE && !copy && pos == 0) {
1844 // avoid unnecessary copy
H A DObjectStreamClass.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
817 * fields of the represented class. If copy is true, a clone of this class
821 ObjectStreamField[] getFields(boolean copy) { argument
822 return copy ? fields.clone() : fields;
H A DObjectInputStream.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
1047 * @return a String copy of the line.
2692 * been reached. If copy is true, reads values into an intermediate
2696 int read(byte[] b, int off, int len, boolean copy) throws IOException { argument
2710 } else if (copy) {
2737 public void readFully(byte[] b, int off, int len, boolean copy) argument
2741 int n = read(b, off, len, copy);
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.cpp12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
128 ResourceObj::ResourceObj(const ResourceObj& r) { // default copy constructor
138 ResourceObj& ResourceObj::operator=(const ResourceObj& r) { // default copy assignment
141 err_msg("copy only into local, this(" PTR_FORMAT ") type %d a[0]=(" PTR_FORMAT ") a[1]=(" PTR_FORMAT ")",
393 Arena *Arena::move_contents(Arena *copy) { argument
394 copy->destruct_contents();
395 copy->_chunk = _chunk;
396 copy->_hwm = _hwm;
397 copy
517 char* copy = (char*)Amalloc(new_size, alloc_failmode); local
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
171 // append a copy of the element to the end of the collection
178 // insert a copy of the element using lessthan()
262 void JvmtiBreakpoint::copy(JvmtiBreakpoint& bp) { function in class:JvmtiBreakpoint
928 // Need to make a copy of the name since we don't know how long
966 // release our copy
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.cpp12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
96 // trivial copy-through format string
344 char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos+1); local
345 strncpy(copy, buffer, buffer_pos);
346 copy[buffer_pos] = 0; // terminating null
347 return copy;
1028 char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos+1); local
1029 strncpy(copy, buffer, buffer_pos);
1030 copy[buffer_po
[all...]
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
405 copy("/bin/true", "dir2/prog");
411 copy("/bin/true", "dir1/prog");
427 copy("/bin/true", "./prog");
430 copy("/bin/false", "./prog");
485 copy("/bin/true", "dir1/prog");
486 copy("/bin/false", "dir3/prog");
489 copy("/bin/true", "dir3/prog");
490 copy("/bi
511 private static void copy(String src, String dst) { method in class:Basic
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDecoratedPeer.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
251 private static Insets copy(Insets i) { method in class:XDecoratedPeer
276 wm_set_insets = copy(wm_set_insets);
378 currentInsets = copy(correctWM);
424 return copy(currentInsets);
437 currentInsets = copy(guessed);
457 Insets in = copy(getRealInsets());
753 copy(currentInsets),
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultStyledDocument.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
1542 // Build a copy of the original path.
2111 * Creates a copy of this element, with a different
2116 * @return the copy
2135 * Creates a copy of this element, with a different
2527 // If not replacing, it may be more efficient to only copy the
2529 copy = element.getAttributes().copyAttributes();
2555 as.addAttributes(copy);
2561 protected AttributeSet copy; field in class:DefaultStyledDocument.AttributeUndoableEdit
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
586 public static <T> void copy(List<? super T> dest, List<? extends T> src) { method in class:Collections
/openjdk7/hotspot/src/share/vm/opto/
H A Dstringopts.cpp12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
826 Node* copy = ptr->as_Region()->is_copy(); local
827 if (copy != NULL) {
828 ptr = copy;
1234 // copy the contents
1277 // copy the control and memory state from the final call into our
1445 // Now copy the string representations into the final char[]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/
H A DSchemaParser.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
28 * Permission is hereby granted, free of charge, to any person obtaining a copy
31 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
158 public Context copy() { method in class:SchemaParser.AbstractContext
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DXRBackendNative.c14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
919 (JNIEnv *env, jobject this, jlong gc, jboolean copy) {
922 if (copy == JNI_TRUE) {
918 Java_sun_java2d_xr_XRBackendNative_setGCMode(JNIEnv *env, jobject this, jlong gc, jboolean copy) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDS.cpp14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
442 // now make a copy, but with a TYMED of HGLOBAL
829 HGLOBAL copy = ::GlobalAlloc(GALLOCFLG, nBytes + local
833 if (copy == NULL) {
838 char *dataout = (char *)::GlobalLock(copy);
851 ::GlobalUnlock(copy);
854 pmedium->hGlobal = copy;
1139 HGLOBAL copy = ::GlobalAlloc(GALLOCFLG, sizeof(id)); local
1141 if (copy
[all...]
/openjdk7/jdk/src/share/demo/jvmti/java_crw_demo/
H A Djava_crw_demo.c339 char *copy; local
341 copy = (char*)allocate(ci, len+1);
342 (void)memcpy(copy, str, len);
343 copy[len] = 0;
344 return (const char *)copy;
447 copy(CrwClassImage *ci, unsigned count) function
1531 copy(ci, instr_len-1);
1585 copy(ci, len);
1609 copy(ci, 6);
1717 /* If there were ntypes, we just copy tha
[all...]
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrutil.c13 * version 2 for more details (a copy is included in the LICENSE file that
16 * You should have received a copy of the GNU General Public License version
365 /* First copy/count any new output - but only if we didn't
374 png_size_t copy = output_size - count; local
376 if (space < copy)
377 copy = space;
379 png_memcpy(output + count, png_ptr->zbuf, copy);

Completed in 174 milliseconds

123456789