Searched refs:duplicate (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpValue.java71 public abstract SnmpValue duplicate() ; method in class:SnmpValue
H A DSnmpNull.java118 final synchronized public SnmpValue duplicate() { method in class:SnmpNull
H A DSnmpCounter64.java175 final synchronized public SnmpValue duplicate() { method in class:SnmpCounter64
H A DSnmpInt.java221 final synchronized public SnmpValue duplicate() { method in class:SnmpInt
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DMessageProp.java45 * of sequence tokens, gap tokens or duplicate tokens.<p>
135 * Tests if this is a duplicate of an earlier token.
137 * @return true if this is a duplicate, false otherwise.
201 * @param duplicate true if the token was a duplicate of an earlier
213 public void setSupplementaryStates(boolean duplicate, argument
216 this.dupToken = duplicate;
/openjdk7/jdk/src/share/classes/java/nio/
H A DStringCharBuffer.java63 public CharBuffer duplicate() { method in class:StringCharBuffer
69 return duplicate();
H A DByteBufferAs-X-Buffer.java.template82 public $Type$Buffer duplicate() {
100 return duplicate();
145 ByteBuffer db = bb.duplicate();
177 CharBuffer db = this.duplicate();
/openjdk7/langtools/test/tools/javac/generics/
H A DNonlinear.java70 // The original duplicate was:
72 // static <A> Pair <A,A> duplicate (A x) {
80 // type for duplicate, which uses its type variables linearly
83 static <A,B extends Ref<A>> Pair<Ref<A>,B> duplicate (B x) { method in class:Nonlinear
94 Pair <Ref<A>, Ref<B>> p = duplicate (build ());
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DTokenTracker.java34 * detect old tokens, out of sequence tokens, and duplicate tokens.
155 boolean duplicate = false;
172 // Next trivial case is to check for duplicate
174 duplicate = true;
215 if (!duplicate && !old)
221 prop.setSupplementaryStates(duplicate, old, unsequenced, gap,
/openjdk7/jdk/test/java/lang/ClassLoader/defineClass/
H A DDefineClassByteBuffer.java102 buffer from a class file, and create various duplicate and wrapped
120 buffers[DUP_ARRAY_BUFFER] = buffers[ARRAY_BUFFER].duplicate();
122 buffers[DUP_DIRECT_BUFFER] = buffers[DIRECT_BUFFER].duplicate();
/openjdk7/jdk/test/java/security/SecureClassLoader/
H A DDefineClassByteBuffer.java100 buffer from a class file, and create various duplicate and wrapped
117 buffers[DUP_ARRAY_BUFFER] = buffers[ARRAY_BUFFER].duplicate();
119 buffers[DUP_DIRECT_BUFFER] = buffers[DIRECT_BUFFER].duplicate();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DItems.java216 void duplicate() {} method in class:Items.Item
226 stackItem[toscode].duplicate();
286 void duplicate() { method in class:Items.StackItem
325 void duplicate() { method in class:Items.IndexedItem
500 void duplicate() { method in class:Items.MemberItem
501 stackItem[OBJECTcode].duplicate();
671 void duplicate() { method in class:Items.AssignItem
672 load().duplicate();
739 void duplicate() { method in class:Items.CondItem
740 load().duplicate();
[all...]
/openjdk7/jdk/test/java/nio/Buffer/
H A DStringCharBufferSliceTest.java113 ">>> StringCharBufferSliceTest-main: testing duplicate.");
117 CharBuffer dupe = slice.duplicate();
120 throw new RuntimeException("bad duplicate() after slice(): '" + dupe + "'");
H A DBasicChar.java138 b.duplicate().reset();
590 relGet(b.duplicate());
592 relGet(b.duplicate(), 13);
593 relGet(b.duplicate().slice(), 13);
595 relGet(b.slice().duplicate(), 13);
H A DBasicDouble.java138 b.duplicate().reset();
590 relGet(b.duplicate());
592 relGet(b.duplicate(), 13);
593 relGet(b.duplicate().slice(), 13);
595 relGet(b.slice().duplicate(), 13);
H A DBasicFloat.java138 b.duplicate().reset();
590 relGet(b.duplicate());
592 relGet(b.duplicate(), 13);
593 relGet(b.duplicate().slice(), 13);
595 relGet(b.slice().duplicate(), 13);
H A DBasicInt.java138 b.duplicate().reset();
590 relGet(b.duplicate());
592 relGet(b.duplicate(), 13);
593 relGet(b.duplicate().slice(), 13);
595 relGet(b.slice().duplicate(), 13);
H A DBasicLong.java138 b.duplicate().reset();
590 relGet(b.duplicate());
592 relGet(b.duplicate(), 13);
593 relGet(b.duplicate().slice(), 13);
595 relGet(b.slice().duplicate(), 13);
H A DBasicShort.java138 b.duplicate().reset();
590 relGet(b.duplicate());
592 relGet(b.duplicate(), 13);
593 relGet(b.duplicate().slice(), 13);
595 relGet(b.slice().duplicate(), 13);
/openjdk7/jdk/test/java/nio/charset/CharsetEncoder/
H A DFlush.java38 ((ByteBuffer)(bb.duplicate().flip())).get(contents);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DEngineWriter.java132 ByteBuffer bb = ea.netData.duplicate();
H A DCipherBox.java358 ByteBuffer dup = bb.duplicate();
468 ByteBuffer dup = bb.duplicate();
485 (ByteBuffer)bb.duplicate().position(pos), System.out);
727 checkPadding(bb.duplicate(), (byte)(padLen & 0xFF));
734 (ByteBuffer)bb.duplicate().position(offset + newLen),
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DAbstractPerfDataBufferPrologue.java95 this.byteBuffer = byteBuffer.duplicate();
/openjdk7/jdk/src/share/classes/sun/management/counter/perf/
H A DPrologue.java73 this.header = b.duplicate();
/openjdk7/jdk/src/share/classes/sun/misc/
H A DPerf.java280 // create a duplicate of the native ByteBuffer and manage it
281 // with a Cleaner object (PhantomReference). When the duplicate
285 final ByteBuffer dup = b.duplicate();

Completed in 482 milliseconds

12