Searched refs:copy (Results 101 - 125 of 385) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPKIXParameters.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
659 * Makes a copy of this <code>PKIXParameters</code> object. Changes
660 * to the copy will not affect the original and vice versa.
662 * @return a copy of this <code>PKIXParameters</code> object
666 PKIXParameters copy = (PKIXParameters)super.clone();
670 copy.certStores = new ArrayList<CertStore>(certStores);
673 copy.certPathCheckers =
676 copy.certPathCheckers.add(
683 return copy;
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DVset.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
94 * Create an copy of the given Vset.
97 public Vset copy() { method in class:Vset
289 return other.copy();
295 return other.copy();
350 return other.copy();
405 return sourceDA.copy();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyImpl.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
85 this.any = DynAnyUtil.copy(any, orb);
150 // Makes a copy of the Any value inside the parameter
163 // Makes a copy of the Any parameter
178 tempAny = DynAnyUtil.copy(value, orb);
191 public abstract org.omg.DynamicAny.DynAny copy(); method in class:DynAnyImpl
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DTempFileHelper.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 FileAttribute<?>[] copy = new FileAttribute<?>[attrs.length+1];
113 System.arraycopy(attrs, 0, copy, 0, attrs.length);
114 attrs = 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/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DNameSpaceSymbTable.java10 * You may obtain a copy of the License at
399 SymbMap copy=(SymbMap) super.clone();
400 copy.entries=new NameSpaceSymbEntry[entries.length];
401 System.arraycopy(entries,0,copy.entries,0,entries.length);
402 copy.keys=new String[keys.length];
403 System.arraycopy(keys,0,copy.keys,0,keys.length);
405 return copy;
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DLineNumberTable.java79 * references (shallow copy). Use copy() for a physical copy.
229 * @return deep copy of this attribute
231 public Attribute copy(ConstantPool constant_pool) { method in class:LineNumberTable
236 c.line_number_table[i] = line_number_table[i].copy();
H A DLocalVariableTable.java78 * references (shallow copy). Use copy() for a physical copy.
185 * @return deep copy of this attribute
187 public Attribute copy(ConstantPool constant_pool) { method in class:LocalVariableTable
192 c.local_variable_table[i] = local_variable_table[i].copy();
H A DLocalVariableTypeTable.java12 * the License. You may obtain a copy of the License at
131 * @return deep copy of this attribute
134 public Attribute copy(ConstantPool constant_pool) { method in class:LocalVariableTypeTable
139 c.local_variable_type_table[i] = local_variable_type_table[i].copy();
H A DConstant.java109 * @return deep copy of this constant
111 public Constant copy() { method in class:Constant
H A DDeprecated.java77 * references (shallow copy). Use clone() for a physical copy.
161 * @return deep copy of this attribute
163 public Attribute copy(ConstantPool constant_pool) { method in class:Deprecated
H A DLineNumber.java158 * @return deep copy of this object
160 public LineNumber copy() { method in class:LineNumber
H A DPMGClass.java77 * references (shallow copy). Use clone() for a physical copy.
187 * @return deep copy of this attribute
189 public Attribute copy(ConstantPool constant_pool) { method in class:PMGClass
H A DSourceFile.java78 * references (shallow copy). Use clone() for a physical copy.
171 * @return deep copy of this attribute
173 public Attribute copy(ConstantPool constant_pool) { method in class:SourceFile
H A DStackMapType.java154 * @return deep copy of this object
156 public StackMapType copy() { method in class:StackMapType
H A DSynthetic.java81 * references (shallow copy). Use copy() for a physical copy.
168 * @return deep copy of this attribute
170 public Attribute copy(ConstantPool constant_pool) { method in class:Synthetic
/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/hotspot/src/os_cpu/solaris_x86/vm/
H A Dsolaris_x86_64.s12 / 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
111 movl 8(%rax),%esi / copy trailing dword
118 movw 8(%rax),%si / copy trailing word
123 movb -1(%rdi,%r8,1),%al / copy trailing byte
143 movb -1(%rdi,%r8,1),%cl / copy trailing byte
148 movw -2(%rdi,%r8,1),%cx / copy trailing word
152 movl (%rdi,%rdx,8),%ecx / copy trailing dword
212 movl 8(%rax),%esi / copy trailing dword
218 movw -2(%rdi,%r8,2),%si / copy trailin
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DContentType.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
105 public ContentType copy() { method in class:ContentType
106 return new ContentType(primaryType,subType,list.copy());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/
H A DPayloadStreamReaderMessage.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
113 public Message copy() { method in class:PayloadStreamReaderMessage
114 return message.copy();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/pipe/
H A DDumpTube.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
110 packet.getMessage().copy().writeTo(writer);
141 public AbstractTubeImpl copy(TubeCloner cloner) { method in class:DumpTube
/openjdk7/jdk/test/java/nio/file/Files/
H A DInterruptCopy.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
63 // require the copy to take a long time)
78 // copy source to target in main thread, interrupting it after a delay
87 Files.copy(source, target, ExtendedCopyOption.INTERRUPTIBLE);
102 // copy source to target via task in thread pool, interrupting it after
107 Files.copy(source, target, ExtendedCopyOption.INTERRUPTIBLE,
/openjdk7/langtools/test/tools/javah/4942232/
H A DTest.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
62 copy(new File(testClasses, "ParamClassTest.class"), test3Classes);
110 void copy(File from, File to) throws IOException { method in class:Test
/openjdk7/jdk/make/sun/cmm/lcms/
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
60 build: copy-files
62 copy-files: $(FILES_copy)
/openjdk7/jdk/make/sun/dcpr/
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
66 build: copy-files
68 copy-files: $(FILES_copy)

Completed in 63 milliseconds

1234567891011>>