Searched defs:values (Results 1 - 25 of 157) sorted by relevance

1234567

/openjdk7/jdk/test/javax/naming/ldap/LdapName/
H A DEscapeUnescapeTests.java76 String[] values = new String[] {";", "<<<", "###", "=="};
78 printEscapedVal(values);
81 values = new String[] {" leading space", "trailing space "};
82 printEscapedVal(values);
84 // binary values
91 static void printEscapedVal(Object[] values) { argument
93 for (int i = 0; i < values.length; i++) {
94 escVal = Rdn.escapeValue(values[i]);
95 System.out.println("Orig val: " + values[i] +
/openjdk7/hotspot/test/compiler/6741738/
H A DTester.java32 private String[] values; field in class:Tester
39 s = values[i];
/openjdk7/jdk/test/java/io/Reader/
H A DReadParams.java35 static int values[] = {Integer.MIN_VALUE, -1, 0, 1, 4, 16, 31, field in class:ReadParams
44 for ( j = 0; j < values.length; j++) {
45 for ( k = 0; k < values.length; k++) {
50 indexOutBnd = ((values[j] + values[k]) < 0)
51 ||(values[j] < 0)
52 || (values[j] > bufLen)
53 || (values[k] < 0)
54 || ((values[j] + values[
[all...]
/openjdk7/jdk/test/java/io/Writer/
H A DWriteParams.java35 static int values[] = {Integer.MIN_VALUE, -1, 0, 1, 4, 16, 31, field in class:WriteParams
44 for ( j = 0; j < values.length; j++) {
45 for ( k = 0; k < values.length; k++) {
50 indexOutBnd = ((values[j] + values[k]) < 0)
51 || (values[j] < 0)
52 || (values[j] > bufLen)
53 || (values[k] < 0)
54 || ((values[j] + values[
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/
H A DCompositeStructure.java34 * and values[i] (which defines the actual value.)
50 public Object[] values; field in class:CompositeStructure
/openjdk7/langtools/test/com/sun/javadoc/testNewLanguageFeatures/pkg/
H A DCoin.java43 * Overloaded values method has correct documentation.
45 public static final Coin[] values(int foo) { method in class:Coin
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXPlotter.java40 public void addValues(long time, long... values) { argument
41 super.addValues(time, values);
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DEnumControl.java30 * discrete possible values, each represented by an object. In a
40 * a set of values along some quantifiable dimension might be implemented
42 * However, a key feature of <code>EnumControl</code> is that the returned values
43 * are arbitrary objects, rather than numerical or boolean values. This means that each
46 * <code>{@link ReverbType}</code> that can be queried for the parameter values
62 * The set of possible values.
64 private Object[] values; field in class:EnumControl
81 * @param values the set of possible values for the control
84 protected EnumControl(Type type, Object[] values, Objec argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpinnerListModel.java34 * values are defined by an array or a <code>List</code>.
67 * values is defined by the specified <code>List</code>.
69 * of the model will be <code>values.get(0)</code>.
70 * If <code>values</code> is <code>null</code> or has zero
73 * @param values the sequence this model represents
74 * @throws IllegalArugmentException if <code>values</code> is
77 public SpinnerListModel(List<?> values) { argument
78 if (values == null || values.size() == 0) {
81 this.list = values;
97 SpinnerListModel(Object[] values) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DAttributeMap.java30 The only new api is 'getValues()' which returns the values struct as
32 create a real map and forward to it, and nuke values because of the
34 trying to create a map that only clears values if the map has been
35 changed, or implementing the map API directly on top of the values
58 private AttributeValues values; field in class:AttributeMap
61 public AttributeMap(AttributeValues values) { argument
62 this.values = values;
75 return values;
85 delegateMap = values
[all...]
H A DBidiUtils.java150 * is distinct and the values run from zero to the length of the array minus one).
151 * For example, if <code>values[i] = j</code>, then <code>inverse[j] = i</code>.
152 * @param values the source ordering array
155 public static int[] createInverseMap(int[] values) { argument
156 if (values == null) {
160 int[] result = new int[values.length];
161 for (int i = 0; i < values.length; i++) {
162 result[values[i]] = i;
170 * Return an array containing contiguous values from 0 to length
172 * a canonical ltr ordering, return null. The data in values[] i
178 createContiguousOrder(int[] values) argument
189 computeContiguousOrder(int[] values, int start, int limit) argument
250 createNormalizedMap(int[] values, byte[] levels, int start, int limit) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DSortedMap.java34 * {@code entrySet}, {@code keySet} and {@code values} methods).
100 * @param <V> the type of mapped values
246 * Returns a {@link Collection} view of the values contained in this map.
247 * The collection's iterator returns the values in ascending order
260 * @return a collection view of the values contained in this map,
263 Collection<V> values(); method in interface:SortedMap
H A DObjects.java64 * Two {@code null} values are deeply equal. If both arguments are
100 * Generates a hash code for a sequence of input values. The hash
101 * code is generated as if all the input values were placed into an
120 * @param values the values to be hashed
121 * @return a hash value of the sequence of input values
125 public static int hash(Object... values) { argument
126 return Arrays.hashCode(values);
169 * chooses to have for {@code null} values.
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DArrayReference.java103 * Object values must be assignment compatible with the component type
105 * declaring class's class loader). Primitive values must be
133 * Replaces all array components with other values. If the given
134 * list is larger in size than the array, the values at the
137 * Object values must be assignment compatible with the element type
139 * enclosing class's class loader). Primitive values must be
145 * @param values a list of {@link Value} objects to be placed
146 * in this array. If <CODE><I>values</I>.size()</CODE> is
148 * <CODE><I>values</I>.size()</CODE> elements are set.
150 * new <CODE><I>values</
159 setValues(List<? extends Value> values) argument
206 setValues(int index, List<? extends Value> values, int srcIndex, int length) argument
[all...]
/openjdk7/hotspot/test/compiler/7177917/
H A DTest7177917.java37 static long m_pow(double[][] values) { argument
40 for (int i = 0; i < values.length; i++) {
41 res += Math.pow(values[i][0], values[i][1]);
48 static long m_exp(double[] values) { argument
51 for (int i = 0; i < values.length; i++) {
52 res += Math.exp(values[i]);
98 double[][] values = pow_values(1000000);
99 System.out.println("==> POW " + m_pow(values));
113 System.out.println("==> POW " + m_pow(values));
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJAnnotationArrayMember.java46 private final List<JAnnotationValue> values = new ArrayList<JAnnotationValue>(); field in class:JAnnotationArrayMember
62 values.add(annotationValue);
75 values.add(annotationValue);
88 values.add(annotationValue);
101 values.add(annotationValue);
114 values.add(annotationValue);
127 values.add(annotationValue);
140 values.add(annotationValue);
153 values.add(annotationValue);
166 values
[all...]
/openjdk7/jdk/test/java/lang/management/CompositeData/
H A DMemoryNotifInfoCompositeData.java61 // these values are synchronized with the item names
62 private static final Object[] values = { field in class:MemoryNotifInfoCompositeData
84 values);
87 if (!info.getPoolName().equals(values[POOL_NAME])) {
89 " expected = " + values[POOL_NAME]);
91 if (info.getCount() != ((Long) values[COUNT]).longValue()) {
93 " expected = " + values[COUNT]);
130 values);
/openjdk7/langtools/test/tools/javac/T6435291/
H A DT.class ... private final String myName private static final synthetic T[] $VALUES public static final T[] values () public static T valueOf (java ...
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DCorbaInboundConnectionCacheImpl.java102 public Collection values() method in class:CorbaInboundConnectionCacheImpl
H A DCorbaOutboundConnectionCacheImpl.java112 public Collection values() method in class:CorbaOutboundConnectionCacheImpl
114 return connectionCache.values();
H A DCorbaConnectionCacheBase.java87 return values().size();
93 for (Object obj : values()) {
103 Iterator connections = values().iterator();
117 Iterator connections = values().iterator();
174 Iterator iterator = values().iterator();
233 public abstract Collection values(); method in class:CorbaConnectionCacheBase
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DContext.java162 I Sets one or more property values in this <code>Context</code>
174 * @param values an NVList containing the property
175 * names and associated values to be set
182 public abstract void set_values(NVList values); argument
207 * therefore multiple values returned. If the
229 * @param pattern the property name whose values are to
234 * @return an <code>NVList</code> containing all the property values
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DArrayReferenceImpl.java152 public void setValues(List values) argument
155 setValues(0, values, 0, -1);
158 public void setValues(int index, List values, argument
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeData.java69 * Returns an array of the values of the items whose names are specified by <tt>keys</tt>, in the same order as <tt>keys</tt>.
73 * @return the values corresponding to the keys.
103 * Returns an unmodifiable Collection view of the item values contained in this <tt>CompositeData</tt> instance.
104 * The returned collection's iterator will return the values in the ascending lexicographic order of the corresponding
107 * @return the values.
109 public Collection<?> values() ; method in interface:CompositeData
145 * (ie: its <i>composite type</i> and all the item values).
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DContextImpl.java81 public void set_values(NVList values) argument

Completed in 118 milliseconds

1234567