Searched refs:copy (Results 326 - 350 of 385) sorted by relevance

<<111213141516

/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
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/jdk/src/share/classes/java/security/
H A DProvider.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
440 Map<Object,Object> copy = new HashMap<>();
442 copy.put(entry.getKey(), entry.getValue());
448 putAll(copy);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.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
618 new_sux->set_state(s->copy());
619 e->set_state(s->copy());
756 // copy state because it is altered
757 new_state = new_state->copy(ValueStack::BlockBeginState, bci());
937 // copy our sux list
H A Dc1_GraphBuilder.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
714 // copy data from cloned blocked
721 // copy was_visited_flag to allow early detection of bailouts
2144 s->set_state(state()->copy(ValueStack::StateAfter, canon.bci()));
2233 cur_state = cur_state->copy(ValueStack::ExceptionState, cur_state->bci());
2283 cur_state = cur_state->copy(ValueStack::ExceptionState, cur_state->bci());
2285 cur_state = cur_state->copy(ValueStack::EmptyExceptionState, cur_state->bci());
2842 ValueStack* s = state->copy(ValueStack::StateAfter, entry->bci()); // can use copy sinc
[all...]
H A Dc1_Optimizer.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
210 goto_state = goto_state->copy(ValueStack::StateAfter, goto_state->bci());
434 newif->set_state(if_->state()->copy());
730 state = incoming_state->copy();
787 // Must copy block's state to avoid mutating it during iteration
/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 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/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/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
H A DMethod.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
140 * ReflectAccess) which returns a copy of this Method. The copy's
143 Method copy() { method in class:Method
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DRangeSlider.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
341 tempModel = model.copy();
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGMetadata.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 * A copy of <code>markerSequence</code>, created the first time the
733 * Returns a deep copy of the current marker sequence.
1070 List copy = null;
1072 resetSequence = cloneSequence(); // Deep copy
1073 copy = resetSequence; // Avoid cloning twice
1075 copy = cloneSequence();
1092 markerSequence = copy;
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DExpression.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
301 cvars.vsFalse = cvars.vsFalse.copy();
763 * Create a copy of the expression for method inlining
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dscriptpad.js262 // copy the currently selected text to clipboard
264 editor.copy();
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixCopyFile.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
54 // the attributes to copy
77 // copy all attributes but only fail if basic attributes
91 throw new UnsupportedOperationException("Unsupported copy option");
113 throw new UnsupportedOperationException("Unsupported copy option");
126 // copy directory from source to target
139 // no attributes to copy
150 // access to target directory required to copy named attributes
159 // copy owne
499 static void copy(final UnixPath source, method in class:UnixCopyFile
[all...]
/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
/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/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/share/native/common/
H A Dcheck_code.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
3183 /* First time at this instruction. Just copy. */
3250 jboolean copy = JNI_FALSE; local
3263 copy = JNI_TRUE;
3268 if (copy) {
3269 /* We need a copy. So do it. */
3311 * weren't set for mask. If so, need to copy. */
3323 /* We need to make a copy for the new item, since either the
3325 mask_type *copy local
[all...]
/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/jdk/src/solaris/classes/sun/awt/X11/
H A DXToolkit.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
456 XEvent copy = xev.clone();
459 listener.eventProcessed(copy);
462 copy.dispose();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltDatetime.java10 * You may obtain a copy of the License at
1098 // Assume it's an openening quote so simply copy the quoted
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.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
463 return vars().get(localNo).copy();
470 return stack().get(--_stack_top).copy();
503 return monitors().get(--_monitor_top).copy();
1484 CellTypeState cOpStck_0 = cOpStck.get(0).copy();
/openjdk7/jdk/src/share/classes/sun/font/
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/hotspot/src/share/vm/ci/
H A DciTypeFlow.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
419 void ciTypeFlow::StateVector::copy_into(ciTypeFlow::StateVector* copy)
421 copy->set_stack_size(stack_size());
422 copy->set_monitor_count(monitor_count());
425 copy->set_type_at(c, type_at(c));
448 // Make a simple copy of the incoming state.
1820 // Use this only to make a pre-existing public block into a backedge copy.
1822 assert(z || (z == is_backedge_copy()), "cannot make a backedge copy public");
2257 assert(clone->backedge_copy_count() == 1, "one backedge copy fo
[all...]

Completed in 146 milliseconds

<<111213141516