HomeSort by relevance Sort by last modified time
    Searched defs:update (Results 476 - 500 of 1828) sorted by null

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MarqueeGesture.java 67 public void update(ControlPoint pos) { method in class:MarqueeGesture
  /cts/tests/tests/content/src/android/content/cts/
ContentQueryMapTest.java 150 // update NAME0 and VALUE0
154 mResolver.update(DummyProvider.CONTENT_URI, values,
184 // update NAME0 and VALUE0
188 mResolver.update(DummyProvider.CONTENT_URI, values,
199 // have to update manually
256 // update NAME3 and VALUE3
260 mResolver.update(DummyProvider.CONTENT_URI, values,
286 // update NAME0 and VALUE0
290 mResolver.update(DummyProvider.CONTENT_URI, values,
301 // have to update manuall
361 public synchronized void update(Observable observable, Object data) { method in class:ContentQueryMapTest.MockObserver
    [all...]
DummyProvider.java 158 * @see android.content.ContentProvider#update(android.net.Uri,
162 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:DummyProvider
168 int count = db.update(tbName, values, selection, selectionArgs);
  /cts/tests/tests/provider/src/android/provider/cts/
SettingsTest.java 75 // Test: update
80 provider.update(Settings.System.CONTENT_URI, value,
153 cr.update(uri, cv, NAME_EQ_PLACEHOLDER, new String[]{name});
154 fail("SettingsProvider didn't throw SecurityException for update name "
VoicemailContractTest.java 117 // Test: update
124 mVoicemailProvider.update(uri, value, null, null);
160 // Test: update
166 mVoicemailProvider.update(uri, value, null, null);
261 // Test: update
269 mStatusProvider.update(uri, value, null, null);
  /frameworks/base/core/java/android/util/jar/
StrictJarVerifier.java 118 digest.update((byte) value);
126 digest.update(buf, off, nbytes);
488 md.update(data, start, end - 1 - start);
490 md.update(data, start, end - start);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentsProvider.java 226 // Ensure that row exists, then update with changed values
228 db.update(TABLE_STATE, values, StateColumns.AUTHORITY + "=? AND "
239 // Ensure that row exists, then update with changed values
241 db.update(TABLE_RESUME, values, ResumeColumns.PACKAGE_NAME + "=?",
250 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:RecentsProvider
DocumentsActivity.java 190 mDrawer.update();
191 mNavigator.update();
476 // Update the restored stack to ensure we have freshest data
  /frameworks/base/services/core/java/com/android/server/
GraphicsStatsService.java 123 data.update(buffer.mPackageName, buffer.mUid, buffer.mProcessBuffer);
236 void update(String packageName, int uid, MemoryFile file) { method in class:GraphicsStatsService.HistoricalData
  /packages/apps/Messaging/src/com/android/messaging/sms/
MmsConfig.java 306 public void update(final String type, final String key, final String value) { method in class:MmsConfig
307 BugleCarrierConfigValuesLoader.update(mValues, type, key, value);
  /libcore/ojluni/src/main/java/java/util/jar/
JarVerifier.java 185 * update a single byte.
188 public void update(int b, ManifestEntryVerifier mev) method in class:JarVerifier
195 mev.update((byte)b);
203 * update an array of bytes.
206 public void update(int n, byte[] b, int off, int len, method in class:JarVerifier
214 mev.update(b, off, n);
451 this.jv.update(-1, this.mev);
463 jv.update(b, mev);
466 jv.update(-1, mev);
485 jv.update(n, b, off, len, mev)
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupIncomingFragment.java 504 * Note, we update account here (as well as the account.mHostAuthRecv) because we edit
510 account.update(context, account.toContentValues());
514 cred.update(context, cred.toContentValues());
520 account.mHostAuthRecv.update(context, account.mHostAuthRecv.toContentValues());
521 // Update the backup (side copy) of the accounts
  /cts/tests/tests/keystore/src/android/keystore/cts/
SignatureTest.java 464 signature.update(message);
496 signature.update(message);
    [all...]
MacTest.java 507 m.update(message[i]);
530 m.update(message, messageOffset, actualChunkSizeBytes);
  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 108 * target and we can use the sleep() function to cause an update/invalidate to occur at a later
118 SnakeView.this.update();
269 update(); method
278 update(); method
336 update(); method
407 * Handles the basic update loop, checking to see if we are in the running state, determining if
410 public void update() { method in class:SnakeView
  /frameworks/base/packages/SystemUI/src/com/android/systemui/power/
PowerUI.java 174 mWarnings.update(mBatteryLevel, bucket, mScreenOffTime);
242 void update(int batteryLevel, int bucket, long screenOffTime); method in interface:PowerUI.WarningsUI
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AutoclickController.java 150 mClickScheduler.update(event, policyFlags);
311 public void update(MotionEvent event, int policyFlags) { method in class:AutoclickController.ClickScheduler
354 // If there already is a scheduled click at time before the updated time, just update
  /frameworks/base/services/usage/java/com/android/server/usage/
UserUsageStatsService.java 77 * Callback that a system update was detected
133 stat.update(pkgStats.mPackageName, stat.lastTimeSaved,
187 stats.update(event.mPackage, event.mTimeStamp, event.mEventType);
378 stat.update(pkgStats.mPackageName, mDailyExpiryDate.getTimeInMillis() - 1,
396 stat.update(name, beginTime, UsageEvents.Event.CONTINUE_PREVIOUS_DAY);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureTest.java 335 * Class under test for void update(byte)
340 s.update((byte)1);
346 s.update((byte) 1);
348 s.update((byte) 1);
351 assertTrue("update() failed", s.runEngineUpdate1);
355 sig.update((byte) 42);
363 * Class under test for void update(byte[])
369 s.update(b);
375 s.update(b);
377 s.update(b)
    [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
Pop3Service.java 218 mResolver.update(mAttachmentUri, mContentValues, null, null);
297 // Finally, delete the update
406 resolver.update(ContentUris.withAppendedId(Attachment.CONTENT_URI, att.mId),
423 resolver.update(attUri, values, null, null);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandler.java 37 * Handles inserts and update for a specific Data type.
154 * @return true if update changed something
156 public boolean update(SQLiteDatabase db, TransactionContext txContext, method in class:DataRowHandler
168 db.update(Tables.DATA, values, Data._ID + " =?", mSelectionArgs1);
391 ContentValues update) {
402 if (!changing && update.containsKey(key)) {
403 Object newValue = update.get(key);
417 values.putAll(update);
  /art/runtime/base/
bit_vector.cc 148 // Update src_size to how many cells we actually care about: where the bit is + 1.
163 uint32_t update = existing | src->GetRawStorageWord(idx); local
164 if (existing != update) {
166 storage_[idx] = update;
182 // Update union_with_size to how many cells we actually care about: where the bit is + 1.
198 uint32_t update = existing | local
200 if (existing != update) {
202 storage_[idx] = update;
208 uint32_t update = existing | union_with->GetRawStorageWord(idx); local
209 if (existing != update) {
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsProvider.java 174 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:TestResultsProvider
204 int numUpdated = db.update(TABLE_NAME, values, selection, selectionArgs);
238 int numUpdated = resolver.update(uri, values,
  /cts/hostsidetests/devicepolicy/app/ContactDirectoryProvider/src/com/android/cts/contactdirectoryprovider/
DirectoryProvider.java 191 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:DirectoryProvider
201 // Force update the content in CP2
203 getContext().getContentResolver().update(Directory.CONTENT_URI, new ContentValues(),
  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/
AuthenticatorContentProvider.java 146 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:AuthenticatorContentProvider

Completed in 1427 milliseconds

<<11121314151617181920>>