/frameworks/base/tests/CoreTests/android/core/ |
D | ChecksumTest.java | 46 adler.update(values); in adler32Test() 52 adler.update(values[i]); in adler32Test() 61 crc.update(values); in cRC32Test() 67 crc.update(values[i]); in cRC32Test() 87 adler.update(bytes); in wrongChecksumWithAdler32Test() 91 adler.update(bytes[i]); in wrongChecksumWithAdler32Test()
|
/frameworks/base/core/java/android/widget/ |
D | PopupWindow.java | 133 update(p.x, p.y, -1, -1, true); 1169 public void update() { 1177 boolean update = false; 1182 update = true; 1188 update = true; 1191 if (update) { 1204 public void update(int width, int height) { 1207 update(p.x, p.y, width, height, false); 1221 public void update(int x, int y, int width, int height) { 1222 update(x, y, width, height, false); [all …]
|
D | DateTimeView.java | 100 update(); in setTime() 103 void update() { in update() method in DateTimeView 252 update(); 260 update();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | DateView.java | 73 void setUpdates(boolean update) { in setUpdates() argument 74 if (update != mUpdating) { in setUpdates() 75 mUpdating = update; in setUpdates() 76 if (update) { in setUpdates()
|
/frameworks/base/tests/FixVibrateSetting/src/com/android/fixvibratesetting/ |
D | FixVibrateSetting.java | 64 update(); in onResume() 84 update(); in onClick() 87 update(); in onClick() 90 update(); in onClick() 94 private void update() { in update() method in FixVibrateSetting
|
/frameworks/base/test-runner/src/android/test/ |
D | TestRecorder.java | 96 int rowsAffected = getDatabase().update("tests", map, "name = '" + className + "'", null); in started() 107 getDatabase().update("tests", map, "name = '" + className + "'", null); in finished() 115 getDatabase().update("tests", map, "name = '" + className + "'", null); in performance() 133 getDatabase().update("tests", map, "name = '" + className + "'", null); in passed() 148 getDatabase().update("tests", map, "name = '" + className + "'", null); in failed() 162 getDatabase().update("tests", map, "name = '" + className + "'", null); in failed()
|
/frameworks/base/core/java/android/database/ |
D | AbstractCursor.java | 328 return update(columnIndex, value); in updateBlob() 336 return update(columnIndex, value); in updateString() 344 return update(columnIndex, Short.valueOf(value)); in updateShort() 352 return update(columnIndex, Integer.valueOf(value)); in updateInt() 360 return update(columnIndex, Long.valueOf(value)); in updateLong() 368 return update(columnIndex, Float.valueOf(value)); in updateFloat() 376 return update(columnIndex, Double.valueOf(value)); in updateDouble() 384 return update(columnIndex, null); in updateToNull() 391 public boolean update(int columnIndex, Object obj) { in update() method in AbstractCursor
|
/frameworks/base/core/java/android/security/ |
D | Sha1MessageDigest.java | 34 update(input); in digest() 39 public native void update(byte[] input); in update() method in Sha1MessageDigest
|
D | Md5MessageDigest.java | 34 update(input); in digest() 39 public native void update(byte[] input); in update() method in Md5MessageDigest
|
D | MessageDigest.java | 54 public abstract void update(byte[] input); in update() method in MessageDigest
|
/frameworks/base/core/java/com/android/internal/util/ |
D | ProcessedMessages.java | 56 update(message, state, orgState); in Info() 65 public void update(Message message, HierarchicalState state, HierarchicalState orgState) { in update() method in ProcessedMessages.Info 195 info.update(message, state, orgState); in add()
|
/frameworks/base/docs/html/sdk/1.1_r1/ |
D | upgrading.jd | 58 PATH variable to point to the SDK tools directory, then you'll need to update it to 66 file, update the <code>sdk-folder</code> property with the full path to 71 <h2 id="update-plugin">Update your ADT Eclipse Plugin</h2> 74 SDK, no update of the ADT plugin is needed — skip to <a href="#updateEclipsePrefs">Update you… 77 need to update the ADT plugin. <p>You may also want to upgrade your 81 <p>The steps below describe how to update the ADT plugin to the latest 91 <li> If any update for ADT is available, select and install. </li> 107 <li>If an update for ADT is available, select it and click <strong>Finish</strong>.</li> 116 <p>The last step is to update your Eclipse preferences to point to the new SDK directory:</p> 130 framework and API changes. You'll need to update your code to match the
|
/frameworks/base/libs/surfaceflinger_client/ |
D | SharedBufferStack.cpp | 377 DequeueUpdate update(this); in dequeue() local 378 updateCondition( update ); in dequeue() 401 CancelUpdate update(this, localTail, buf); in cancel() local 402 status_t err = updateCondition( update ); in cancel() 428 QueueUpdate update(this); in queue() local 429 status_t err = updateCondition( update ); in queue() 510 RetireUpdate update(this, mNumBuffers); in retireAndLock() local 511 ssize_t buf = updateCondition( update ); in retireAndLock() 526 StatusUpdate update(this, status); in setStatus() local 527 updateCondition( update ); in setStatus()
|
/frameworks/base/core/java/com/android/internal/content/ |
D | SyncStateContentProviderHelper.java | 99 public int update(SQLiteDatabase db, ContentValues values, in update() method in SyncStateContentProviderHelper 101 return db.update(SYNC_STATE_TABLE, values, selection, selectionArgs); in update() 104 public int update(SQLiteDatabase db, long rowId, Object data) { in update() method in SyncStateContentProviderHelper
|
D | SelectionBuilder.java | 115 public int update(SQLiteDatabase db, String table, ContentValues values) { in update() method in SelectionBuilder 116 return db.update(table, values, getSelection(), getSelectionArgs()); in update()
|
/frameworks/base/services/java/com/android/server/ |
D | HeadsetObserver.java | 72 update(event.get("SWITCH_NAME"), Integer.parseInt(event.get("SWITCH_STATE"))); in onUEvent() 99 update(newName, newState); in init() 102 private synchronized final void update(String newName, int newState) { in update() method in HeadsetObserver
|
D | DockObserver.java | 90 update(); in onUEvent() 118 update(); in systemReady() 124 private final void update() { in update() method in DockObserver
|
/frameworks/base/core/java/android/content/ |
D | ContentProviderClient.java | 75 public int update(Uri url, ContentValues values, String selection, in update() method in ContentProviderClient 77 return mContentProvider.update(url, values, selection, selectionArgs); in update()
|
/frameworks/base/docs/html/resources/articles/ |
D | timed-ui-updates.jd | 13 java.util.Timer to update the clock, but that class is not such a good 44 }</pre><p>And in the event listener to start this update, the following Timer() instance is used: 52 means wait 100 ms before running the clock update task the first time. 55 close to or on the update. If the resolution was a second, you could 125 the clock update, the task sets up another call to itself from the 126 Handler, but instead of a hand-wavy 200ms before the update, we can 143 too. The Handler runs the update code as a part of your main thread,
|
/frameworks/base/test-runner/src/android/test/mock/ |
D | MockContentProvider.java | 112 public int update(Uri url, ContentValues values, String selection, String[] selectionArgs) in update() method in MockContentProvider.InversionIContentProvider 114 return MockContentProvider.this.update(url, values, selection, selectionArgs); in update() 195 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { in update() method in MockContentProvider
|
/frameworks/base/docs/html/guide/topics/appwidgets/ |
D | index.jd | 69 <dd>Describes the metadata for an App Widget, such as the App Widget's layout, update frequency, 127 how often to update the App Widget, and (optionally) a configuration Activity to launch at create-t… 163 request an update from the {@link android.appwidget.AppWidgetProvider} by calling the 165 onUpdate()} method. The actual update is not guaranteed to occur exactly on time with this value 168 configuration—some people might want a stock ticker to update every 15 minutes, or maybe 170 <p class="note"><strong>Note:</strong> If the device is asleep when it is time for an update 172 to perform the update. If you don't update more than once per hour, this probably won't 173 cause significant problems for the battery life. If, however, you need to update more 174 frequently and/or you do not need to update while the device is asleep, then you can instead 246 …<dd>This is called to update the App Widget at intervals defined by the <code>updatePeriodMillis</… [all …]
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SqliteWrapper.java | 76 public static int update(Context context, ContentResolver resolver, Uri uri, in update() method in SqliteWrapper 79 return resolver.update(uri, values, where, selectionArgs); in update()
|
/frameworks/base/media/libstagefright/codecs/amrnb/common/include/ |
D | syn_filt.h | 76 Word16 update /* (i) : 0=no update, 1=update of memory. */
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | uses-sdk-element.jd | 91 after a system update. In either case, if the application's 94 installed. In the case of revalidation after system update, this effectively 103 receives an over-the-air system update to Android 2.0 (API Level 5). After the 104 update is installed, the system checks the application's 107 another system update, this time to Android 2.0.1 (API Level 6). After the 108 update, the system can no longer revalidate the application because the system's 121 update</strong> to a higher API Level. Most devices on which your appplication
|
/frameworks/base/core/java/com/google/android/mms/util/ |
D | SqliteWrapper.java | 88 public static int update(Context context, ContentResolver resolver, Uri uri, in update() method in SqliteWrapper 91 return resolver.update(uri, values, where, selectionArgs); in update()
|