Searched defs:values (Results 26 - 50 of 157) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/javax/script/
H A DSimpleBindings.java48 * Constructor uses an existing <code>Map</code> to store the values.
86 * @param toMerge The <code>Map</code> of values to add.
186 * supports <tt>null</tt> values.) The map will not contain a mapping for
208 public Collection<Object> values() { method in class:SimpleBindings
209 return map.values();
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorPanel.java45 private final float[] values = new float[this.spinners.length]; field in class:ColorPanel
135 this.spinners[i].setValue(this.values[i]);
182 this.values[this.z] = 1.0f - z;
187 this.values[this.x] = x;
188 this.values[this.y] = 1.0f - y;
196 this.model.setColor(color.getRGB(), this.values);
198 this.spinners[i].setValue(this.values[i]);
207 return this.model.getColor(this.values);
211 this.values[index] = this.spinners[index].getValue();
216 this.values[inde
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DAttributeList.java51 public Vector<?> values; field in class:AttributeList
69 public AttributeList(String name, int type, int modifier, String value, Vector<?> values, AttributeList next) { argument
74 this.values = values;
102 * @return possible attribute values
105 return (values != null) ? values.elements() : null;
/openjdk7/jdk/src/share/classes/java/util/
H A DMap.java29 * An object that maps keys to values. A map cannot contain duplicate keys;
36 * allow a map's contents to be viewed as a set of keys, collection of values,
70 * <p>Some map implementations have restrictions on the keys and values they
72 * values, and some have restrictions on the types of their keys. Attempting
106 * @param <V> the type of mapped values
170 * map does not permit null values
184 * <p>If this map permits null values, then a return value of
218 * if the implementation supports <tt>null</tt> values.)
224 * and this map does not permit null keys or values
240 * <p>If this map permits null values, the
330 Collection<V> values(); method in interface:Map
[all...]
H A DAbstractMap.java59 * @param <V> the type of mapped values
300 transient volatile Collection<V> values = null; field in class:AbstractMap
373 public Collection<V> values() { method in class:AbstractMap
374 if (values == null) {
375 values = new AbstractCollection<V>() {
411 return values;
505 * associated value. Keys and values are converted to strings as by
532 * and values themselves are not cloned.
539 result.values = null;
/openjdk7/jdk/src/share/classes/javax/imageio/plugins/jpeg/
H A DJPEGHuffmanTable.java153 private short[] values; field in class:JPEGHuffmanTable
161 * is equal to the number of values with corresponding codes of
163 * @param values an array of shorts containing the values in
166 * <code>values</code> are null, the length of <code>lengths</code> is
167 * greater than 16, the length of <code>values</code> is greater than 256,
168 * if any value in <code>lengths</code> or <code>values</code> is less
171 public JPEGHuffmanTable(short[] lengths, short[] values) { argument
172 if (lengths == null || values == null ||
173 lengths.length == 0 || values
204 JPEGHuffmanTable(short[] lengths, short[] values, boolean copy) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DMLetContent.java49 * and their values.
63 private List<String> values; field in class:MLetContent
83 * example <code>codebase</code>. The values are the associated attribute
84 * values.
87 * @param values A list of the VALUE attributes that appeared in nested
91 List<String> types, List<String> values) {
95 this.values = Collections.unmodifiableList(values);
132 * example <code>codebase</code>. The values are the associated
133 * attribute values
90 MLetContent(URL url, Map<String,String> attributes, List<String> types, List<String> values) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeDataSupport.java62 * respective values.
74 * <tt>compositeType</tt>, whose item values
79 * to specify the order in which the values are given in <tt>itemValues[]</tt>.
83 * retrieval of individual item values.</p>
94 * names are listed, is used to match values in <tt>itemValues[]</tt>; must
97 * @param itemValues the values of the items, listed in the same order as
150 * Constructs a <tt>CompositeDataSupport</tt> instance with the specified <tt>compositeType</tt>, whose item names and corresponding values
152 * This constructor converts the keys to a string array and the values to an object array and calls
157 * @param items the mappings of all the item names to their values;
167 * <tt>compositeType</tt>, or one of the values i
326 public Collection<?> values() { method in class:CompositeDataSupport
[all...]
H A DTabularData.java86 * Returns the number of <tt>CompositeData</tt> values (ie the
90 * @return the number of values contained.
96 * values (ie the number of rows) contained in this
198 * Add all the elements in <var>values</var> to this <tt>TabularData</tt> instance.
199 * If any element in <var>values</var> does not satisfy the constraints defined in {@link #put(CompositeData) <tt>put</tt>},
200 * or if any two elements in <var>values</var> have the same index calculated according to this <tt>TabularData</tt>
202 * and no element of <var>values</var> is added, thus leaving this <tt>TabularData</tt> instance unchanged.
204 * @param values the array of composite data values to be added as new rows to this <tt>TabularData</tt> instance;
205 * if <var>values</va
215 putAll(CompositeData[] values) argument
251 public Collection<?> values(); method in interface:TabularData
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DNativeEnum.java91 public boolean confirm(String... values){ argument
97 Arrays.asList(values));
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DDHTMarkerSegment.java66 count -= 1 + 16 + newGuy.values.length;
151 short [] values; field in class:DHTMarkerSegment.Htable
164 values = new short[numValues];
166 values[i] = (short) (buffer.buf[buffer.bufPtr++] & 0xff);
174 values = table.getValues();
196 values = table.getValues();
216 if (values != null) {
217 newGuy.values = (short []) values.clone();
227 node.setUserObject(new JPEGHuffmanTable(numCodes, values));
[all...]
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DAttributeListImpl.java167 values.addElement(value);
192 values.removeElementAt(i);
211 values.removeAllElements();
291 return (String)values.elementAt(i);
332 Vector values = new Vector(); field in class:AttributeListImpl
/openjdk7/jdk/test/java/beans/Introspector/6976577/test/
H A DAccessor.java70 public void setIndexed(int[] values) { argument
71 this.indexed = values;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DOptions.java48 private LinkedHashMap<String,String> values; field in class:Options
60 values = new LinkedHashMap<String,String>();
68 return values.get(name);
75 return values.get(name.optionName);
98 return (values.get(name) != null);
105 return (values.get(name.optionName) != null);
112 return (values.get(name.optionName + value) != null);
119 return (values.get(name) == null);
126 return (values.get(name.optionName) == null);
133 return (values
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DValueRecords.h52 le_int16 values[ANY_NUMBER]; member in struct:ValueRecord
67 LE_VAR_ARRAY(ValueRecord, values)
/openjdk7/jdk/src/share/classes/sun/text/
H A DUCompactIntArray.java34 values = new int[16][];
56 return values[plane][(indices[plane][index >> BLOCKSHIFT] & 0xFFFF)
76 values[plane][index] = value;
99 // If no values in this block were set, we can just set its
100 // index to be the same as some other block with no values
106 System.arraycopy(values[plane], iBlockStart,
107 values[plane], jBlockStart, BLOCKCOUNT);
121 System.arraycopy(values[plane], 0, result, 0, newSize);
122 values[plane] = result;
146 tempArray[i] = values[plan
200 private int values[][]; field in class:UCompactIntArray
[all...]
/openjdk7/jdk/test/java/util/concurrent/locks/ReentrantReadWriteLock/
H A DRWMap.java98 public Collection values() { // Not implemented method in class:RWMap
/openjdk7/jdk/test/javax/management/monitor/
H A DCounterMonitorTest.java58 // counter values
59 private int[] values = new int[] {4, 6, 9, 11}; field in class:CounterMonitorTest
178 // Loop through the values
180 for (int i = 0; i < values.length; i++) {
181 data = new Integer(values[i]);
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DUnmodifiableHeaders.java88 public Collection<List<String>> values() { method in class:UnmodifiableHeaders
89 return Collections.unmodifiableCollection(map.values());
/openjdk7/jdk/src/share/native/sun/misc/
H A DVM.c46 jintArray values; local
49 values = (*GetThreadStateValues_fp)(env, state);
50 if (values == NULL) {
57 (*env)->SetObjectArrayElement(env, stateValues, state, values);
59 names = (*GetThreadStateNames_fp)(env, state, values);
71 jobjectArray values,
78 jsize len1 = (*env)->GetArrayLength(env, values);
106 get_thread_state_info(env, JAVA_THREAD_STATE_NEW, values, names);
107 get_thread_state_info(env, JAVA_THREAD_STATE_RUNNABLE, values, names);
108 get_thread_state_info(env, JAVA_THREAD_STATE_BLOCKED, values, name
70 Java_sun_misc_VM_getThreadStateValues(JNIEnv *env, jclass cls, jobjectArray values, jobjectArray names) argument
[all...]
/openjdk7/langtools/test/tools/javac/boxing/
H A DBoxedForeach.java70 static <E extends Enum<E>> void f(E[] values) { argument
71 for ( E e : values ) {
93 f(color.values());
/openjdk7/jdk/test/sun/rmi/rmic/minimizeWrapperInstances/
H A DTest.java46 private static void printValues(Object... values) { argument
48 for (int i = 0; i < values.length; i++) {
52 printValue(values[i]);
68 System.err.print("expected argument values: ");
70 System.err.print(" actual argument values: ");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DStackFrameImpl.java121 StackValueCollection values = saFrame.getLocals();
123 Assert.that(values.size() > 0, "this is missing");
126 if (values.get(0).getType() == BasicType.getTConflict()) {
129 OopHandle handle = values.oopHandleAt(0);
168 List mapAsList = new ArrayList(visibleVariables.values());
192 StackValueCollection values = saFrame.getLocals();
206 valueImpl = getSlotValue(values, variableType, ss);
214 StackValueCollection values = saFrame.getLocals();
226 res.add(getSlotValue(values, variableType, slot));
234 private ValueImpl getSlotValue(StackValueCollection values, argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DJavaVFrame.java188 private void printStackValuesOn(PrintStream tty, String title, StackValueCollection values) { argument
189 if (values.isEmpty()) {
193 for (int index = 0; index < values.size(); index++) {
195 values.get(index).printOn(tty);
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolParser.java172 Object[] values = new Object[getLength()];
174 parseConstantPool(buffer, values, visitor);
185 resolveConstantPool(values, visitor);
194 private void parseConstantPool(ByteBuffer buffer, Object[] values, ConstantPoolVisitor visitor) throws InvalidConstantPoolFormatException { argument
205 values[i++] = value;
227 values[i++] = new int[] { getUnsignedShort(buffer) };
235 values[i++] = new int[] { getUnsignedShort(buffer), getUnsignedShort(buffer) };
243 private void resolveConstantPool(Object[] values, ConstantPoolVisitor visitor) { argument
244 // clean out the int[] values, which are temporary
245 for (int beg = 1, end = values
[all...]

Completed in 73 milliseconds

1234567