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

1234567

/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.cpp111 // Each sprite update record includes a reference to its associated sprite so we can
133 SpriteUpdate& update = updates.editItemAt(i); local
135 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) {
136 update.state.surfaceWidth = update.state.icon.bitmap.width();
137 update.state.surfaceHeight = update.state.icon.bitmap.height();
138 update.state.surfaceDrawn = false;
139 update
151 SpriteUpdate& update = updates.editItemAt(i); local
192 SpriteUpdate& update = updates.editItemAt(i); local
244 SpriteUpdate& update = updates.editItemAt(i); local
330 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/av/include/camera/
H A DCameraMetadata.h126 status_t update(uint32_t tag,
128 status_t update(uint32_t tag,
130 status_t update(uint32_t tag,
132 status_t update(uint32_t tag,
134 status_t update(uint32_t tag,
136 status_t update(uint32_t tag,
138 status_t update(uint32_t tag,
142 status_t update(uint32_t tag, Vector<T> data) { function in class:android::CameraMetadata
143 return update(tag, data.array(), data.size());
219 * Base update entr
[all...]
/frameworks/rs/
H A DrsDebugHelper.h40 mStack.update(2);
/frameworks/base/core/java/android/content/pm/
H A DMacAuthenticatedInputStream.java65 mMac.update((byte) b);
74 mMac.update(buffer, offset, numRead);
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DActivityOptionsCompatJB.java55 public void update(ActivityOptionsCompatJB otherOptions) { method in class:ActivityOptionsCompatJB
56 mActivityOptions.update(otherOptions.mActivityOptions);
/frameworks/native/services/surfaceflinger/Effects/
H A DDaltonizer.h50 void update();
H A DDaltonizer.cpp46 update();
51 void Daltonizer::update() { function in class:android::Daltonizer
/frameworks/support/v4/java/android/support/v4/app/
H A DActivityOptionsCompat.java125 public void update(ActivityOptionsCompat otherOptions) { method in class:ActivityOptionsCompat.ActivityOptionsImplJB
128 mImpl.update(otherImpl.mImpl);
153 public void update(ActivityOptionsCompat otherOptions) { method in class:ActivityOptionsCompat
/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/core/java/android/view/
H A DGLES20TextureLayer.java90 void update(int width, int height, boolean isOpaque) { method in class:GLES20TextureLayer
91 super.update(width, height, isOpaque);
97 throw new UnsupportedOperationException("Use update(int, int, boolean) instead");
/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteControllerDialog.java167 // volume update.
191 if (update()) {
210 update();
239 private boolean update() { method in class:MediaRouteControllerDialog
292 update();
297 update();
310 update();
315 update();
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardMessageArea.java102 update();
164 update();
191 update();
203 update();
220 void update() { method in class:KeyguardMessageArea
285 update();
293 update();
/frameworks/uiautomator/
H A DAndroid.mk105 .PHONY: update-ub-uiautomator-api
106 update-ub-uiautomator-api: PRIVATE_API_DIR := $(uiautomator_api_dir)
107 update-ub-uiautomator-api: $(uiautomator_internal_api_file) | $(ACP)
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java142 update(p.x, p.y, -1, -1, true);
347 * the {@link #update()} methods.</p>
349 * @see #update()
361 * the {@link #update()} methods.</p>
367 * @see #update()
438 * the {@link #update()} methods.</p>
444 * @see #update()
467 * the {@link #update()} methods.</p>
470 * @see #update()
518 * the {@link #update()} method
1338 public void update() { method in class:PopupWindow
1374 public void update(int width, int height) { method in class:PopupWindow
1391 public void update(int x, int y, int width, int height) { method in class:PopupWindow
1408 public void update(int x, int y, int width, int height, boolean force) { method in class:PopupWindow
1476 public void update(View anchor, int width, int height) { method in class:PopupWindow
1495 public void update(View anchor, int xoff, int yoff, int width, int height) { method in class:PopupWindow
1499 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/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
H A DTestProvider.java54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:TestProvider
H A DTestReceiver.java54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:TestReceiver
/frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:NullProvider
/frameworks/base/core/tests/coretests/apks/version_nosys/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:NullProvider
/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/services/tests/servicestests/src/com/android/server/updates/
H A DCertPinInstallReceiverTest.java164 signer.update(content.trim().getBytes());
165 signer.update(version.trim().getBytes());
166 signer.update(requiredHash.getBytes());
177 signer.update(content.trim().getBytes());
178 signer.update(version.trim().getBytes());
179 signer.update(requiredPrevious.trim().getBytes());
/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();

Completed in 1422 milliseconds

1234567