Searched defs:values (Results 51 - 75 of 157) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DTabularDataSupport.java416 * Add all the values contained in the specified map <var>t</var>
418 * the collection of values contained in this map into an array of
419 * <tt>CompositeData</tt> values, if possible, and then call the
426 * @param t the map whose values are to be added as new rows to
442 * values in <var>t</var> have the same index.
452 // Convert the values in t into an array of <tt>CompositeData</tt>
454 CompositeData[] values;
456 values =
457 t.values().toArray(new CompositeData[t.size()]);
459 throw new ClassCastException("Map argument t contains values whic
496 putAll(CompositeData[] values) argument
613 public Collection<Object> values() { method in class:TabularDataSupport
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DUtil.java114 * Computes a descriptor hashcode from its names and values.
116 * @param values the array of descriptor values.
119 public static int hashCode(String[] names, Object[] values) { argument
122 Object v = values[i];
/openjdk7/jdk/src/share/classes/com/sun/management/
H A DGcInfo.java269 public Collection values() { method in class:GcInfo
270 return cdata.values();
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHeaders.java38 * For example, if a response header instance contains one key "HeaderName" with two values "value1 and value2"
52 * overwriting any existing values in the value list.
54 * All methods in this class accept <code>null</code> values for keys and values. However, null
56 * Null values can be represented as either a null entry for the key (i.e. the list is null) or
57 * where the key has a list, but one (or more) of the list's values is null. Null values are output
114 * returns the first value from the List of String values
174 public Collection<List<String>> values() {return map.values();} method in class:Headers
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DArrayReferenceImpl.java120 vals = cast(JDWP.ArrayReference.GetValues.process(vm, this, index, length).values);
136 public void setValues(List<? extends Value> values) argument
139 setValues(0, values, 0, -1);
142 public void setValues(int index, List<? extends Value> values, argument
149 // the source values
151 values.size() - srcIndex);
153 validateMirrorsOrNulls(values);
156 if ((srcIndex < 0) || (srcIndex > values.size())) {
160 if (srcIndex + length > values.size()) {
171 ValueImpl value = (ValueImpl)values
[all...]
/openjdk7/jdk/make/tools/src/build/tools/hasher/
H A DHasher.java55 List values = new ArrayList(); // Value expressions field in class:Hasher
116 // Read keys and values
129 values.add(ws[1]);
157 String v = (String)values.get(i);
224 if (!v.equals(values.get(i)))
226 + v + ", should be " + values.get(i));
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCCharToGlyphMapper.java249 public synchronized void get(int count, char[] indicies, int[] values) argument
273 values[i] = value;
275 values[i+1] = INVISIBLE_GLYPH_ID;
279 values[i] = 0;
318 values[i] = glyphCodes[m];
319 put(code, values[i]);
322 values[i + 1] = INVISIBLE_GLYPH_ID;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DMessageContextImpl.java191 public Collection<Object> values() { method in class:MessageContextImpl
193 return fallbackMap.values();
198 * Fill a {@link Packet} with values of this {@link MessageContext}.
H A DMessageUpdatableContext.java51 * Fill a {@link Packet} with values of this {@link MessageContext}.
143 public Collection<Object> values() { method in class:MessageUpdatableContext
144 return ctxt.values();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DIterators.java166 private Set<T> values = new HashSet<T>(); field in class:Iterators.Unique
172 return values.add(value);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DAttribute.java135 /** The attributes values, as pairs. Each pair contains a
140 public final List<Pair<MethodSymbol,Attribute>> values; field in class:Attribute.Compound
142 List<Pair<MethodSymbol,Attribute>> values) {
144 this.values = values;
160 int len = values.length();
164 for (Pair<MethodSymbol, Attribute> value : values) {
181 for (Pair<MethodSymbol,Attribute> pair : values)
201 for (Pair<MethodSymbol, Attribute> value : values)
210 public final Attribute[] values; field in class:Attribute.Array
141 Compound(Type type, List<Pair<MethodSymbol,Attribute>> values) argument
211 Array(Type type, Attribute[] values) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCRLReasonCodeExtension.java84 private static CRLReason[] values = CRLReason.values(); field in class:CRLReasonCodeExtension
184 return super.toString() + " Reason Code: " + values[reasonCode];
228 if (reasonCode > 0 && reasonCode < values.length) {
229 return values[reasonCode];
/openjdk7/jdk/src/share/classes/sun/text/
H A DCompactByteArray.java45 * values, such as character properties, types, keyboard values, etc.This
47 * significant values while the rest of the Unicode data is unused in the
53 * <LI>Fast access of the indexed values.
77 values = new byte[UNICODECOUNT];
81 values[i] = defaultValue;
93 * @param newValues the values of the compact array.
108 values = newValues;
119 return (values[(indices[index >> BLOCKSHIFT] & 0xFFFF)
132 values[(in
348 private byte[] values; // char -> short (char parameterized short) field in class:CompactByteArray
[all...]
H A DIntHashtable.java37 * Note: the keys are limited to values above Integer.MIN_VALUE+1.<br>
66 values[index] = value; // reset value
70 return values[find(key)];
77 values[index] = defaultValue; // set to default
103 if (key > MAX_UNUSED && other.get(key) != values[i])
116 // you copy this algorithm (or these seed and multiplier values) at your own risk.
124 // the same values in a different order will produce a different hash value
128 for (int i = 0; i < values.length; ++i) {
130 result += values[i];
138 values
163 private int[] values; field in class:IntHashtable
[all...]
/openjdk7/jdk/src/share/demo/applets/BarChart/
H A DBarChart.java62 private int values[]; field in class:BarChart
76 values = new int[columns];
125 values[i] = Integer.parseInt(temp);
127 values[i] = 0;
129 values[i] = 0;
131 maxValue = Math.max(maxValue, values[i]);
235 (values[i] * scale), barHeight);
240 for (int k = 0; k <= values[i] * scale; k += 2) {
245 (values[i] * scale) + 1, barHeight + 1);
247 cx += (values[
[all...]
/openjdk7/jdk/src/share/classes/sun/management/
H A DLazyCompositeData.java84 public Collection values() { method in class:LazyCompositeData
85 return compositeData().values();
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DHeaderParser.java67 * create a new HeaderParser from this, whose keys (and corresponding values)
217 public Iterator values () { method in class:HeaderParser
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeCounter.java242 * Sets formatting fields to their default values.
291 * Format a sequence of values according to the format paramaters
294 protected String formatNumbers(int[] values) { argument
295 final int nValues = values.length;
299 if (values[i] != Integer.MIN_VALUE)
303 // Format the output string using the values array and the fmt. tokens
314 final int value = values[n];
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLDOMWriterImpl.java315 * @param values {@inheritDoc}
320 public void writeCharacters(char[] values, int param, int param2) throws XMLStreamException { argument
322 Text text = ownerDoc.createTextNode(new String(values,param,param2));
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusStyle.java57 * <p>This class properly reads and retrieves values placed in the UIDefaults
64 * UIDefaults, then the values in that defaults table will override the standard
84 * <p>The values are only read out of UIManager once, and then cached. If
85 * you need to read the values again (for example, if the UI is being reloaded),
133 * there is no value, then NULL will be placed into the values map. This way
178 * values associated with this style. This instance refers to default
179 * values, and are used when no overrides are discovered in the client
180 * properties of a component. These values are lazily created on first
183 private Values values; field in class:NimbusStyle
239 // a non-null values objec
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DDTD.java287 protected AttributeList defAttributeList(String name, int type, int modifier, String value, String values, AttributeList atts) { argument
289 if (values != null) {
291 for (StringTokenizer s = new StringTokenizer(values, "|") ; s.hasMoreTokens() ;) {
450 Vector<String> values = null;
453 values = new Vector<String>(numValues);
455 values.addElement(names[in.readShort()]);
459 values, result);
/openjdk7/jdk/src/share/classes/sun/font/
H A DDecoration.java91 public static Decoration getDecoration(AttributeValues values) { argument
92 if (values == null || !values.anyDefined(VALUES_MASK)) {
96 values = values.applyIMHighlight();
98 return new DecorationImpl(values.getForeground(),
99 values.getBackground(),
100 values.getSwapColors(),
101 values.getStrikethrough(),
102 Underline.getUnderline(values
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DEnumMap.java41 * {@link #entrySet()}, and {@link #values()}).
51 * Null values are permitted.
90 * All of the values comprising K. (Cached for performance.)
107 * Distinguished non-null value for representing null values.
410 * Returns a {@link Collection} view of the values contained in this map.
412 * {@link Map#values()}. The collection's iterator will return the
413 * values in the order their corresponding keys appear in map,
417 * @return a collection view of the values contained in this map
419 public Collection<V> values() { method in class:EnumMap
420 Collection<V> vs = values;
[all...]
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DAttributes.java43 * values. Valid attribute names are case-insensitive, are restricted to
45 * characters in length. Attribute values can contain any characters and
48 * for more information about valid attribute names and values.
248 * Returns a Collection view of the attribute values contained in this Map.
250 public Collection<Object> values() { method in class:Attributes
251 return map.values();
286 * Since the attribute names and values are themselves immutable,
296 * XXX Need to handle UTF8 values and break up lines longer than 72 bytes
325 * XXX Need to handle UTF8 values and break up lines longer than 72 bytes
369 * XXX Need to handle UTF8 values
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DImmutableDescriptor.java51 * The values of the fields in this ImmutableDescriptor. The
55 private final Object[] values; field in class:ImmutableDescriptor
66 * Construct a descriptor containing the given fields and values.
94 * <p>Construct a descriptor where the names and values of the fields
95 * are the keys and values of the given Map.</p>
117 this.values = map.values().toArray(new Object[size]);
133 if (names == null || values == null || names.length != values.length)
150 throw new InvalidObjectException("Bad names or values");
[all...]

Completed in 92 milliseconds

1234567