Searched defs:value (Results 1 - 25 of 279) 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/android/util/
H A DMutableBoolean.java22 public boolean value; field in class:MutableBoolean
24 public MutableBoolean(boolean value) { argument
25 this.value = value;
H A DMutableByte.java22 public byte value; field in class:MutableByte
24 public MutableByte(byte value) { argument
25 this.value = value;
H A DMutableChar.java22 public char value; field in class:MutableChar
24 public MutableChar(char value) { argument
25 this.value = value;
H A DMutableDouble.java22 public double value; field in class:MutableDouble
24 public MutableDouble(double value) { argument
25 this.value = value;
H A DMutableFloat.java22 public float value; field in class:MutableFloat
24 public MutableFloat(float value) { argument
25 this.value = value;
H A DMutableInt.java22 public int value; field in class:MutableInt
24 public MutableInt(int value) { argument
25 this.value = value;
H A DMutableLong.java22 public long value; field in class:MutableLong
24 public MutableLong(long value) { argument
25 this.value = value;
H A DMutableShort.java22 public short value; field in class:MutableShort
24 public MutableShort(short value) { argument
25 this.value = value;
/libcore/luni/src/main/java/java/lang/
H A DFindBugsSuppressWarnings.java45 String[] value(); method in interface:FindBugsSuppressWarnings
H A DSuppressWarnings.java44 public String[] value(); method in interface:SuppressWarnings
/libcore/luni/src/main/java/java/lang/annotation/
H A DRetention.java31 RetentionPolicy value(); method in interface:Retention
H A DTarget.java30 ElementType[] value(); method in interface:Target
/libcore/luni/src/main/java/java/text/
H A DAnnotation.java21 * Wrapper for a text attribute value which represents an annotation. An
27 * value is the same.</li>
39 private Object value; field in class:Annotation
48 value = attribute;
52 * Returns the value of this annotation. The value may be {@code null}.
54 * @return the value of this annotation or {@code null}.
57 return value;
67 return getClass().getName() + "[value=" + value
[all...]
H A DCollationKey.java91 * @param value the other collation key.
92 * @return a negative value if this key is less than {@code value},
93 * 0 if they are equal, and a positive value if this key is greater.
95 public abstract int compareTo(CollationKey value); argument
/libcore/luni/src/main/java/java/sql/
H A DDriverPropertyInfo.java29 * If the value member can be chosen from a set of possible values, they are
45 * {@code true} when the value member must be provided during {@code
51 * The current value associated with this property. It is depending on the
55 public String value; field in class:DriverPropertyInfo
59 * value. Other class members take their default values.
63 * @param value
64 * The property value.
66 public DriverPropertyInfo(String name, String value) { argument
68 this.value = value;
[all...]
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/libcore/net/http/
H A DHttpDate.java68 * Returns the date for {@code value}. Returns null if the value couldn't be
71 public static Date parse(String value) { argument
73 return STANDARD_DATE_FORMAT.get().parse(value);
78 return new SimpleDateFormat(formatString, Locale.US).parse(value);
86 * Returns the string for {@code value}.
88 public static String format(Date value) { argument
89 return STANDARD_DATE_FORMAT.get().format(value);
/libcore/luni/src/main/java/org/w3c/dom/
H A DDOMConfiguration.java35 * value must be supported or not.
106 * processing, this parameter does not apply to attribute value
225 * unless the "schema-type" parameter value is set. It is strongly
233 * URI. If this parameter is not set, a default value may be provided by
235 * schema language used at load time. If no value is provided, this
238 * , applications must use the value
240 * applications must use the value
276 * <li> The value of the
280 * <li> The value of the attribute
361 * Set the value o
376 setParameter(String name, Object value) argument
402 canSetParameter(String name, Object value) argument
[all...]
/libcore/luni/src/main/native/
H A Dandroid_system_OsConstants.cpp57 static void initConstant(JNIEnv* env, jclass c, const char* fieldName, int value) { argument
59 env->SetStaticIntField(c, field, value);

Completed in 401 milliseconds

1234567891011>>