Searched defs:copy (Results 151 - 175 of 205) sorted by relevance

123456789

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionList.java1075 * @return complete, i.e., deep copy of this list
1077 public InstructionList copy() { method in class:InstructionList
1087 Instruction c = i.copy(); // Use clone for shallow copy
H A DMethodGen.java982 /** @return deep copy of this method
984 public MethodGen copy(String class_name, ConstantPoolGen cp) { method in class:MethodGen
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyConstructedImpl.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
82 // note: We don't copy TypeCodes since they are considered immutable.
290 // Spec: Returns a copy of the internal Any
298 return DynAnyUtil.copy(any, orb);
354 public org.omg.DynamicAny.DynAny copy() { method in class:DynAnyConstructedImpl
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeState.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
79 public CellTypeState copy() { method in class:CellTypeState
/openjdk7/jdk/src/share/classes/sun/font/
H A DFont2D.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
215 * we would need to use a private copy.
296 private FontStrike getStrike(FontStrikeDesc desc, boolean copy) { argument
341 if (copy) {
H A DGlyphLayout.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
120 LayoutEngineKey copy() { method in class:GlyphLayout.LayoutEngineKey
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DField.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
130 * ReflectAccess) which returns a copy of this Field. The copy's
133 Field copy() { method in class:Field
/openjdk7/hotspot/src/share/vm/opto/
H A Dpostaloc.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
42 // Check to see if we can possibly be a copy of a callee-save value.
67 guarantee(def != NULL, "must not resurrect dead copy");
109 } else if (old->is_Copy()) { // Dead copy of a callee-save value
173 // Check for a copy to or from a misaligned pair.
183 // Save-on-call copies can only be elided if the entire copy chain can go
203 // Is old def now dead? We successfully yanked a copy?
214 guarantee(c->in(idx) != NULL, "must not resurrect dead copy");
216 break; // casting copy, no
235 Node *copy = x->in(idx); local
[all...]
H A Dcoalesce.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
138 int PhaseChaitin::clone_projs( Block *b, uint idx, Node *con, Node *copy, uint &maxlrg ) {
147 kills->set_req( 0, copy );
294 // insert 2 copies into the same block. They copy L161->L128 and L128->L132.
296 // can get used by the second copy. This cannot happen in the SSA model;
303 void PhaseAggressiveCoalesce::insert_copy_with_overlap( Block *b, Node *copy, uint dst_name, uint src_name ) { argument
306 // I am about to clobber the dst_name, so the copy must be inserted
322 // Since the copy uses src_name, I have to come before any kill.
342 uint idx = copy
391 Node *copy = n->in(k); local
424 Node *copy; local
458 Node *copy; local
516 Node *copy = new (C) MachSpillCopyNode( inp, *rm, *rm ); local
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.hpp12 * 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
72 ValueStack* copy() { return new ValueStack(this, _kind, _bci); } function in class:ValueStack
73 ValueStack* copy(Kind new_kind, int new_bci) { return new ValueStack(this, new_kind, new_bci); } function in class:ValueStack
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfData.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
153 // copy the name, including null terminator, into PerfData memory
235 // copy n bytes of the string, assuring the null string is
602 PerfDataList* copy = new PerfDataList(this); local
604 assert(copy != NULL, "just checking");
606 return copy;
/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.hpp12 * 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
330 // should not use copy constructor
331 MemBaseline(MemBaseline& copy) { ShouldNotReachHere(); } argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DPacket.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
172 * Used by {@link #createResponse(Message)} and {@link #copy(boolean)}.
190 // copy other properties that need to be copied. is there any?
194 * Creates a copy of this {@link Packet}.
197 * well, or not. If the value is {@code false}, the {@link Message} in the copy of the {@link Packet} is {@code null}.
198 * @return copy of the original packet
200 public Packet copy(boolean copyMessage) { method in class:Packet
201 // the copy constructor is originally designed for creating a response packet,
202 // but so far the implementation is usable for this purpose as well, so calling the copy constructo
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DSOAPBindingCodec.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
381 public SOAPBindingCodec copy() { method in class:SOAPBindingCodec
382 return new SOAPBindingCodec(binding, (StreamSOAPCodec)xmlSoapCodec.copy());
H A DMtomCodec.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
220 public MtomCodec copy() { method in class:MtomCodec
221 return new MtomCodec(version, (StreamSOAPCodec)codec.copy(), binding, mtomFeature);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/xml/
H A DXMLMessage.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
325 public Message copy() { method in class:XMLMessage.XmlContent
326 return getMessage().copy();
446 public Message copy() { method in class:XMLMessage.XMLMultiPart
447 return getMessage().copy();
504 this.headerList = HeaderList.copy(that.headerList);
557 public Message copy() { method in class:XMLMessage.UnknownContent
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/saaj/
H A DSAAJMessage.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
107 * This constructor is a convenience and called by the {@link #copy}
470 * Creates a copy of a {@link com.sun.xml.internal.ws.api.message.Message}.
483 * create an idential copy of a {@link com.sun.xml.internal.ws.api.message.Message}.
486 * The actual copy operation depends on the layout
490 public Message copy() { method in class:SAAJMessage
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipPath.java809 void copy(ZipPath target, CopyOption... options) method in class:ZipPath
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DJavaClass.java637 * @return deep copy of this class
639 public JavaClass copy() { method in class:JavaClass
646 c.constant_pool = constant_pool.copy();
652 c.fields[i] = fields[i].copy(c.constant_pool);
656 c.methods[i] = methods[i].copy(c.constant_pool);
660 c.attributes[i] = attributes[i].copy(c.constant_pool);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/
H A DDOM.java10 * You may obtain a copy of the License at
76 public void copy(final int node, SerializationHandler handler) method in interface:DOM
78 public void copy(DTMAxisIterator nodes, SerializationHandler handler) method in interface:DOM
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DDOMAdapter.java10 * You may obtain a copy of the License at
302 public void copy(final int node, SerializationHandler handler) method in class:DOMAdapter
305 _dom.copy(node, handler);
308 public void copy(DTMAxisIterator nodes,SerializationHandler handler) method in class:DOMAdapter
311 _dom.copy(nodes, handler);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DTypeCodeImpl.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
1009 // _REVISIT_ It isn't clear whether this method should operate on this or a copy.
1923 * This is not a copy of the TypeCodeImpl objects, but instead it
1927 * by the Any to do the correct copy.
1929 protected void copy(org.omg.CORBA.portable.InputStream src, method in class:TypeCodeImpl
2052 // copy each element, using the corresponding member type
2054 _memberTypes[i].copy(src, dst);
2072 _memberTypes[_defaultIndex].copy(src, dst);
2074 _memberTypes[labelIndex].copy(sr
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFiles.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
1125 * options} parameter specifying how the copy is performed. By default, the
1126 * copy fails if the target file already exists or is a symbolic link,
1134 * walkFileTree} method to copy a directory and all entries in the directory,
1150 * <td> Attempts to copy the file attributes associated with this file to
1180 * Suppose we want to copy a file into a directory, giving it the same file
1185 * Files.copy(source, newdir.resolve(source.getFileName());
1189 * the path to the file to copy
1194 * options specifying how the copy shoul
1219 public static Path copy(Path source, Path target, CopyOption... options) method in class:Files
2727 private static long copy(InputStream source, OutputStream sink) method in class:Files
2805 public static long copy(InputStream in, Path target, CopyOption... options) method in class:Files
2889 public static long copy(Path source, OutputStream out) throws IOException { method in class:Files
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DElementImpl.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
226 ElementImpl copy =
228 return replaceElementWithSOAPElement(this,copy);
669 ElementImpl copy) {
674 copy.addAttributeBare(name, getAttributeValueFrom(element, name));
680 copy.insertBefore(nextChild, null);
685 parent.replaceChild(copy, element);
688 return copy;
667 replaceElementWithSOAPElement( Element element, ElementImpl copy) argument
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.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
267 public void copy(Path source, Path target, CopyOption... options) throws IOException { method in class:PassThroughFileSystem.PassThroughProvider
268 Files.copy(unwrap(source), unwrap(target), options);

Completed in 126 milliseconds

123456789