Searched refs:value (Results 151 - 175 of 524) sorted by relevance

1234567891011>>

/dalvik/libcore/json/src/main/java/org/json/
H A DJSONArray.java43 * A <code>get</code> method returns a value if one can be found, and throws an
45 * default value instead of throwing an exception, and so is useful for
59 * <li>The <code>null</code> value will be inserted when there
164 * Get the object value associated with an index.
167 * @return An object value.
168 * @throws JSONException If there is no value for the index.
180 * Get the boolean value associated with an index.
185 * @throws JSONException If there is no value for the index or if the
186 * value is not convertable to boolean.
204 * Get the double value associate
534 put(boolean value) argument
547 put(double value) argument
561 put(int value) argument
573 put(long value) argument
586 put(Object value) argument
601 put(int index, boolean value) argument
617 put(int index, double value) argument
632 put(int index, int value) argument
647 put(int index, long value) argument
663 put(int index, Object value) argument
[all...]
/dalvik/libcore/text/src/main/java/java/text/
H A DNumberFormat.java240 * @param value
245 public final String format(double value) { argument
246 return format(value, new StringBuffer(), new FieldPosition(0))
251 * Formats the specified double value as a string using the pattern of this
254 * If the {@code field} member of {@code position} contains a value
260 * @param value
263 * the target string buffer to append the formatted double value
271 public abstract StringBuffer format(double value, StringBuffer buffer, argument
277 * @param value
282 public final String format(long value) { argument
308 format(long value, StringBuffer buffer, FieldPosition field) argument
665 setGroupingUsed(boolean value) argument
678 setMaximumFractionDigits(int value) argument
694 setMaximumIntegerDigits(int value) argument
709 setMinimumFractionDigits(int value) argument
724 setMinimumIntegerDigits(int value) argument
742 setParseIntegerOnly(boolean value) argument
[all...]
H A DDecimalFormat.java141 * then the value is multiplied by 100 before being displayed.
385 * {@link DecimalFormatSymbols} object. This is the only value for which the
608 * @param value
614 public DecimalFormat(String pattern, DecimalFormatSymbols value) { argument
615 symbols = (DecimalFormatSymbols) value.clone();
722 * Formats the specified double value as a string using the pattern of this
725 * If the {@code field} member of {@code position} contains a value
731 * @param value
734 * the target string buffer to append the formatted double value
743 public StringBuffer format(double value, StringBuffe argument
770 format(long value, StringBuffer buffer, FieldPosition position) argument
947 setParseIntegerOnly(boolean value) argument
1053 setDecimalFormatSymbols(DecimalFormatSymbols value) argument
1089 setDecimalSeparatorAlwaysShown(boolean value) argument
1102 setGroupingSize(int value) argument
1115 setGroupingUsed(boolean value) argument
1143 setMaximumFractionDigits(int value) argument
1161 setMaximumIntegerDigits(int value) argument
1177 setMinimumFractionDigits(int value) argument
1193 setMinimumIntegerDigits(int value) argument
1206 setMultiplier(int value) argument
1217 setNegativePrefix(String value) argument
1228 setNegativeSuffix(String value) argument
1239 setPositivePrefix(String value) argument
1250 setPositiveSuffix(String value) argument
1503 setInternalField(final String fieldName, final Object target, final Object value) argument
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DTwoKeyHashMap.java125 return null != e ? e.value : null;
129 * Associates the specified value with the specified keys in this map
132 * @param value
135 public V put(E key1, K key2, V value) { argument
139 arr[index] = createEntry(0, null, null, value, null);
144 V oldValue = arr[index].value;
145 arr[index].value = value;
156 V oldValue = e.value;
157 e.value
255 createEntry(int hashCode, E key1, K key2, V value, Entry<E, K, V> next) argument
285 V value; field in class:TwoKeyHashMap.Entry
288 Entry(int hash, E key1, K key2, V value, Entry<E, K, V> next) argument
312 setValue(V value) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DCalendar.java67 * has value {@code MONTH} == {@code JANUARY} for all calendars.
173 * <strong>{@code set(f, value)}</strong> changes field {@code f}
174 * to {@code value}. In addition, it sets an internal member variable to
181 * other fields may also change, depending on the field, the field value, and
183 * return {@code value} after the fields have been recomputed. The
207 * <strong>Add rule 1</strong>. The value of field {@code f} after the
208 * call minus the value of field {@code f} before the call is
210 * {@code f}. Overflow occurs when a field value exceeds its range and,
212 * field value is adjusted back into its range.
217 * but &nbsp; it is impossible for it to be equal to its prior value becaus
828 add(int field, int value) argument
1286 roll(int field, int value) argument
1317 set(int field, int value) argument
1404 setFirstDayOfWeek(int value) argument
1416 setLenient(boolean value) argument
1427 setMinimalDaysInFirstWeek(int value) argument
[all...]
H A DDictionary.java53 * Returns the value which is associated with {@code key}.
56 * the key of the value returned.
57 * @return the value associated with {@code key}, or {@code null} if the
65 * Returns true if this dictionary has no key/value pairs.
67 * @return {@code true} if this dictionary has no key/value pairs,
86 * Associate {@code key} with {@code value} in this dictionary. If {@code
87 * key} exists in the dictionary before this call, the old value in the
88 * dictionary is replaced by {@code value}.
92 * @param value
93 * the value t
101 put(K key, V value) argument
[all...]
/dalvik/libcore/annotation/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
H A DTestAnnotation1.java24 String value(); method in interface:TestAnnotation1
/dalvik/libcore/dalvik/src/main/java/dalvik/annotation/
H A DAndroidOnly.java37 String value(); method in interface:AndroidOnly
H A DBrokenTest.java36 String value(); method in interface:BrokenTest
H A DKnownFailure.java38 String value(); method in interface:KnownFailure
H A DSideEffect.java38 String value(); method in interface:SideEffect
H A DTestTargetClass.java41 Class<?> value(); method in interface:TestTargetClass
H A DTestTargets.java42 TestTargetNew[] value(); method in interface:TestTargets
H A DTimeout.java38 int value(); method in interface:Timeout
H A DVirtualTestTarget.java58 String value() default "";
/dalvik/libcore/luni/src/main/java/java/io/
H A DObjectOutput.java81 * byte of the integer {@code value} is written to the stream. Blocks until
84 * @param value
90 public void write(int value) throws IOException; argument
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DTestAnnotation.java24 String value(); method in interface:TestAnnotation
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DObjectInputValidationTest.java11 value = ObjectInputValidation.class,
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDEREnumerated.java54 int value)
56 bytes = BigInteger.valueOf(value).toByteArray();
60 BigInteger value)
62 bytes = value.toByteArray();
53 DEREnumerated( int value) argument
59 DEREnumerated( BigInteger value) argument
/dalvik/libcore/security/src/main/java/org/bouncycastle/x509/
H A DX509Attribute.java30 * the value represented by an ASN.1 Set containing value.
33 * @param value value object to go into the atribute's value set.
37 ASN1Encodable value)
39 this.attr = new Attribute(new DERObjectIdentifier(oid), new DERSet(value));
44 * value represented by an ASN.1 Set containing the objects in value.
47 * @param value vecto
35 X509Attribute( String oid, ASN1Encodable value) argument
49 X509Attribute( String oid, ASN1EncodableVector value) argument
[all...]
/dalvik/libcore/security/src/test/java/tests/targets/security/
H A DMessageDigestTestMD5.java21 @TestTargetClass(value=targets.MessageDigests.MD5.class)
H A DMessageDigestTestSHA1.java21 @TestTargetClass(value=targets.MessageDigests.SHA_1.class)
H A DMessageDigestTestSHA256.java21 @TestTargetClass(value=targets.MessageDigests.SHA_256.class)
H A DMessageDigestTestSHA384.java21 @TestTargetClass(value=targets.MessageDigests.SHA_384.class)
H A DMessageDigestTestSHA512.java21 @TestTargetClass(value=targets.MessageDigests.SHA_512.class)

Completed in 2009 milliseconds

1234567891011>>