Searched refs:update (Results 1 - 25 of 138) sorted by relevance

123456

/frameworks/base/core/java/android/webkit/
H A DZoomControlBase.java31 * Enables the control to update its state if necessary in response to a
35 public void update(); method in interface:ZoomControlBase
H A DZoomControlEmbedded.java66 public void update() { method in class:ZoomControlEmbedded
106 update();
116 update();
/frameworks/base/core/tests/coretests/src/android/text/
H A DDynamicLayoutBlocksTest.java63 private void update(int startLine, int endLine, int newLineCount) { method in class:DynamicLayoutBlocksTest
97 update(0, 0, 0);
100 update(0, 0, 1);
103 update(0, 0, 10);
110 update(0, 0, 0);
113 update(0, 10, 0);
116 update(0, 100, 0);
119 update(20, 30, 0);
122 update(20, 20, 0);
125 update(4
[all...]
/frameworks/base/services/input/
H A DSpriteController.cpp109 // Each sprite update record includes a reference to its associated sprite so we can
131 SpriteUpdate& update = updates.editItemAt(i); local
133 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) {
134 update.state.surfaceWidth = update.state.icon.bitmap.width();
135 update.state.surfaceHeight = update.state.icon.bitmap.height();
136 update.state.surfaceDrawn = false;
137 update
149 SpriteUpdate& update = updates.editItemAt(i); local
190 SpriteUpdate& update = updates.editItemAt(i); local
243 SpriteUpdate& update = updates.editItemAt(i); local
329 const SpriteUpdate& update = updates.itemAt(i); local
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dsyn_filt.h76 Word16 update /* (i) : 0=no update, 1=update of memory. */
/frameworks/base/core/java/android/content/pm/
H A DMacAuthenticatedInputStream.java65 mMac.update((byte) b);
74 mMac.update(buffer, offset, numRead);
/frameworks/base/core/java/android/view/
H A DGLES20Layer.java51 void update(int width, int height, boolean isOpaque) { method in class:GLES20Layer
52 super.update(width, height, isOpaque);
H A DGLES20TextureLayer.java90 void update(int width, int height, boolean isOpaque) { method in class:GLES20TextureLayer
91 super.update(width, height, isOpaque);
/frameworks/base/tests/FixVibrateSetting/src/com/android/fixvibratesetting/
H A DFixVibrateSetting.java64 update();
84 update();
87 update();
90 update();
94 private void update() { method in class:FixVibrateSetting
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDateView.java113 boolean update = mAttachedToWindow && mWindowVisible && isVisible();
114 if (update != mUpdating) {
115 mUpdating = update;
116 if (update) {
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java139 update(p.x, p.y, -1, -1, true);
342 * the {@link #update()} methods.</p>
344 * @see #update()
356 * the {@link #update()} methods.</p>
362 * @see #update()
433 * the {@link #update()} methods.</p>
439 * @see #update()
462 * the {@link #update()} methods.</p>
465 * @see #update()
513 * the {@link #update()} method
1286 public void update() { method in class:PopupWindow
1321 public void update(int width, int height) { method in class:PopupWindow
1338 public void update(int x, int y, int width, int height) { method in class:PopupWindow
1355 public void update(int x, int y, int width, int height, boolean force) { method in class:PopupWindow
1422 public void update(View anchor, int width, int height) { method in class:PopupWindow
1441 public void update(View anchor, int xoff, int yoff, int width, int height) { method in class:PopupWindow
1445 private void update(View anchor, boolean updateLocation, int xoff, int yoff, method in class:PopupWindow
[all...]
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
H A DDisabledProvider.java51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:DisabledProvider
H A DEnabledProvider.java51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:EnabledProvider
/frameworks/compile/libbcc/tools/build/
H A Dgen-sha1-stamp.py16 h.update(buf)
H A Dgen-build-stamp.py50 hasher.update(buf)
52 global_hasher.update(buf)
/frameworks/native/include/utils/
H A DCallStack.h54 void update(int32_t ignoreDepth=1, int32_t maxDepth=MAX_DEPTH);
/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java113 * Execute update using the current internal state as {@code WHERE} clause.
115 public int update(SQLiteDatabase db, String table, ContentValues values) { method in class:SelectionBuilder
116 return db.update(table, values, getSelection(), getSelectionArgs());
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DCompoundTransform.java63 protected void update() { method in class:CompoundTransform.Component
86 update();
106 update();
110 update();
126 update();
/frameworks/ex/common/java/com/android/common/contacts/
H A DDataUsageStatUpdater.java77 * @return true when update request is correctly sent. False when the request fails,
100 * @see #update(Collection, Collection, String)
102 * @return true when update request is correctly sent. False when the request fails,
138 return update(contactIds, dataIds, DataUsageFeedback.USAGE_TYPE_LONG_TEXT);
150 * @see #update(Collection, Collection, String)
152 * @return true when update request is correctly sent. False when the request fails,
188 return update(contactIds, dataIds, DataUsageFeedback.USAGE_TYPE_SHORT_TEXT);
195 * @return true when one or more of update requests are correctly sent.
198 private boolean update(Collection<Long> contactIds, Collection<Long> dataIds, String type) { method in class:DataUsageStatUpdater
215 if (mResolver.update(ur
[all...]
/frameworks/ex/common/java/com/android/common/content/
H A DSyncStateContentProviderHelper.java28 * and implements query/insert/update/delete to access that table using the
95 public int update(SQLiteDatabase db, ContentValues values, method in class:SyncStateContentProviderHelper
97 return db.update(SYNC_STATE_TABLE, values, selection, selectionArgs);
100 public int update(SQLiteDatabase db, long rowId, Object data) { method in class:SyncStateContentProviderHelper
/frameworks/native/include/gui/
H A DSurfaceComposerClient.h155 status_t update();
156 status_t update(uint32_t reqWidth, uint32_t reqHeight);
157 status_t update(uint32_t reqWidth, uint32_t reqHeight,
164 // release() or update() is called
/frameworks/base/core/java/android/database/sqlite/
H A DSqliteWrapper.java76 public static int update(Context context, ContentResolver resolver, Uri uri, method in class:SqliteWrapper
79 return resolver.update(uri, values, where, selectionArgs);
81 Log.e(TAG, "Catch a SQLiteException when update: ", e);
/frameworks/base/core/java/android/net/http/
H A DHttpResponseCache.java277 @Override public void update(CacheResponse conditionalCacheHit, HttpURLConnection connection) { method in class:HttpResponseCache
278 delegate.update(conditionalCacheHit, connection);
/frameworks/base/core/java/com/google/android/mms/util/
H A DSqliteWrapper.java88 public static int update(Context context, ContentResolver resolver, Uri uri, method in class:SqliteWrapper
91 return resolver.update(uri, values, where, selectionArgs);
93 Log.e(TAG, "Catch a SQLiteException when update: ", e);
/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteChooserDialogFragment.java229 update();
232 void update() { method in class:MediaRouteChooserDialogFragment.RouteAdapter
529 update();
542 update();
558 update();
567 mAdapter.update();
573 mAdapter.update();
578 mAdapter.update();
586 mAdapter.update();
597 mAdapter.update();
[all...]

Completed in 6902 milliseconds

123456