Searched refs:value (Results 126 - 150 of 408) sorted by relevance

1234567891011>>

/libcore/dalvik/src/main/java/dalvik/annotation/
H A DAndroidOnly.java37 String value(); method in interface:AndroidOnly
H A DBrokenTest.java38 String value(); method in interface:BrokenTest
H A DKnownFailure.java38 String value(); method in interface:KnownFailure
H A DSideEffect.java40 String value(); method in interface:SideEffect
H A DTestTargetClass.java40 Class<?> value(); method in interface:TestTargetClass
H A DTestTargets.java38 TestTargetNew[] value(); method in interface:TestTargets
/libcore/luni/src/main/java/java/io/
H A DObjectOutput.java75 * byte of the integer {@code value} is written to the stream. Blocks until
78 * @param value
83 public void write(int value) throws IOException; argument
/libcore/luni/src/main/java/java/sql/
H A DRef.java72 * Sets the value of the structured type that this {@code Ref} references to
75 * @param value
81 public void setObject(Object value) throws SQLException; argument
/libcore/luni/src/main/java/java/util/
H A DDictionary.java48 * Returns the value which is associated with {@code key}.
51 * the key of the value returned.
52 * @return the value associated with {@code key}, or {@code null} if the
59 * Returns true if this dictionary has no key/value pairs.
61 * @return {@code true} if this dictionary has no key/value pairs,
78 * Associate {@code key} with {@code value} in this dictionary. If {@code
79 * key} exists in the dictionary before this call, the old value in the
80 * dictionary is replaced by {@code value}.
84 * @param value
85 * the value t
92 put(K key, V value) argument
[all...]
H A DHashMap.java40 * the value of an entry are not structural changes.
110 * The value of this field is generally .75 * capacity, except when
216 * The returned value will be between 0 and MAXIMUM_CAPACITY (inclusive).
287 * Returns the value of the mapping with the specified key.
291 * @return the value of the mapping with the specified key, or {@code null}
297 return e == null ? null : e.value;
306 return e.value;
338 * Returns whether this map contains the specified value.
340 * @param value
341 * the value t
345 containsValue(Object value) argument
380 put(K key, V value) argument
407 putValueForNullKey(V value) argument
436 constructorPut(K key, V value) argument
470 addNewEntry(K key, V value, int hash, int index) argument
479 addNewEntryForNullKey(V value) argument
488 constructorNewEntry( K key, V value, int hash, HashMapEntry<K, V> first) argument
720 V value; field in class:HashMap.HashMapEntry
724 HashMapEntry(K key, V value, int hash, HashMapEntry<K, V> next) argument
739 setValue(V value) argument
830 containsMapping(Object key, Object value) argument
851 removeMapping(Object key, Object value) argument
[all...]
H A DCalendar.java58 * has value {@code MONTH} == {@code JANUARY} for all calendars.
162 * <strong>{@code set(f, value)}</strong> changes field {@code f}
163 * to {@code value}. In addition, it sets an internal member variable to
170 * other fields may also change, depending on the field, the field value, and
172 * return {@code value} after the fields have been recomputed. The
193 * <strong>Add rule 1</strong>. The value of field {@code f} after the
194 * call minus the value of field {@code f} before the call is
196 * {@code f}. Overflow occurs when a field value exceeds its range and,
198 * field value is adjusted back into its range.
202 * but &nbsp; it is impossible for it to be equal to its prior value becaus
748 add(int field, int value) argument
1102 roll(int field, int value) argument
1121 set(int field, int value) argument
1172 setFirstDayOfWeek(int value) argument
1180 setLenient(boolean value) argument
1187 setMinimalDaysInFirstWeek(int value) argument
[all...]
/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicBoolean.java11 * A {@code boolean} value that may be updated atomically. See the
30 (AtomicBoolean.class.getDeclaredField("value"));
34 private volatile int value; field in class:AtomicBoolean
37 * Creates a new {@code AtomicBoolean} with the given initial value.
39 * @param initialValue the initial value
42 value = initialValue ? 1 : 0;
46 * Creates a new {@code AtomicBoolean} with initial value {@code false}.
52 * Returns the current value.
54 * @return the current value
57 return value !
[all...]
H A DAtomicReference.java27 (AtomicReference.class.getDeclaredField("value"));
31 private volatile V value; field in class:AtomicReference
34 * Creates a new AtomicReference with the given initial value.
36 * @param initialValue the initial value
39 value = initialValue;
43 * Creates a new AtomicReference with null initial value.
49 * Gets the current value.
51 * @return the current value
54 return value;
58 * Sets to the given value
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DDocumentBuilderFactoryImpl.java84 public void setAttribute(String name, Object value) argument
90 public void setFeature(String name, boolean value) argument
97 setNamespaceAware(value);
99 setValidating(value);
/libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
H A DTestAnnotation1.java24 String value(); method in interface:TestAnnotation1
/libcore/luni/src/main/java/java/util/prefs/
H A DPreferences.java56 * a default value. The default value is returned when the preferences cannot
97 * Maximum size in characters allowed for a preferences value.
234 * Gets the {@code String} value mapped to the given key or its default
235 * value if no value is mapped or no backing store is available.
238 * case, if there is no value mapped to the given key, the stored default
239 * value is returned.
245 * the default value, which will be returned if no value i
559 put(String key, String value) argument
578 putBoolean(String key, boolean value) argument
603 putByteArray(String key, byte[] value) argument
626 putDouble(String key, double value) argument
649 putFloat(String key, float value) argument
672 putInt(String key, int value) argument
695 putLong(String key, long value) argument
[all...]
/libcore/support/src/test/java/tests/support/
H A DSupport_Format.java93 Object value = iterator.getAttribute(attribute);
94 result.add(new FieldContainer(start, end, attribute, value));
96 // " + value );
98 // end +"," + attribute+ "," + value+ "));");
110 Object value; field in class:Support_Format.FieldContainer
119 public FieldContainer(int start, int end, Attribute attribute, int value) { argument
120 this(start, end, attribute, new Integer(value));
125 Object value) {
129 this.value = value;
124 FieldContainer(int start, int end, Attribute attribute, Object value) argument
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
H A DMockFilter.java61 public void setFeature(String name, boolean value) { argument
62 if (value) {
70 public void setProperty(String name, Object value) throws SAXNotRecognizedException, argument
72 if (value == null) {
75 properties.put(name, value);
/libcore/luni/src/main/java/java/lang/
H A DThreadLocal.java25 * has its own value. All threads share the same {@code ThreadLocal} object,
26 * but each sees a different value when accessing it, and changes made by one
43 * Returns the value of this variable for the current thread. If an entry
45 * create an entry, populating the value with the result of
48 * @return the current value of the variable for the calling thread.
69 * Provides the initial value of this variable for the current thread.
72 * @return the initial value of the variable.
79 * Sets the value of this variable for the current thread. If set to
80 * {@code null}, the value will be set to null and the underlying entry will
83 * @param value th
85 set(T value) argument
365 add(ThreadLocal<?> key, Object value) argument
380 put(ThreadLocal<?> key, Object value) argument
[all...]
H A DLong.java38 * The value which the receiver represents.
40 private final long value; field in class:Long
43 * Constant for the maximum {@code long} value, 2<sup>63</sup>-1.
48 * Constant for the minimum {@code long} value, -2<sup>63</sup>.
70 * Constructs a new {@code Long} with the specified primitive long value.
72 * @param value
73 * the primitive long value to store in the new instance.
75 public Long(long value) { argument
76 this.value = value;
[all...]
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
H A DASN1BitString.java113 boolean[] value;
120 value = new boolean[bitsNumber];
123 value = new boolean[bitsNumber];
125 value = new boolean[minBits];
132 value = new boolean[maxBits];
137 return value;
145 value[j] = (SET_MASK[k] & octet) != 0;
153 value[j] = (SET_MASK[k] & octet) != 0;
156 return value;
/libcore/luni/src/main/java/java/nio/
H A DByteArrayBuffer.java308 @Override public ByteBuffer putChar(int index, char value) { argument
313 Memory.pokeShort(backingArray, arrayOffset + index, (short) value, order);
317 @Override public ByteBuffer putChar(char value) { argument
325 Memory.pokeShort(backingArray, arrayOffset + position, (short) value, order);
330 @Override public ByteBuffer putDouble(double value) { argument
331 return putLong(Double.doubleToRawLongBits(value));
334 @Override public ByteBuffer putDouble(int index, double value) { argument
335 return putLong(index, Double.doubleToRawLongBits(value));
338 @Override public ByteBuffer putFloat(float value) { argument
339 return putInt(Float.floatToRawIntBits(value));
342 putFloat(int index, float value) argument
346 putInt(int value) argument
359 putInt(int index, int value) argument
368 putLong(int index, long value) argument
377 putLong(long value) argument
390 putShort(int index, short value) argument
399 putShort(short value) argument
[all...]
/libcore/luni/src/main/java/java/security/cert/
H A DCertificateRevokedException.java136 byte[] value = new byte[valueLen];
137 stream.read(value);
139 new org.apache.harmony.security.x509.Extension(oid, critical, value));
150 byte[] value = e.getValue();
151 stream.writeInt(value.length);
152 stream.write(value);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DTreeMapExtendTest.java271 Object value = null;
273 value = objArray[counter];
275 .containsValue(value));
277 subMap_startExcluded_endExcluded.containsValue(value));
279 subMap_startExcluded_endIncluded.containsValue(value));
281 subMap_startIncluded_endExcluded.containsValue(value));
283 subMap_startIncluded_endIncluded.containsValue(value));
287 value = objArray[100];
289 .containsValue(value));
291 subMap_startExcluded_endExcluded.containsValue(value));
[all...]
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A Dnodesetprefix09.java64 String value = "#$%&'()@";
72 element.setPrefix(value);

Completed in 1252 milliseconds

1234567891011>>