Searched defs:value (Results 1 - 25 of 448) sorted by relevance

1234567891011>>

/libcore/dalvik/src/main/java/dalvik/annotation/
H A DKnownFailure.java38 String value(); method in interface:KnownFailure
H A DTestTargetClass.java40 Class<?> value(); method in interface:TestTargetClass
/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
/libcore/ojluni/src/main/java/java/lang/
H A DSuppressWarnings.java71 String[] value(); method in interface:SuppressWarnings
/libcore/ojluni/src/main/java/java/lang/annotation/
H A DRepeatable.java31 * (meta-)annotates is <em>repeatable</em>. The value of
48 Class<? extends Annotation> value(); method in interface:Repeatable
H A DRetention.java51 RetentionPolicy value(); method in interface:Retention
H A DTarget.java86 ElementType[] value(); method in interface:Target
/libcore/ojluni/src/main/java/java/nio/file/attribute/
H A DFileAttribute.java29 * An object that encapsulates the value of a file attribute that can be set
34 * @param <T> The type of the file attribute value
49 * Returns the attribute value.
51 * @return The attribute value
53 T value(); method in interface:FileAttribute
/libcore/ojluni/src/main/java/java/text/
H A DAnnotation.java29 * An Annotation object is used as a wrapper for a text attribute value if
35 * the same value for this attribute, the attribute still cannot be applied to
36 * the combined range as a whole with this value.
37 * <li>The attribute or its value usually do no longer apply if the underlying text is
48 * Wrapping the attribute value into an Annotation object guarantees that
60 * Constructs an annotation record with the given value, which
63 * @param value the value of the attribute
65 public Annotation(Object value) { argument
66 this.value
87 private Object value; field in class:Annotation
[all...]
H A DEntryPair.java43 * is the contracting character name and value is its collation
49 public int value; field in class:EntryPair
52 public EntryPair(String name, int value) { argument
53 this(name, value, true);
55 public EntryPair(String name, int value, boolean fwd) { argument
57 this.value = value;
/libcore/ojluni/src/main/java/java/util/function/
H A DDoubleFunction.java46 * @param value the function argument
49 R apply(double value); argument
H A DDoubleToIntFunction.java44 * @param value the function argument
47 int applyAsInt(double value); argument
H A DDoubleToLongFunction.java44 * @param value the function argument
47 long applyAsLong(double value); argument
H A DIntFunction.java46 * @param value the function argument
49 R apply(int value); argument
H A DIntToDoubleFunction.java44 * @param value the function argument
47 double applyAsDouble(int value); argument
H A DIntToLongFunction.java44 * @param value the function argument
47 long applyAsLong(int value); argument
H A DLongFunction.java46 * @param value the function argument
49 R apply(long value); argument

Completed in 262 milliseconds

1234567891011>>