Searched refs:newData (Results 1 - 25 of 37) sorted by relevance

12

/openjdk10/jdk/src/java.base/share/classes/jdk/internal/reflect/
H A DByteVectorImpl.java70 byte[] newData = new byte[pos + 1];
71 System.arraycopy(data, 0, newData, 0, pos + 1);
72 data = newData;
84 byte[] newData = new byte[minSize];
85 System.arraycopy(data, 0, newData, 0, data.length);
86 data = newData;
/openjdk10/jdk/src/java.base/share/classes/sun/security/util/
H A DDerIndefLenConverter.java51 private byte[] data, newData; field in class:DerIndefLenConverter
140 newData[newDataPos++] = (byte)tag;
190 System.arraycopy(lenBytes, 0, newData, newDataPos,
212 newData[newDataPos++] = (byte)curLen;
215 newData[newDataPos++] = (byte)0x81;
216 newData[newDataPos++] = (byte)curLen;
219 newData[newDataPos++] = (byte)0x82;
220 newData[newDataPos++] = (byte)(curLen >> 8);
221 newData[newDataPos++] = (byte)curLen;
224 newData[newDataPo
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orbutil/
H A DStackImpl.java66 Object[] newData = new Object[ newSize ] ;
67 System.arraycopy( data, 0, newData, 0, data.length ) ;
68 data = newData ;
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/midi/
H A DSysexMessage.java241 byte[] newData = new byte[length];
242 System.arraycopy(data, 0, newData, 0, newData.length);
243 SysexMessage event = new SysexMessage(newData);
H A DMetaMessage.java200 byte[] newData = new byte[length];
201 System.arraycopy(data, 0, newData, 0, newData.length);
203 MetaMessage event = new MetaMessage(newData);
H A DShortMessage.java433 byte[] newData = new byte[length];
434 System.arraycopy(data, 0, newData, 0, newData.length);
436 ShortMessage msg = new ShortMessage(newData);
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DPragmaEntry.java95 public void data (String newData) argument
97 _data = newData;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm/src/org/graalvm/compiler/asm/
H A DBuffer.java92 ByteBuffer newData = ByteBuffer.wrap(newBuf);
93 newData.order(data.order());
94 newData.position(data.position());
95 data = newData;
/openjdk10/jdk/src/demo/share/jfc/TableExample/
H A DOldJTable.java145 public void setDataVector(Object[][] newData, List columnIds) { argument
148 newData, columnIds.toArray());
151 public void setDataVector(Object[][] newData, Object[] columnIds) { argument
153 ((DefaultTableModel)getModel()).setDataVector(newData, columnIds);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DStoredScript.java109 final RecompilableScriptFunctionData newData = data.getScriptFunctionData(((RecompilableScriptFunctionData) constants[i]).getFunctionNodeId());
110 assert newData != null;
111 newData.initTransients(data.getSource(), installer);
112 constants[i] = newData;
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/arrays/
H A DObjectArrayData.java113 final ArrayData newData = ensure(by + length() - 1);
114 if (newData != this) {
115 newData.shiftRight(by);
116 return newData;
303 final ArrayData newData = ensure(len);
304 if (newData == this) {
308 return newData.set((int)len, item, strict);
H A DIntArrayData.java192 final ArrayData newData = ensure(by + length() - 1);
193 if (newData != this) {
194 newData.shiftRight(by);
195 return newData;
232 final ArrayData newData = convert(value == null ? Object.class : value.getClass());
233 return newData.set(index, value, strict);
H A DNumberArrayData.java136 final ArrayData newData = ensure(by + length() - 1);
137 if (newData != this) {
138 newData.shiftRight(by);
139 return newData;
176 final ArrayData newData = convert(value == null ? Object.class : value.getClass());
177 return newData.set(index, value, strict);
H A DArrayData.java88 final IntArrayData newData = new IntArrayData(index + 1);
89 return new DeletedRangeArrayFilter(newData, 0, index);
702 ArrayData newData = convert(widest);
703 long pos = newData.length;
705 newData = newData.ensure(pos); //avoid sparse array
706 newData.set((int)pos++, item, strict);
708 return newData;
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DByteVector.java319 byte[] newData = new byte[length1 > length2 ? length1 : length2];
320 System.arraycopy(data, 0, newData, 0, length);
321 data = newData;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/
H A DDebuggerUtilities.java167 byte[] newData = new byte[8];
170 newData[i] = data[i + data.length - 8];
172 newData[i] = (byte) 0xFF;
175 data = newData;
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DStringContent.java203 char[] newData = new char[newLength];
204 System.arraycopy(data, 0, newData, 0, offset);
205 System.arraycopy(replArray, replOffset, newData, offset, replLength);
206 System.arraycopy(data, src, newData, dest, nmove);
207 data = newData;
/openjdk10/jdk/src/java.base/share/classes/java/lang/invoke/
H A DLambdaFormEditor.java450 BoundMethodHandle.SpeciesData newData = newSpeciesData(lambdaForm.parameterType(pos));
453 NamedFunction getter = newData.getterFunction(oldData.fieldCount());
458 buf.replaceFunctions(oldData.getterFunctions(), newData.getterFunctions(), oldBaseAddress);
459 newBaseAddress = oldBaseAddress.withConstraint(newData);
465 newBaseAddress = new Name(L_TYPE).withConstraint(newData);
657 BoundMethodHandle.SpeciesData newData = newSpeciesData(L_TYPE);
662 buf.replaceFunctions(oldData.getterFunctions(), newData.getterFunctions(), oldBaseAddress);
663 Name newBaseAddress = oldBaseAddress.withConstraint(newData);
666 Name getCombiner = new Name(newData.getterFunction(oldData.fieldCount()), newBaseAddress);
720 BoundMethodHandle.SpeciesData newData
[all...]
/openjdk10/hotspot/test/compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/
H A DTestAssembler.java330 ByteBuffer newData = ByteBuffer.wrap(newBuf);
331 newData.order(data.order());
332 newData.position(data.position());
333 data = newData;
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/util/
H A DAttributesImpl.java621 String newData[] = new String[max];
623 System.arraycopy(data, 0, newData, 0, length*5);
625 data = newData;
/openjdk10/jaxp/src/java.xml/share/classes/org/xml/sax/helpers/
H A DAttributesImpl.java608 String newData[] = new String[max];
610 System.arraycopy(data, 0, newData, 0, length*5);
612 data = newData;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DAttributesImpl.java595 String newData[] = new String[max];
596 System.arraycopy(data, 0, newData, 0, length*5);
597 data = newData;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/gen/config/
H A DAttributesImpl.java598 String newData[] = new String[max];
599 System.arraycopy(data, 0, newData, 0, length*5);
600 data = newData;
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/
H A DByteVector.java364 byte[] newData = new byte[length1 > length2 ? length1 : length2];
365 System.arraycopy(data, 0, newData, 0, length);
366 data = newData;
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DKinds.java192 byte newData = 0;
194 newData |= kindSel.data;
196 return new KindSelector(newData);

Completed in 757 milliseconds

12