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

12

/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.java163 public Object getValue(float fraction) { method in class:KeyframeSet
170 return mEvaluator.evaluate(fraction, mFirstKeyframe.getValue(),
171 mLastKeyframe.getValue());
182 return mEvaluator.evaluate(intervalFraction, mFirstKeyframe.getValue(),
183 nextKeyframe.getValue());
193 return mEvaluator.evaluate(intervalFraction, prevKeyframe.getValue(),
194 mLastKeyframe.getValue());
207 return mEvaluator.evaluate(intervalFraction, prevKeyframe.getValue(),
208 nextKeyframe.getValue());
213 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/compile/mclinker/include/mcld/LD/
H A DFillFragment.h30 int64_t getValue() const { return m_Value; } function in class:mcld::FillFragment
H A DAlignFragment.h30 int64_t getValue() const { return m_Value; } function in class:mcld::AlignFragment
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DProgramVariable.java49 public Object getValue() { method in class:ProgramVariable
/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.h52 inline unsigned getValue() const function in class:mcldtest::GCFactoryListTraitsTest::Node
/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/ex/chips/src/com/android/ex/chips/
H A DRecipientChip.java77 public CharSequence getValue() { method in class:RecipientChip
/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);
/frameworks/base/core/java/com/android/internal/preference/
H A DYesNoPreference.java75 public boolean getValue() { method in class:YesNoPreference
104 myState.wasPositiveResult = getValue();
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DPlaybackGraphs.java50 public double getValue(TileData[] frame); method in interface:PlaybackGraphs.MetricGen
61 public double getValue(TileData[] frame) {
78 public double getValue(TileData[] frame) {
105 public double getValue(double sortedValues[]); method in interface:PlaybackGraphs.StatGen
152 public double getValue(double[] sortedValues) {
162 public double getValue(double[] sortedValues) {
172 public double getValue(double[] sortedValues) {
182 public double getValue(double[] sortedValues) {
192 public double getValue(double[] sortedValues) {
221 double absoluteValue = s.getValue(fram
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DResourceHelper.java115 String value = resValue.getValue();
168 String stringValue = value.getValue();
342 public static TypedValue getValue(String attribute, String value, boolean requireUnit) { method in class:ResourceHelper
/frameworks/compile/linkloader/include/
H A DELFSymbol.h106 addr_t getValue() const { function in class:ELFSymbol_CRTP
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java68 * {@link #getValue} and related APIs.
642 public boolean getValue(int index, TypedValue outValue) { method in class:TypedArray
/frameworks/base/core/java/android/preference/
H A DListPreference.java192 public String getValue() { method in class:ListPreference
290 myState.value = getValue();
H A DMultiCheckPreference.java146 public boolean getValue(int index) { method in class:MultiCheckPreference

Completed in 1642 milliseconds

12