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

123

/openjdk10/jdk/src/java.security.jgss/share/classes/org/ietf/jgss/
H A DMessageProp.java45 * of sequence tokens, gap tokens or duplicate tokens.
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;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/
H A DBinaryOpLogicNode.java85 LogicNode duplicate = graph().findDuplicate(this);
86 if (duplicate != null) {
87 return duplicate;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/
H A DLoopFragmentInsideBefore.java48 public LoopFragmentInsideBefore duplicate() { method in class:LoopFragmentInsideBefore
H A DLoopFragmentInsideFrom.java48 public LoopFragmentInsideFrom duplicate() { method in class:LoopFragmentInsideFrom
/openjdk10/jdk/test/sun/misc/
H A DInvokeCleaner.java72 { ByteBuffer.allocate(10).duplicate() },
74 { ByteBuffer.allocateDirect(10).duplicate() },
76 { ByteBuffer.allocateDirect(0).duplicate() },
78 { mbb.duplicate() },
/openjdk10/langtools/test/tools/javac/generics/
H A DNonlinear.java47 // The original duplicate was:
49 // static <A> Pair <A,A> duplicate (A x) {
57 // type for duplicate, which uses its type variables linearly
60 static <A,B extends Ref<A>> Pair<Ref<A>,B> duplicate (B x) { method in class:Nonlinear
71 Pair <Ref<A>, Ref<B>> p = duplicate (build ());
/openjdk10/jdk/src/java.security.jgss/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,
/openjdk10/jdk/test/java/nio/Buffer/
H A DOrderDouble.java38 ck(buf.duplicate().order(), expected);
H A DOrderFloat.java38 ck(buf.duplicate().order(), expected);
H A DOrderShort.java38 ck(buf.duplicate().order(), expected);
H A DOrderChar.java38 ck(buf.duplicate().order(), expected);
H A DOrderLong.java38 ck(buf.duplicate().order(), expected);
H A DOrderInt.java38 ck(buf.duplicate().order(), expected);
H A DChars.java93 buffers.add(cb.duplicate());
97 buffers.add(randomizeRange(cb.duplicate()));
H A DByteBufferViews.java65 Map.entry("ByteBuffer.allocate(size).position(8).slice().duplicate()",
66 size -> ByteBuffer.allocate(size).position(8).slice().duplicate()),
72 Map.entry("ByteBuffer.allocate(size).position(1).slice().duplicate()",
73 size -> ByteBuffer.allocate(size).position(1).slice().duplicate()),
83 Map.entry("ByteBuffer.allocateDirect(size).position(8).slice().duplicate()",
84 size -> ByteBuffer.allocateDirect(size).position(8).slice().duplicate()),
90 Map.entry("ByteBuffer.allocateDirect(size).position(1).slice().duplicate()",
91 size -> ByteBuffer.allocateDirect(size).position(1).slice().duplicate())
169 Map.entry("bb.asShortBuffer().slice().duplicate()",
170 bb -> bb.asShortBuffer().slice().duplicate())
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/nio/
H A DStringCharBuffer.java65 public CharBuffer duplicate() { method in class:StringCharBuffer
71 return duplicate();
/openjdk10/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();
/openjdk10/jdk/test/java/security/SecureClassLoader/
H A DDefineClassByteBuffer.java118 buffer from a class file, and create various duplicate and wrapped
139 buffers[DUP_ARRAY_BUFFER] = buffers[ARRAY_BUFFER].duplicate();
141 buffers[DUP_DIRECT_BUFFER] = buffers[DIRECT_BUFFER].duplicate();
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/virtual/
H A DVirtualBoxingNode.java55 public VirtualBoxingNode duplicate() { method in class:VirtualBoxingNode
H A DVirtualObjectNode.java106 * Returns an exact duplicate of this virtual object node, which has not been added to the graph
109 public abstract VirtualObjectNode duplicate(); method in class:VirtualObjectNode
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/
H A DItems.java223 void duplicate() {} method in class:Items.Item
233 stackItem[toscode].duplicate();
293 void duplicate() { method in class:Items.StackItem
332 void duplicate() { method in class:Items.IndexedItem
536 void duplicate() { method in class:Items.MemberItem
537 stackItem[OBJECTcode].duplicate();
705 void duplicate() { method in class:Items.AssignItem
706 load().duplicate();
773 void duplicate() { method in class:Items.CondItem
774 load().duplicate();
[all...]
/openjdk10/make/common/
H A DTestFilesCompilation.gmk50 # Check for duplicate base file names. That would have failed later anyhow, but
54 $$(error There are duplicate test file names for $1: $$($1_DUPLICATED_NAMES))
/openjdk10/jdk/test/javax/net/ssl/templates/
H A DSSLExplorer.java70 ByteBuffer input = source.duplicate();
148 ByteBuffer input = source.duplicate();
344 input = input.duplicate();
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DCipherBox.java371 hd.encodeBuffer(bb.duplicate(), System.out);
379 ByteBuffer dup = bb.duplicate();
532 ByteBuffer dup = bb.duplicate();
564 bb.duplicate().position(pos), System.out);
791 checkPadding(bb.duplicate(), (byte)(padLen & 0xFF));
798 bb.duplicate().position(offset + newLen),
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DBinaryArithmeticNode.java283 BinaryNode duplicate = graph().findDuplicate(this);
284 if (duplicate != null) {
285 return duplicate;

Completed in 203 milliseconds

123