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

1 23 4 5 6 7 8 91011>>

  /frameworks/av/media/libmedia/include/media/
Modulo.h 86 T mValue;
93 Modulo(const T &value) { mValue = value; }
94 const T & value() const { return mValue; } // not assignable
95 signedT signedValue() const { return mValue; }
96 unsignedT unsignedValue() const { return mValue; }
97 void getValue(T *value) const { *value = mValue; } // more type safe than value()
104 mValue += other.unsignedValue();
112 mValue -= other.unsignedValue();
122 return Modulo<T>(mValue + other.unsignedValue());
129 return Modulo<T>(mValue - other.unsignedValue())
    [all...]
SingleStateQueue.h 52 T mValue;
72 shared->mValue = value;
133 T temp = shared->mValue;
  /frameworks/av/media/libstagefright/webm/
WebmElement.h 82 const uint64_t mValue;
87 const double mValue;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Duration.java 37 private int mValue;
40 mValue = value;
44 return mValue;
TextColor.java 43 private int mValue;
46 mValue = value;
57 if (e.mValue == value) {
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
FunnyNamedEntity.java 35 private String mValue;
39 mValue = value;
51 return mValue;
55 mValue = value;
66 return mValue != null ? mValue.equals(entity.mValue) : entity.mValue == null;
72 result = 31 * result + (mValue != null ? mValue.hashCode() : 0)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/util/
MultiValueAlpha.java 32 return alphaProperty.mValue;
66 private float mValue = 1;
75 if (mValue == value) {
84 mOthers *= prop.mValue;
92 mValue = value;
94 mView.setAlpha(mOthers * mValue);
98 return mValue;
  /system/chre/util/tests/
optional_test.cc 86 MovableButNonCopyable(int value) : mValue(value) {}
88 mValue = other.mValue;
89 other.mValue = kInvalidValue;
94 mValue = other.mValue;
95 other.mValue = kInvalidValue;
101 mValue = kUninitializedMagic;
105 return mValue;
113 int mValue = kInvalidValue
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
TimeVal.java 39 private Long mValue = null;
45 mValue = value;
54 mValue = fromString(value);
61 return mValue;
133 return mValue.doubleValue();
141 return mValue.floatValue();
149 return mValue.intValue();
157 return mValue.longValue();
165 return mValue.compareTo(other);
  /tools/tradefederation/core/src/com/android/tradefed/util/net/
XmlRpcHelper.java 163 private StringBuilder mValue = new StringBuilder();
200 mResponses.add(mValue.toString());
204 mValue.delete(0, mValue.length());
215 mValue.append(ch, start, length);
  /cts/suite/audio_quality/lib/include/task/
TaskCase.h 75 mValue[0] = val;
80 //LOGD("Value get %f 0x%x", mValue[0], this);
81 return mValue[0];
84 int64_t* data = reinterpret_cast<int64_t*>(mValue);
90 int64_t* data = reinterpret_cast<int64_t*>(mValue);
95 return mValue;
98 return ((mValue[0] == b.mValue[0]) && (mType == b.mType));
102 double mValue[1];
TaskProcess.h 83 TaskCase::Value mValue;
  /cts/tests/autofillservice/src/android/autofillservice/cts/
DatasetTest.java 41 private final AutofillValue mValue = AutofillValue.forText("ValuableLikeGold");
54 assertThrows(NullPointerException.class, () -> builder.setValue(null, mValue));
60 assertThat(new Dataset.Builder().setValue(mId, mValue).build()).isNotNull();
66 assertThrows(NullPointerException.class, () -> builder.setValue(mId, mValue,
72 assertThat(new Dataset.Builder(mPresentation).setValue(mId, mValue, (Pattern) null).build())
78 assertThat(new Dataset.Builder().setValue(mId, mValue, null, mPresentation).build())
85 assertThrows(NullPointerException.class, () -> builder.setValue(mId, mValue, mFilter,
92 assertThrows(IllegalStateException.class, () -> builder.setValue(mId, mValue, mFilter));
104 builder.setValue(mId, mValue, mPresentation);
107 assertThrows(IllegalStateException.class, () -> builder.setValue(mId, mValue));
    [all...]
  /cts/tests/tests/slice/src/android/slice/cts/
SliceProvider.java 122 private final int mValue;
125 mValue = 42;
129 mValue = in.readInt();
134 dest.writeInt(mValue);
146 return p.mValue == mValue;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
MessengerService.java 58 int mValue = 0;
95 mValue = msg.arg1;
99 MSG_SET_VALUE, mValue, 0));
  /external/replicaisland/src/com/replica/replicaisland/
SliderPreference.java 32 private int mValue = INITIAL_VALUE;
78 bar.setProgress(mValue);
84 mValue = progress;
85 persistInt(mValue);
106 mValue = defaultValue != null ? (Integer)defaultValue : INITIAL_VALUE;
109 persistInt(mValue);
111 mValue = getPersistedInt(mValue);
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
Flagged.h 363 T mValue; ///< wrapped value
406 : mValue(std::forward<Args>(args)...),
410 inline constexpr const T &get() const { return mValue; }
413 inline T &get() { return mValue; }
444 T mValue;
  /frameworks/av/media/ndk/include/media/
NdkMediaDrm.h 150 const char *mValue;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FieldPort.java 30 protected Object mValue;
65 mField.set(mFilter, mValue);
103 if ((value == null && mValue != null) || !value.equals(mValue)) {
104 mValue = value;
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
MultiArgTestAdapter.java 92 String mValue;
98 return mValue;
102 mValue = value;
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/debug/
Log.java 42 final String mValue;
49 mValue = CAMERA_LOGTAG_PREFIX + (lenDiff > 0 ? tag.substring(0, MAX_TAG_LEN) : tag);
54 return mValue;
  /frameworks/native/opengl/libs/EGL/
BlobCache.h 171 // mValue is the cached data associated with the key.
172 std::shared_ptr<Blob> mValue;
  /frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
SimpleRecipientChip.java 26 private final CharSequence mValue;
44 mValue = entry.getDestination().trim();
69 return mValue;
113 return mDisplay + " <" + mValue + ">";
  /frameworks/support/emoji/core/src/androidTest/java/androidx/emoji/util/
TestString.java 31 private final String mValue;
42 mValue = null;
51 mValue = string;
94 if (mValue != null) {
95 builder.append(mValue);
  /frameworks/support/samples/ViewPager2Demos/src/main/java/com/example/androidx/viewpager2/cards/
Card.java 41 private final char mValue;
45 this.mValue = checkValidValue(value, VALUES);
53 return mValue + "\n" + mSuit;
59 args.putCharArray(ARGS_BUNDLE, new char[]{mSuit, mValue});

Completed in 1285 milliseconds

1 23 4 5 6 7 8 91011>>