Searched defs:getValue (Results 1 - 25 of 71) sorted by path

123

/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/av/drm/libdrmframework/plugins/common/util/include/
H A DSessionMap.h66 TValue getValue(int key) { function in class:android::SessionMap
/frameworks/base/core/java/android/animation/
H A DFloatKeyframeSet.java30 * int, exists to speed up the getValue() method when there is no custom
45 public Object getValue(float fraction) { method in class:FloatKeyframeSet
137 return ((Number)mKeyframes.get(mNumKeyframes - 1).getValue()).floatValue();
H A DIntKeyframeSet.java30 * float, exists to speed up the getValue() method when there is no custom
45 public Object getValue(float fraction) { method in class:IntKeyframeSet
136 return ((Number)mKeyframes.get(mNumKeyframes - 1).getValue()).intValue();
H A DKeyframe.java196 public abstract Object getValue(); method in class:Keyframe
276 public Object getValue() { method in class:Keyframe.ObjectKeyframe
320 public Object getValue() { method in class:Keyframe.IntKeyframe
367 public Object getValue() { method in class:Keyframe.FloatKeyframe
H A DKeyframeSet.java204 public Object getValue(float fraction) { method in class:KeyframeSet
211 return mEvaluator.evaluate(fraction, mFirstKeyframe.getValue(),
212 mLastKeyframe.getValue());
223 return mEvaluator.evaluate(intervalFraction, mFirstKeyframe.getValue(),
224 nextKeyframe.getValue());
234 return mEvaluator.evaluate(intervalFraction, prevKeyframe.getValue(),
235 mLastKeyframe.getValue());
248 return mEvaluator.evaluate(intervalFraction, prevKeyframe.getValue(),
249 nextKeyframe.getValue());
254 return mLastKeyframe.getValue();
[all...]
H A DKeyframes.java54 Object getValue(float fraction); method in interface:Keyframes
76 * Works like {@link #getValue(float)}, but returning a primitive.
89 * Works like {@link #getValue(float)}, but returning a primitive.
H A DPathKeyframes.java65 public Object getValue(float fraction) { method in class:PathKeyframes
162 PointF pointF = (PointF) PathKeyframes.this.getValue(fraction);
176 PointF pointF = (PointF) PathKeyframes.this.getValue(fraction);
190 PointF pointF = (PointF) PathKeyframes.this.getValue(fraction);
204 PointF pointF = (PointF) PathKeyframes.this.getValue(fraction);
241 public Object getValue(float fraction) { method in class:PathKeyframes.IntKeyframesBase
254 public Object getValue(float fraction) { method in class:PathKeyframes.FloatKeyframesBase
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java425 public byte[] getValue() { method in class:BluetoothGattCharacteristic
474 * <p>See {@link #getValue} for details.
499 * <p>See {@link #getValue} for details.
H A DBluetoothGattDescriptor.java208 public byte[] getValue() { method in class:BluetoothGattDescriptor
/frameworks/base/core/java/android/content/res/
H A DResources.java601 getValue(id, value, true);
636 getValue(id, value, true);
673 getValue(id, value, true);
707 getValue(id, value, true);
785 getValue(id, value, true);
920 getValue(id, value, true);
964 getValue(id, value, true);
994 getValue(id, value, true);
1022 getValue(id, value, true);
1052 getValue(i
1260 public void getValue(int id, TypedValue outValue, boolean resolveRefs) method in class:Resources
1312 public void getValue(String name, TypedValue outValue, boolean resolveRefs) method in class:Resources
[all...]
H A DTypedArray.java104 * {@link #getValue} and related APIs.
785 public boolean getValue(int index, TypedValue outValue) { method in class:TypedArray
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DGetCommand.java32 public <T> T getValue(CameraMetadataNative metadata, CameraMetadataNative.Key<T> key); method in interface:GetCommand
/frameworks/base/core/java/android/net/
H A DUrlQuerySanitizer.java33 * String name = sanitizer.getValue("name"));
43 * String name = sanitizer.getValue("name"));
575 * String name = sanitizer.getValue("name");
673 public String getValue(String parameter) { method in class:UrlQuerySanitizer
/frameworks/base/core/java/android/net/http/
H A DDelegatingSSLSession.java130 public Object getValue(String name) { method in class:DelegatingSSLSession
/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/android/preference/
H A DListPreference.java208 public String getValue() { method in class:ListPreference
306 myState.value = getValue();
H A DMultiCheckPreference.java155 public boolean getValue(int index) { method in class:MultiCheckPreference
/frameworks/base/core/java/android/text/
H A DAnnotation.java57 public String getValue() { method in class:Annotation
H A DPackedIntVector.java67 public int getValue(int row, int column) { method in class:PackedIntVector
H A DPackedObjectVector.java46 getValue(int row, int column) method in class:PackedObjectVector
/frameworks/base/core/java/android/util/
H A DMapCollections.java116 public V getValue() { method in class:MapCollections.MapIterator
144 && Objects.equal(e.getValue(), colGetEntry(mIndex, 1));
161 return getKey() + "=" + getValue();
175 colPut(entry.getKey(), entry.getValue());
195 return Objects.equal(foundVal, e.getValue());
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java921 float fromValue = getValue(constantName);
935 float fromValue = getValue(constantName);
1035 private float getValue(int propertyConstant) { method in class:ViewPropertyAnimator
/frameworks/base/core/java/android/webkit/
H A DWebSettings.java109 public int getValue() { method in class:WebSettings.ZoomDensity

Completed in 241 milliseconds

123