HomeSort by relevance Sort by last modified time
    Searched refs:updateValues (Results 1 - 25 of 31) sorted by null

1 2

  /frameworks/support/dynamic-animation/src/android/support/animation/
SpringAnimation.java 230 MassState massState = mSpring.updateValues(mValue, mVelocity, deltaT / 2);
234 massState = mSpring.updateValues(massState.mValue, massState.mVelocity, deltaT / 2);
239 MassState massState = mSpring.updateValues(mValue, mVelocity, deltaT);
SpringForce.java 271 DynamicAnimation.MassState updateValues(double lastDisplacement, double lastVelocity,
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
RecyclerViewParallax.java 40 updateValues();
48 updateValues();
239 public void updateValues() {
243 super.updateValues();
Parallax.java 67 * Subclass must override {@link #updateValues()} to update property values and perform
68 * {@link ParallaxEffect}s. Subclass may call {@link #updateValues()} automatically e.g.
69 * {@link RecyclerViewParallax} calls {@link #updateValues()} in RecyclerView scrolling. App might
70 * call {@link #updateValues()} manually when Parallax is unaware of the value change. For example,
72 * changes; it's the app's responsibility to call {@link #updateValues()} in every frame of
574 * super.updateValues() after updated properties values.
577 public void updateValues() {
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 324 ContentValues updateValues = new ContentValues();
327 updateValues.put(BluetoothShare.FILENAME_HINT, fileInfo.mFileName);
328 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength);
329 updateValues.put(BluetoothShare.MIMETYPE, fileInfo.mMimetype);
331 mContext1.getContentResolver().update(contentUri, updateValues, null, null);
343 ContentValues updateValues;
388 updateValues = new ContentValues();
389 updateValues.put(BluetoothShare.CURRENT_BYTES, 0);
390 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING);
391 mContext1.getContentResolver().update(contentUri, updateValues, null, null)
    [all...]
BluetoothOppTransfer.java 357 ContentValues updateValues = new ContentValues();
358 updateValues
360 mContext.getContentResolver().update(contentUri, updateValues, null, null);
393 ContentValues updateValues = new ContentValues();
394 updateValues.put(BluetoothShare.STATUS, info.mStatus);
401 updateValues.put(BluetoothShare.FILENAME_HINT, fileInfo.mFileName);
402 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength);
403 updateValues.put(BluetoothShare.MIMETYPE, fileInfo.mMimetype);
410 mContext.getContentResolver().update(contentUri, updateValues, null, null);
783 ContentValues updateValues = new ContentValues()
    [all...]
Constants.java 270 ContentValues updateValues = new ContentValues();
271 updateValues.put(BluetoothShare.STATUS, status);
272 context.getContentResolver().update(contentUri, updateValues, null, null);
BluetoothOppObexServerSession.java 357 ContentValues updateValues = new ContentValues();
359 updateValues.put(BluetoothShare._DATA, mFileInfo.mFileName);
360 updateValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_RUNNING);
361 mContext.getContentResolver().update(contentUri, updateValues, null, null);
439 ContentValues updateValues = new ContentValues();
440 updateValues.put(BluetoothShare._DATA, fileInfo.mFileName);
441 mContext.getContentResolver().update(contentUri, updateValues, null, null);
481 ContentValues updateValues = new ContentValues();
482 updateValues.put(BluetoothShare.CURRENT_BYTES, position);
483 mContext.getContentResolver().update(contentUri, updateValues, null, null)
    [all...]
BluetoothOppReceiveFileInfo.java 204 ContentValues updateValues = new ContentValues();
205 updateValues.put(BluetoothShare.FILENAME_HINT, displayName);
206 context.getContentResolver().update(contentUri, updateValues, null, null);
TestActivity.java 178 * ContentValues updateValues = new ContentValues();
179 * updateValues.put(BluetoothShare.TOTAL_BYTES, 120000);
180 * getContentResolver().update(contentUri1,updateValues,null,null);
193 * updateValues.put(BluetoothShare.CURRENT_BYTES, currentByte);
194 * getContentResolver().update(contentUri1,updateValues,null,null); } }
289 ContentValues updateValues = new ContentValues();
291 // updateValues.put(BluetoothShare.TOTAL_BYTES, "120000");
292 // updateValues.put(BluetoothShare.CURRENT_BYTES, mCurrentByte);
293 // updateValues.put(BluetoothShare.VISIBILITY,
295 updateValues.put(BluetoothShare.USER_CONFIRMATION
    [all...]
BluetoothOppReceiver.java 189 ContentValues updateValues = new ContentValues();
190 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
191 context.getContentResolver().update(BluetoothShare.CONTENT_URI, updateValues,
BluetoothOppUtility.java 265 ContentValues updateValues = new ContentValues();
266 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
267 context.getContentResolver().update(uri, updateValues, null, null);
BluetoothOppService.java 261 ContentValues updateValues = new ContentValues();
263 updateValues.put(Constants.MEDIA_SCANNED, Constants.MEDIA_SCANNED_SCANNED_OK);
264 updateValues.put(BluetoothShare.URI, msg.obj.toString()); // update
265 updateValues.put(BluetoothShare.MIMETYPE, getContentResolver().getType(
267 getContentResolver().update(contentUri, updateValues, null, null);
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/
ParallaxTransition.java 39 * side, calling ParallaxSource.updateValues() on every frame. User should make sure slide
67 source.updateValues();
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
VoicemailContractTest.java 248 ContentValues updateValues = new ContentValues();
249 updateValues.put(Voicemails.DIRTY,0);
250 mVoicemailProvider.update(uri, updateValues, null, null);
270 ContentValues updateValues = new ContentValues();
271 updateValues.put(Voicemails.DIRTY, (Integer) null);
272 mVoicemailProvider.update(uri, updateValues, null, null);
292 ContentValues updateValues = new ContentValues();
293 updateValues.put(Voicemails.DIRTY, 2);
294 mVoicemailProvider.update(uri, updateValues, null, null);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorGrad.java 181 mAdapters[i].updateValues(rep);
199 updateValues(rep);
204 public void updateValues(FilterGradRepresentation rep) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
DetailsBackgroundVideoHelper.java 105 mDetailsParallax.updateValues();
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationCursor.java     [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 714 ContentValues updateValues = new ContentValues();
    [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
ImapService.java     [all...]
  /prebuilts/sdk/current/support/dynamic-animation/
android-support-dynamic-animation.jar 
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SMSDispatcher.java     [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java     [all...]

Completed in 2001 milliseconds

1 2