Searched refs:mValue (Results 76 - 100 of 129) sorted by relevance

123456

/frameworks/support/dynamic-animation/tests/src/android/support/dynamicanimation/tests/
H A DFlingTests.java75 private float mValue = 0f;
79 return mValue;
85 assertTrue(value > mValue);
87 mValue = value;
/frameworks/ml/nn/driver/cache/BlobCache/
H A DBlobCache.cpp461 mValue(value),
467 mValue(ce.mValue),
477 mValue = rhs.mValue;
487 return mValue;
491 mValue = value;
/frameworks/av/include/media/stagefright/foundation/
H A DFlagged.h363 T mValue; ///< wrapped value member in class:android::Flagged
406 : mValue(std::forward<Args>(args)...),
410 inline constexpr const T &get() const { return mValue; }
413 inline T &get() { return mValue; }
444 T mValue;
H A DAData.h143 _type mValue; ///< storage
162 sizeof(_type), reinterpret_cast<T*>(&mValue), std::forward<Args>(args)...);
178 _AUnion_impl::del(reinterpret_cast<T*>(&mValue));
193 return *reinterpret_cast<const T*>(&mValue);
206 return *reinterpret_cast<T*>(&mValue);
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DFlagged.h363 T mValue; ///< wrapped value member in class:android::Flagged
406 : mValue(std::forward<Args>(args)...),
410 inline constexpr const T &get() const { return mValue; }
413 inline T &get() { return mValue; }
444 T mValue;
H A DAData.h143 _type mValue; ///< storage
162 sizeof(_type), reinterpret_cast<T*>(&mValue), std::forward<Args>(args)...);
178 _AUnion_impl::del(reinterpret_cast<T*>(&mValue));
193 return *reinterpret_cast<const T*>(&mValue);
206 return *reinterpret_cast<T*>(&mValue);
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DFlagged.h363 T mValue; ///< wrapped value member in class:android::Flagged
406 : mValue(std::forward<Args>(args)...),
410 inline constexpr const T &get() const { return mValue; }
413 inline T &get() { return mValue; }
444 T mValue;
H A DAData.h143 _type mValue; ///< storage
162 sizeof(_type), reinterpret_cast<T*>(&mValue), std::forward<Args>(args)...);
178 _AUnion_impl::del(reinterpret_cast<T*>(&mValue));
193 return *reinterpret_cast<const T*>(&mValue);
206 return *reinterpret_cast<T*>(&mValue);
/frameworks/av/media/libstagefright/webm/
H A DWebmElement.h82 const uint64_t mValue; member in struct:android::WebmUnsigned
87 const double mValue; member in struct:android::WebmFloat
H A DWebmElement.cpp138 : WebmElement(id, sizeOf(value)), mValue(value) {
142 serializeCodedUnsigned(mValue, buf);
148 : WebmElement(id, sizeof(double)), mValue(value) {
152 : WebmElement(id, sizeof(float)), mValue(value) {
158 float f = mValue;
161 data = *reinterpret_cast<const uint64_t*>(&mValue);
/frameworks/layoutlib/bridge/src/android/content/res/
H A DBridgeTypedArray.java373 if (ResourceHelper.parseFloatAttribute(mNames[index], s, mValue, true)) {
374 return mValue.getDimension(mBridgeResources.getDisplayMetrics());
491 if (ResourceHelper.parseFloatAttribute(mNames[index], s, mValue, true)) {
492 float f = mValue.getDimension(mBridgeResources.getDisplayMetrics());
525 if (ResourceHelper.parseFloatAttribute(mNames[index], value, mValue, false)) {
526 return mValue.getFraction(base, pbase);
902 if (getValue(index, mValue)) {
903 return mValue;
/frameworks/av/include/media/
H A DAudioPolicy.h71 } mValue; member in class:android::AudioMixMatchCriterion
/frameworks/av/media/libaudioclient/include/media/
H A DAudioPolicy.h71 } mValue; member in class:android::AudioMixMatchCriterion
/frameworks/native/opengl/libs/EGL/
H A DBlobCache.h163 // mValue is the cached data associated with the key.
164 std::shared_ptr<Blob> mValue; member in class:android::BlobCache::CacheEntry
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DMOTree.java90 private String mValue; field in class:MOTree.NodeData
101 mValue = value;
113 return mValue;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DPropertyAnimatorTest.java54 public float mValue = 100;
58 mValue = value;
63 return mValue;
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java171 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
172 return mValue[0];
279 private int[] mValue = new int[1]; field in class:GL2JNIView.ConfigChooser
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java171 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
172 return mValue[0];
279 private int[] mValue = new int[1]; field in class:GLPerfView.ConfigChooser
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java174 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
175 return mValue[0];
282 private int[] mValue = new int[1]; field in class:GLDualGL2View.ConfigChooser
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DICalendar.java239 private String mValue; // TODO: make this final? field in class:ICalendar.Property
256 mValue = value;
272 return mValue;
280 mValue = value;
349 sb.append(mValue);
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java284 private int mValue; field in class:NumberPicker
1409 return mValue;
1439 if (mMinValue > mValue) {
1440 mValue = mMinValue;
1476 if (mMaxValue < mValue) {
1477 mValue = mMaxValue;
1650 event.setScrollY((mMinValue + mValue) * mSelectorElementHeight);
1735 if (mValue == current) {
1745 int previous = mValue;
1746 mValue
[all...]
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DArrayMapTests.java86 final int mValue; field in class:ArrayMapTests.ControlledHash
89 mValue = value;
97 return mValue == ((ControlledHash)o).mValue;
102 return mValue/100;
107 return Integer.toString(mValue);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsService.java114 String mValue = null; field in class:SettingsService.MyShellCommand
216 } else if (mValue == null) {
217 mValue = arg;
285 putForUser(iprovider, mUser, mTable, mKey, mValue, mTag, mMakeDefault);
/frameworks/base/rs/java/android/renderscript/
H A DScriptGroup.java339 Object mValue; field in class:ScriptGroup.Future
344 mValue = value;
349 Object getValue() { return mValue; }
367 Object mValue; field in class:ScriptGroup.Input
383 mValue = value;
396 Object get() { return mValue; }
861 private final Object mValue; field in class:ScriptGroup.Binding
872 mValue = value;
885 Object getValue() { return mValue; }
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptGroup.java334 Object mValue; field in class:ScriptGroup.Future
339 mValue = value;
344 Object getValue() { return mValue; }
362 Object mValue; field in class:ScriptGroup.Input
378 mValue = value;
391 Object get() { return mValue; }
978 private final Object mValue; field in class:ScriptGroup.Binding
989 mValue = value;
1002 public Object getValue() { return mValue; }

Completed in 712 milliseconds

123456