Searched refs:copy (Results 1 - 25 of 385) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/util/AbstractList/
H A DFailFastIterator.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
39 List copy = new ArrayList(orig);
41 ListIterator i = copy.listIterator();
43 copy.remove(99);
44 copy.add(new Integer(99));
49 if (!copy.equals(orig))
53 ListIterator i = copy.listIterator();
55 copy.remove(99);
56 copy
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DPipeCloner.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
47 return new PipeCloner().copy(p);
54 * {@link Pipe} version of {@link #copy(Tube)}
56 public <T extends Pipe> T copy(T p) { method in class:PipeCloner
59 r = p.copy(this);
60 // the pipe must puts its copy to the map by itself
70 public void add(Pipe original, Pipe copy) { argument
72 assert original!=null && copy!=null;
73 master2copy.put(original,copy);
79 add(AbstractTubeImpl original, AbstractTubeImpl copy) argument
[all...]
H A DTubeCloner.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
52 * {@link Tube}s implementing the {@link Tube#copy(TubeCloner)} method
53 * shall use {@link #copy(Tube)} method.
63 return new PipeCloner().copy(p);
67 * Invoked by a {@link Tube#copy(TubeCloner)} implementation
68 * to copy a reference to another pipe.
88 public <T extends Tube> T copy(T t) { method in class:TubeCloner
91 r = t.copy(this);
92 // the pipe must puts its copy t
108 add(Tube original, Tube copy) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DCK_DATE.java104 CK_DATE copy = null;
106 copy = (CK_DATE) super.clone();
112 copy.year = this.year.clone();
113 copy.month = this.month.clone();
114 copy.day = this.day.clone();
116 return copy;
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/copyobject/
H A DObjectCopier.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 /** Provides an interface for a variety of means to copy an arbitrary
30 * copy of obj, preserving all aliasing across all objects reachable
32 * cannot copy obj for some reason. Note that a trivial implementation
37 Object copy( Object obj ) throws ReflectiveCopyException ; method in interface:ObjectCopier
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DPolicyOperations.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
60 * Returns a copy of the <code>Policy</code> object. The copy does not retain
63 * @return a copy of the <code>Policy</code> object
65 org.omg.CORBA.Policy copy (); method in interface:PolicyOperations
/openjdk7/jdk/src/share/sample/forkjoin/mergesort/
H A DMergeSort.java105 int[] copy = new int[high - low];
106 System.arraycopy(array, low, copy, 0, copy.length);
112 if (q >= copyHigh || (p < copyMiddle && copy[p] < copy[q]) ) {
113 array[i] = copy[p++];
115 array[i] = copy[q++];
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/copyobject/
H A DFallbackObjectCopierImpl.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
46 public Object copy( Object src ) throws ReflectiveCopyException method in class:FallbackObjectCopierImpl
49 return first.copy( src ) ;
52 return second.copy( src ) ;
H A DReferenceObjectCopierImpl.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
32 public Object copy( Object obj ) method in class:ReferenceObjectCopierImpl
/openjdk7/jdk/make/javax/imageio/
H A DMakefile14 # 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
51 build: copy-files
53 copy-files: $(FILES_copy)
55 .PHONY: copy-files
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/
H A DContext.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
65 Context copy(); method in interface:Context
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeCopier.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
34 * Creates a copy of a tree, using a given TreeMaker.
50 public <T extends JCTree> T copy(T tree) { method in class:TreeCopier
51 return copy(tree, null);
55 public <T extends JCTree> T copy(T tree, P p) { method in class:TreeCopier
61 public <T extends JCTree> List<T> copy(List<T> trees) { method in class:TreeCopier
62 return copy(trees, null);
65 public <T extends JCTree> List<T> copy(List<T> trees, P p) { method in class:TreeCopier
70 lb.append(copy(tre
[all...]
/openjdk7/corba/make/common/
H A DClasses.gmk14 # 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
30 # the build you might want to copy them over to $(ALT_CLASSDESTDIR);
40 ALT_CLASSES_DISPOSITION = copy-classes
45 copy-classes:
61 .PHONY: copy-classes
/openjdk7/jdk/make/common/
H A DClasses.gmk14 # 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
34 # the build you might want to copy them over to $(ALT_CLASSDESTDIR);
44 ALT_CLASSES_DISPOSITION = copy-classes
49 copy-classes:
65 .PHONY: copy-classes
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DLocalMember.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
68 * Used by copyInline to record the original of this copy.
120 * Make a copy of this field, which is an argument to a method
124 * fresh copy.
127 LocalMember copy = new LocalMember(where, clazz, modifiers, type, name);
128 copy.readcount = this.readcount;
129 copy.writecount = this.writecount;
131 copy.originalOfCopy = this;
137 copy
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWrapperBase.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
66 long copy = XlibWrapper.unsafe.allocateMemory(getDataSize());
67 XlibWrapper.unsafe.copyMemory(getPData(), copy, getDataSize());
68 return new XEvent(copy);
/openjdk7/jdk/make/com/sun/script/
H A DMakefile14 # 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
44 all: classes copy-files
51 copy-files: $(FILES_copy)
56 .PHONY: copy-files
/openjdk7/jdk/make/sun/org/mozilla/javascript/
H A DMakefile14 # 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
50 all: classes copy-files
56 copy-files: $(FILES_copy)
61 .PHONY: copy-files
/openjdk7/corba/src/share/classes/org/omg/PortableServer/
H A Dcorba.idl14 * 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
56 /** Copies the policy object. The copy does not retain any
58 * @return the copy of the policy object.
60 Policy copy( );
/openjdk7/jdk/make/sun/pisces/
H A DMakefile14 # 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
50 build: copy-files
52 copy-files: $(FILES_copy)
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.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
44 * - Unroll direct copy to three copies per loop in inffast.c
61 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
70 * - Unroll last copy for window match in inflate_fast()
352 unsigned copy, dist; local
371 /* copy state->wsize or less output bytes into the circular window */
372 copy = out - strm->avail_out;
373 if (copy >= state->wsize) {
380 if (dist > copy) dis
589 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/openjdk7/jdk/src/macosx/native/sun/osxapp/
H A DQueuingApplicationDelegate.m14 * 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
113 // Make an explicit copy of the passed events as they may be invalidated by the time they're processed
114 NSAppleEventDescriptor *openURLEventCopy = [openURLEvent copy];
115 NSAppleEventDescriptor *replyEventCopy = [replyEvent copy];
121 } copy]];
128 } copy]];
139 } copy]];
149 } copy]];
156 } copy]];
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DCopiedFile.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
43 copy(in, out);
48 private static void copy(final InputStream in, final PrintStream out) throws IOException { method in class:CopiedFile
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_1/
H A DBodyElement1_1Impl.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
49 BodyElementImpl copy =
51 return replaceElementWithSOAPElement(this,copy);
H A DDetailEntry1_1Impl.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
49 DetailEntryImpl copy =
51 return replaceElementWithSOAPElement(this,copy);

Completed in 3398 milliseconds

1234567891011>>