Home
last modified time | relevance | path

Searched refs:update (Results 1 – 25 of 283) sorted by relevance

12345678910>>...12

/frameworks/base/core/tests/coretests/src/android/text/
DDynamicLayoutBlocksTest.java63 private void update(int startLine, int endLine, int newLineCount) { in update() method in DynamicLayoutBlocksTest
97 update(0, 0, 0); in testFrom0()
100 update(0, 0, 1); in testFrom0()
103 update(0, 0, 10); in testFrom0()
110 update(0, 0, 0); in testFrom1ReplaceByEmpty()
113 update(0, 10, 0); in testFrom1ReplaceByEmpty()
116 update(0, 100, 0); in testFrom1ReplaceByEmpty()
119 update(20, 30, 0); in testFrom1ReplaceByEmpty()
122 update(20, 20, 0); in testFrom1ReplaceByEmpty()
125 update(40, 100, 0); in testFrom1ReplaceByEmpty()
[all …]
/frameworks/base/services/input/
DSpriteController.cpp131 SpriteUpdate& update = updates.editItemAt(i); in doUpdateSprites() local
133 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) { in doUpdateSprites()
134 update.state.surfaceWidth = update.state.icon.bitmap.width(); in doUpdateSprites()
135 update.state.surfaceHeight = update.state.icon.bitmap.height(); in doUpdateSprites()
136 update.state.surfaceDrawn = false; in doUpdateSprites()
137 update.state.surfaceVisible = false; in doUpdateSprites()
138 update.state.surfaceControl = obtainSurface( in doUpdateSprites()
139 update.state.surfaceWidth, update.state.surfaceHeight); in doUpdateSprites()
140 if (update.state.surfaceControl != NULL) { in doUpdateSprites()
141 update.surfaceChanged = surfaceChanged = true; in doUpdateSprites()
[all …]
/frameworks/base/core/java/android/widget/
DPopupWindow.java139 update(p.x, p.y, -1, -1, true);
1286 public void update() { in update() method
1294 boolean update = false; in update()
1299 update = true; in update()
1305 update = true; in update()
1308 if (update) { in update()
1321 public void update(int width, int height) { in update() method
1324 update(p.x, p.y, width, height, false); in update()
1338 public void update(int x, int y, int width, int height) { in update() method
1339 update(x, y, width, height, false); in update()
[all …]
DDateTimeView.java100 update(); in setTime()
103 void update() { in update() method in DateTimeView
252 update();
260 update();
/frameworks/base/tests/FixVibrateSetting/src/com/android/fixvibratesetting/
DFixVibrateSetting.java64 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/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DDateView.java113 boolean update = mAttachedToWindow && mWindowVisible && isVisible(); in setUpdates()
114 if (update != mUpdating) { in setUpdates()
115 mUpdating = update; in setUpdates()
116 if (update) { in setUpdates()
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
DCompoundTransform.java63 protected void update() { in update() method in CompoundTransform.Component
86 update(); in setValue()
106 update(); in setAxis()
110 update(); in setAngle()
126 update(); in setValue()
/frameworks/base/core/java/android/webkit/
DZoomControlEmbedded.java66 public void update() { in update() method in ZoomControlEmbedded
106 update(); in onVisibilityChanged()
116 update(); in onZoom()
/frameworks/base/docs/html/sdk/1.1_r1/
Dupgrading.jd58 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 &mdash; 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/core/java/com/android/internal/app/
DMediaRouteChooserDialogFragment.java229 update(); in RouteAdapter()
232 void update() { in update() method in MediaRouteChooserDialogFragment.RouteAdapter
529 update(); in onItemClick()
542 update(); in finishGrouping()
558 update(); in onClick()
567 mAdapter.update(); in onRouteSelected()
573 mAdapter.update(); in onRouteUnselected()
578 mAdapter.update(); in onRouteAdded()
586 mAdapter.update(); in onRouteRemoved()
597 mAdapter.update(); in onRouteGrouped()
[all …]
/frameworks/base/core/java/android/view/
DGLES20Layer.java51 void update(int width, int height, boolean isOpaque) { in update() method in GLES20Layer
52 super.update(width, height, isOpaque); in update()
DGLES20TextureLayer.java90 void update(int width, int height, boolean isOpaque) { in update() method in GLES20TextureLayer
91 super.update(width, height, isOpaque); in update()
/frameworks/ex/common/java/com/android/common/contacts/
DDataUsageStatUpdater.java138 return update(contactIds, dataIds, DataUsageFeedback.USAGE_TYPE_LONG_TEXT); in updateWithAddress()
188 return update(contactIds, dataIds, DataUsageFeedback.USAGE_TYPE_SHORT_TEXT); in updateWithPhoneNumber()
198 private boolean update(Collection<Long> contactIds, Collection<Long> dataIds, String type) { in update() method in DataUsageStatUpdater
215 if (mResolver.update(uri, new ContentValues(), null, null) > 0) { in update()
248 if (mResolver.update(ContactsContract.Contacts.CONTENT_URI, values, in update()
/frameworks/base/core/java/android/content/pm/
DMacAuthenticatedInputStream.java65 mMac.update((byte) b); in read()
74 mMac.update(buffer, offset, numRead); in read()
/frameworks/ex/common/java/com/android/common/content/
DSyncStateContentProviderHelper.java95 public int update(SQLiteDatabase db, ContentValues values, in update() method in SyncStateContentProviderHelper
97 return db.update(SYNC_STATE_TABLE, values, selection, selectionArgs); in update()
100 public int update(SQLiteDatabase db, long rowId, Object data) { in update() method in SyncStateContentProviderHelper
/frameworks/native/include/gui/
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,
/frameworks/base/docs/html/sdk/installing/
Dinstalling-adt.jd91 you should update to it as soon as convenient. </p>
95 update the SDK Tools package of the SDK after installing the new revision of
96 ADT. To update the SDK Tools package, use the Android SDK Manager, as
106 <p>Follow the steps below to check whether an update is available and, if so,
122 <p>If you encounter problems during the update, remove the existing ADT plugin from Eclipse, then
134 <li>If Eclipse can not find the remote update site containing the ADT plugin,
147 remote update site, you can download the ADT zip file to your local machine and
176 <li>Enter a name for the local update site (e.g.,
184 <p>To update your plugin once you've installed using the zip file, you will have
185 to follow these steps again instead of the default update instructions.</p>
/frameworks/base/docs/html/training/basics/location/
Dcurrentlocation.jd59 // A new location update is received. Do something useful with it. In this case,
60 // we're sending the update to a handler which then updates the UI with the new
80 …based). If you want to display location data as quickly as possible and update it as more accurat…
142update previously received by any location providers. Keep in mind that the returned location may…
146 <p>When you are done with using location data, you should terminate location update to reduce
148 from an activity where location updates are displayed, you should stop location update by calling
163 …ar-real time mapping application, it is best to incorporate the location update logic in a backgro…
/frameworks/base/docs/html/training/sharing/
Dshareaction.jd17 <li><a href="#update-menus">Update Menu Declarations</a></li>
48 <h2 id="update-menus">Update Menu Declarations</h2>
79 update the share intent associated with that action item. Here's an example:</p>
100 // Call to update the share intent
109 want to set it and then update it as the UI changes. For example, when you view photos full screen
/frameworks/base/services/java/com/android/server/
DBatteryService.java148 update(); in BatteryService()
182 update();
192 update();
232 private synchronized final void update() { in update() method in BatteryService
521 boolean update = true; in dump()
533 update = false; in dump()
535 if (update) { in dump()
DDockObserver.java92 update(); in onUEvent()
120 update(); in systemReady()
126 private final void update() { in update() method in DockObserver
/frameworks/base/policy/src/com/android/internal/policy/impl/
DKeyguardStatusViewManager.java225 update(INSTRUCTION_TEXT, string); in setInstructionText()
230 update(CARRIER_TEXT, string); in setCarrierText()
235 update(OWNER_INFO, string); in setOwnerInfo()
246 update(CARRIER_HELP_TEXT, mCarrierHelpText); in setCarrierHelpText()
263 update(HELP_MESSAGE_TEXT, mHelpMessageText); in setHelpMessage()
266 private void update(int what, CharSequence string) { in update() method in KeyguardStatusViewManager
641 update(BATTERY_INFO, getAltTextMessage(tmpIcon));
/frameworks/base/core/java/com/android/internal/content/
DSelectionBuilder.java115 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/docs/html/tools/help/
Dandroid.jd13 <li>Create and update Android projects. See <a href=
174 <td><code>update avd</code></td>
241 <td rowspan="5"><code>update project</code></td>
245 <td>The name of the project to update</td>
309 <td rowspan="2"><code>update-test-project</code></td>
361 <td rowspan="3"><code>update-lib-project</code></td>
389 <dt><code>update adb</code></dt>
392 <dt><code>update sdk</code></dt>
/frameworks/base/test-runner/src/android/test/mock/
DMockContentProvider.java102 public int update(Uri url, ContentValues values, String selection, String[] selectionArgs) in update() method in MockContentProvider.InversionIContentProvider
104 return MockContentProvider.this.update(url, values, selection, selectionArgs); in update()
198 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { in update() method in MockContentProvider

12345678910>>...12