HomeSort by relevance Sort by last modified time
    Searched defs:getValue (Results 51 - 75 of 4901) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mockito/src/main/java/org/mockito/
ArgumentCaptor.java 24 * assertEquals("John", argument.getValue().getName());
96 public T getValue() {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
AspectRatio.java 47 public int getValue() {
  /external/parameter-framework/upstream/parameter/
MappingData.cpp 74 bool CMappingData::getValue(const std::string &strkey, const std::string *&pStrValue) const
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
ParameterDescriptor.java 34 public String getValue() {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedAnnotationElement.java 52 @Nonnull @Override public EncodedValue getValue() { return value; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
DexBackedEnumEncodedValue.java 51 @Nonnull @Override public FieldReference getValue() {
DexBackedFieldEncodedValue.java 51 @Nonnull @Override public FieldReference getValue() {
DexBackedMethodEncodedValue.java 51 @Nonnull @Override public MethodReference getValue() {
DexBackedStringEncodedValue.java 49 @Nonnull @Override public String getValue() {
DexBackedTypeEncodedValue.java 49 @Nonnull @Override public String getValue() {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
AnnotationElement.java 55 @Nonnull EncodedValue getValue();
65 * hashCode = hashCode*31 + getValue().hashCode();
76 * the return values of getName() and getValue() are both equal.
86 * The comparison is based on the value of getName() and getValue(), in that order.
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/value/
ArrayEncodedValue.java 47 @Nonnull List<? extends EncodedValue> getValue();
56 * int hashCode = getValue().hashCode();
66 * This ArrayEncodedValue is equal to another ArrayEncodedValue if the values returned by getValue() are equal.
77 * ArrayEncodedValue, the lists returned by getValue() are compared, based on the semantics of
BooleanEncodedValue.java 46 boolean getValue();
55 * int hashCode = getValue()?1:0;
65 * This BooleanEncodedValue is equal to another BooleanEncodedValue if the values returned by getValue() are equal.
76 * BooleanEncodedValue, the return values of getValue() are compared, based on the semantics of
ByteEncodedValue.java 46 byte getValue();
55 * int hashCode = getValue();
65 * This ByteEncodedValue is equal to another ByteEncodedValue if the values returned by getValue() are equal.
76 * ByteEncodedValue, the return values of getValue() are compared.
CharEncodedValue.java 46 char getValue();
55 * int hashCode = getValue();
65 * This CharEncodedValue is equal to another CharEncodedValue if the values returned by getValue() are equal.
76 * CharEncodedValue, the return values of getValue() are compared.
DoubleEncodedValue.java 46 double getValue();
55 * long v = Double.doubleToRawLongBits(getValue());
70 * getValue().doubleToRawLongBits() are equal.
72 * Note: this isn't quite the same as getValue() == getValue(), due to various NaN issues and signed zero issues.
83 * DoubleEncodedValue, the return values of getValue() are compared, using the semantics of Double.compare()
EnumEncodedValue.java 50 @Nonnull FieldReference getValue();
59 * int hashCode = getValue.hashCode();
69 * This EnumEncodedValue is equal to another EnumEncodedValue if the values returned by getValue() are equal.
80 * EnumEncodedValue, the return values of getValue() are compared.
FieldEncodedValue.java 48 @Nonnull FieldReference getValue();
57 * int hashCode = getValue.hashCode();
67 * This FieldEncodedValue is equal to another FieldEncodedValue if the values returned by getValue() are equal.
78 * FieldEncodedValue, the return values of getValue() are compared.
FloatEncodedValue.java 46 float getValue();
55 * int hashCode = Float.floatToRawIntBits(getValue());
69 * getValue().floatToRawIntBits() are equal.
71 * Note: this isn't quite the same as getValue() == getValue(), due to various NaN issues and signed zero issues.
82 * FloatEncodedValue, the return values of getValue() are compared, using the semantics of Float.compare()
IntEncodedValue.java 46 int getValue();
55 * int hashCode = getValue();
65 * This IntEncodedValue is equal to another IntEncodedValue if the values returned by getValue() are equal.
76 * IntEncodedValue, the return values of getValue() are compared.
LongEncodedValue.java 46 long getValue();
55 * long v = getValue();
66 * This LongEncodedValue is equal to another LongEncodedValue if the values returned by getValue() are equal.
77 * LongEncodedValue, the return values of getValue() are compared.
MethodEncodedValue.java 48 MethodReference getValue();
57 * int hashCode = getValue.hashCode();
67 * This MethodEncodedValue is equal to another MethodEncodedValue if the values returned by getValue() are equal.
78 * MethodEncodedValue, the return values of getValue() are compared.
ShortEncodedValue.java 46 short getValue();
55 * int hashCode = getValue();
65 * This ShortEncodedValue is equal to another ShortEncodedValue if the values returned by getValue() are equal.
76 * ShortEncodedValue, the return values of getValue() are compared.
StringEncodedValue.java 46 @Nonnull String getValue();
55 * int hashCode = getValue().hashCode();
65 * This StringEncodedValue is equal to another StringEncodedValue if the values returned by getValue() are equal.
76 * StringEncodedValue, the return values of getValue() are compared.
TypeEncodedValue.java 46 @Nonnull String getValue();
55 * int hashCode = getValue().hashCode();
65 * This TypeEncodedValue is equal to another TypeEncodedValue if the values returned by getValue() are equal.
76 * TypeEncodedValue, the return values of getValue() are compared.

Completed in 105 milliseconds

1 23 4 5 6 7 8 91011>>