Searched refs:getValue (Results 1 - 25 of 201) sorted by path

123456789

/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/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp406 ConvertSession *convSession = convertSessionMap.getValue(convertId);
443 ConvertSession *convSession = convertSessionMap.getValue(convertId);
560 DecodeSession* session = decodeSessionMap.getValue(decryptHandle->decryptId);
626 DecodeSession* session = decodeSessionMap.getValue(decryptHandle->decryptId);
651 DecodeSession* session = decodeSessionMap.getValue(decryptHandle->decryptId);
679 (NULL != (decoderSession = decodeSessionMap.getValue(decryptHandle->decryptId))) &&
/frameworks/av/include/drm/
H A DDrmConstraints.h174 const char* getValue(const String8* key) const;
H A DDrmMetadata.h101 const char* getValue(const String8* key) const;
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java1921 postToHandler(entry.getValue(), entry.getKey(), accounts);
H A DAccountManagerService.java367 final ArrayList<String> accountNames = cur.getValue();
H A DChooseAccountTypeActivity.java79 final AuthInfo info = entry.getValue();
/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...]
H A DLayoutTransition.java893 !keyframeSet.mFirstKeyframe.getValue().equals(
894 keyframeSet.mLastKeyframe.getValue())) {
H A DObjectAnimator.java366 pvh.getPropertyName() + ", " + keyframes.get(0).getValue() + ", " +
367 keyframes.get(pvh.mKeyframeSet.mNumKeyframes - 1).getValue());
H A DPropertyValuesHolder.java660 mAnimatedValue = mKeyframeSet.getValue(fraction);
/frameworks/base/core/java/android/app/
H A DActivityThread.java3859 Resources r = entry.getValue().get();
H A DSharedPreferencesImpl.java423 Object v = e.getValue();
/frameworks/base/core/java/android/app/backup/
H A DBackupHelperDispatcher.java75 BackupHelper helper = entry.getValue();
/frameworks/base/core/java/android/content/
H A DContentProviderOperation.java128 dest.writeInt(entry.getValue());
331 final int backRefIndex = selectionArgBackRef.getValue();
H A DDefaultDataHandler.java100 String uriStr = atts.getValue(URI_STR);
107 atts.getValue(URI_STR) + " parsing failure");
112 String postfix = atts.getValue(POSTFIX);
165 String key = atts.getValue(0);
166 String value = atts.getValue(1);
176 Uri u = Uri.parse(atts.getValue(URI_STR));
179 atts.getValue(URI_STR) + " parsing failure");
185 selectionArgs[i] = atts.getValue(i+2);
187 mContentResolver.delete(u, atts.getValue(1), selectionArgs);
189 mContentResolver.delete(u, atts.getValue(
[all...]
H A DSyncQueue.java184 SyncOperation syncOperation = entry.getValue();
/frameworks/base/core/java/android/content/pm/
H A DManifestDigest.java60 final String value = attributes.getValue(DIGEST_TYPES[i]);
H A DRegisteredServicesCache.java530 out.attribute(null, "uid", Integer.toString(service.getValue()));
/frameworks/base/core/java/android/content/res/
H A DResources.java522 getValue(id, value, true);
554 getValue(id, value, true);
588 getValue(id, value, true);
619 getValue(id, value, true);
659 getValue(id, value, true);
744 getValue(id, value, true);
775 getValue(id, value, true);
796 getValue(id, value, true);
821 getValue(id, value, true);
939 getValue(i
1008 public void getValue(int id, TypedValue outValue, boolean resolveRefs) method in class:Resources
1060 public void getValue(String name, TypedValue outValue, boolean resolveRefs) method in class:Resources
[all...]

Completed in 344 milliseconds

123456789