Searched refs:newValues (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DStringToIntTable.java115 int newValues[] = new int[m_mapSize];
117 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
119 m_values = newValues;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DStringToIntTable.java108 int newValues[] = new int[m_mapSize];
110 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
112 m_values = newValues;
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java1868 AttributeValues newValues = getAttributeValues().clone();
1870 applyStyle(style, newValues);
1871 newValues.setSize(size);
1872 return new Font(newValues, null, oldStyle, createdFont, font2DHandle);
1887 AttributeValues newValues = getAttributeValues().clone();
1889 applyStyle(style, newValues);
1890 applyTransform(trans, newValues);
1891 return new Font(newValues, null, oldStyle, createdFont, font2DHandle);
1905 AttributeValues newValues = getAttributeValues().clone();
1906 newValues
[all...]
/openjdk7/jdk/src/share/classes/sun/text/
H A DCompactByteArray.java93 * @param newValues the values of the compact array.
97 byte newValues[])
104 if ((index < 0) || (index >= newValues.length+BLOCKCOUNT))
108 values = newValues;
96 CompactByteArray(short indexArray[], byte newValues[]) argument
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DRuleBasedBreakIteratorBuilder.java1288 short[] newValues = new short[numCategories + 1];
1290 newValues[(int)(pendingChars.charAt(i)) - 0x100] = newValue;
1295 mergeStates(((Integer)rows.elementAt(i)).intValue(), newValues, rows);
1302 * passed in (newValues). The basic process is to copy the nonzero cells in newStates
1314 * @param newValues The state to merge it with.
1320 short[] newValues,
1329 if (oldValues[i] == newValues[i]) {
1337 if (newValues[i] != 0) {
1341 oldValues[i] = newValues[i];
1346 // from newValues
1319 mergeStates(int rowNum, short[] newValues, Vector rowsBeingUpdated) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJOptionPane.java2154 * @param newValues an array of <code>Objects</code> the user to be
2165 public void setSelectionValues(Object[] newValues) { argument
2168 selectionValues = newValues;
2169 firePropertyChange(SELECTION_VALUES_PROPERTY, oldValues, newValues);

Completed in 55 milliseconds