Searched defs:getValue (Results 1 - 25 of 55) sorted by relevance

123

/frameworks/base/core/java/android/animation/
H A DFloatKeyframeSet.java29 * int, exists to speed up the getValue() method when there is no custom
44 public Object getValue(float fraction) { method in class:FloatKeyframeSet
130 return ((Number)mKeyframes.get(mNumKeyframes - 1).getValue()).floatValue();
H A DIntKeyframeSet.java29 * float, exists to speed up the getValue() method when there is no custom
44 public Object getValue(float fraction) { method in class:IntKeyframeSet
129 return ((Number)mKeyframes.get(mNumKeyframes - 1).getValue()).intValue();
H A DKeyframe.java173 public abstract Object getValue(); method in class:Keyframe
253 public Object getValue() { method in class:Keyframe.ObjectKeyframe
296 public Object getValue() { method in class:Keyframe.IntKeyframe
342 public Object getValue() { method in class:Keyframe.FloatKeyframe
H A DKeyframeSet.java176 public Object getValue(float fraction) { method in class:KeyframeSet
183 return mEvaluator.evaluate(fraction, mFirstKeyframe.getValue(),
184 mLastKeyframe.getValue());
195 return mEvaluator.evaluate(intervalFraction, mFirstKeyframe.getValue(),
196 nextKeyframe.getValue());
206 return mEvaluator.evaluate(intervalFraction, prevKeyframe.getValue(),
207 mLastKeyframe.getValue());
220 return mEvaluator.evaluate(intervalFraction, prevKeyframe.getValue(),
221 nextKeyframe.getValue());
226 return mLastKeyframe.getValue();
[all...]
/frameworks/base/core/java/android/text/
H A DAnnotation.java57 public String getValue() { method in class:Annotation
H A DPackedObjectVector.java44 getValue(int row, int column) method in class:PackedObjectVector
H A DPackedIntVector.java66 public int getValue(int row, int column) { method in class:PackedIntVector
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DProgramVariable.java49 public Object getValue() { method in class:ProgramVariable
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameValue.java23 public Object getValue() { method in class:FrameValue
H A DVariableSource.java36 public synchronized Object getValue() { method in class:VariableSource
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFillFragment.h29 int64_t getValue() const { return m_Value; } function in class:mcld::FillFragment
H A DAlignFragment.h29 int64_t getValue() const { return m_Value; } function in class:mcld::AlignFragment
/frameworks/av/drm/common/
H A DDrmConstraints.cpp44 if (NULL != getValue(&key)) {
45 return String8(getValue(&key));
50 const char* DrmConstraints::getValue(const String8* key) const { function in class:DrmConstraints
58 return getValue(key);
H A DDrmMetadata.cpp39 if (NULL != getValue(&key)) {
40 return String8(getValue(&key));
47 const char* DrmMetadata::getValue(const String8* key) const { function in class:DrmMetadata
61 return getValue(key);
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.h53 inline unsigned getValue() const function in class:mcldtest::GCFactoryListTraitsTest::Node
/frameworks/ex/chips/src/com/android/ex/chips/recipientchip/
H A DBaseRecipientChip.java45 CharSequence getValue(); method in interface:BaseRecipientChip
H A DSimpleRecipientChip.java62 public CharSequence getValue() { method in class:SimpleRecipientChip
H A DVisibleRecipientChip.java56 public CharSequence getValue() { method in class:VisibleRecipientChip
57 return mDelegate.getValue();
/frameworks/av/drm/libdrmframework/plugins/common/util/include/
H A DSessionMap.h66 TValue getValue(int key) { function in class:android::SessionMap
/frameworks/base/services/java/com/android/server/
H A DCertBlacklister.java72 public String getValue() { method in class:CertBlacklister.BlacklistObserver
80 String blacklist = getValue();
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DFloat4Param.java81 public Float4 getValue() { method in class:Float4Param
/frameworks/compile/mclinker/include/mcld/Target/
H A DGOT.h51 uint64_t getValue() const function in class:mcld::GOT::Entry
H A DPLT.h42 const unsigned char* getValue() const function in class:mcld::PLTEntryBase
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattDescriptor.java208 public byte[] getValue() { method in class:BluetoothGattDescriptor
/frameworks/base/core/java/android/net/nsd/
H A DDnsSdTxtRecord.java113 byte[] val = this.getValue(key);
218 private byte[] getValue(int index) { method in class:DnsSdTxtRecord
242 byte[] value = this.getValue(index);
246 private byte[] getValue(String forKey) { method in class:DnsSdTxtRecord
252 return this.getValue(i);

Completed in 2255 milliseconds

123