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

123456

/frameworks/base/cmds/keystore/
H A Dkeystore.cpp186 uint8_t* getValue() { function in class:Blob
366 memcpy(mMasterKey, masterKeyBlob.getValue(), MASTER_KEY_SIZE_BYTES);
577 send_message(sock, keyBlob.getValue(), keyBlob.getLength());
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java1850 postToHandler(entry.getValue(), entry.getKey(), accounts);
H A DAccountManagerService.java281 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
340 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.java720 !keyframeSet.mFirstKeyframe.getValue().equals(
721 keyframeSet.mLastKeyframe.getValue())) {
H A DObjectAnimator.java359 pvh.getPropertyName() + ", " + keyframes.get(0).getValue() + ", " +
360 keyframes.get(pvh.mKeyframeSet.mNumKeyframes - 1).getValue());
H A DPropertyValuesHolder.java650 mAnimatedValue = mKeyframeSet.getValue(fraction);
/frameworks/base/core/java/android/app/
H A DSharedPreferencesImpl.java403 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.java160 SyncOperation syncOperation = entry.getValue();
/frameworks/base/core/java/android/content/pm/
H A DManifestDigest.java44 final String value = attributes.getValue(DIGEST_TYPES[i]);
H A DRegisteredServicesCache.java479 out.attribute(null, "uid", Integer.toString(service.getValue()));
/frameworks/base/core/java/android/content/res/
H A DResources.java539 getValue(id, value, true);
571 getValue(id, value, true);
605 getValue(id, value, true);
636 getValue(id, value, true);
663 getValue(id, value, true);
749 getValue(id, value, true);
780 getValue(id, value, true);
801 getValue(id, value, true);
826 getValue(id, value, true);
944 getValue(i
1013 public void getValue(int id, TypedValue outValue, boolean resolveRefs) method in class:Resources
1066 public void getValue(String name, TypedValue outValue, boolean resolveRefs) method in class:Resources
[all...]
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/database/
H A DDatabaseUtils.java1054 DatabaseUtils.bindObjectToProgram(stmt, i, e.getValue());
1056 Log.v(TAG, "binding " + e.getValue() + " to column " +
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java2189 mCompiledQueries.put(entry.getKey(), entry.getValue());
H A DSQLiteQueryBuilder.java609 projection[i++] = entry.getValue();
/frameworks/base/core/java/android/gesture/
H A DGestureStore.java245 final ArrayList<Gesture> examples = entry.getValue();
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java353 a.getValue(com.android.internal.R.styleable.Keyboard_Key_codes,

Completed in 2444 milliseconds

123456