HomeSort by relevance Sort by last modified time
    Searched defs:update (Results 351 - 375 of 1241) sorted by null

<<11121314151617181920>>

  /external/qemu/android/skin/
composer.h 94 SkinRegion update[1]; member in struct:SkinViewport
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_wimpvideo.c 342 /* Update window can fail if called before first poll */
359 SDL_Rect update; local
375 update.x = 0;
376 update.y = 0;
377 update.w = SDL_VideoSurface->w;
378 update.h = SDL_VideoSurface->h;
379 WIMP_UpdateRects(this, 1, &update);
  /external/qemu/distrib/sdl-1.2.15/test/
testwin.c 25 SDL_Rect dest, update; local
120 update = dest;
121 if ( SDL_BlitSurface(picture, NULL, screen, &update) < 0 ) {
128 SDL_UpdateRects(screen, 1, &update);
  /external/replicaisland/src/com/replica/replicaisland/
ChangeComponentsComponent.java 82 public void update(float timeDelta, BaseObject parent) { method in class:ChangeComponentsComponent
HitPlayerComponent.java 47 public void update(float timeDelta, BaseObject parent) { method in class:HitPlayerComponent
MotionBlurComponent.java 64 public void update(float timeDelta, BaseObject parent) { method in class:MotionBlurComponent
PopOutComponent.java 61 public void update(float timeDelta, BaseObject parent) { method in class:PopOutComponent
RenderComponent.java 52 public void update(float timeDelta, BaseObject parent) { method in class:RenderComponent
ScrollerComponent.java 89 public void update(float timeDelta, BaseObject parent) { method in class:ScrollerComponent
SimpleCollisionComponent.java 47 public void update(float timeDelta, BaseObject parent) { method in class:SimpleCollisionComponent
SleeperComponent.java 58 public void update(float timeDelta, BaseObject parent) { method in class:SleeperComponent
  /external/skia/src/views/
SkWindow.cpp 114 bool SkWindow::update(SkIRect* updateArea) { function in class:SkWindow
  /external/srtp/crypto/include/
auth.h 84 (((a)->type)->update((a)->state, (buf), (len)))
126 auth_update_func update; member in struct:auth_type_t
  /frameworks/base/core/java/android/content/
IContentProvider.java 47 public int update(String callingPkg, Uri url, ContentValues values, String selection, method in interface:IContentProvider
  /frameworks/base/core/java/android/widget/
DateTimeView.java 39 // - listen for the next threshold time to update the view.
97 update(); method
100 void update() { method in class:DateTimeView
164 // Schedule the next update
166 // Currently showing the time, update at the later of twelve hours after or midnight.
171 // If the time is in the past, don't schedule an update
181 Log.d(TAG, "update needed for '" + time + "' at '" + new Date(mUpdateTimeMillis)
233 // The update() function takes a few milliseconds to run because of
241 update();
249 update();
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalProvider.java 130 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { method in class:LocalProvider
139 count = db.update("data", values, "_id=" + rowId, null);
144 "Cannot update URL: " + url);
  /frameworks/base/core/tests/coretests/src/android/content/
MemoryFileProvider.java 163 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { method in class:MemoryFileProvider
164 throw new UnsupportedOperationException("update not supported");
  /frameworks/base/core/tests/coretests/src/android/text/
DynamicLayoutBlocksTest.java 63 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(40, 100, 0)
    [all...]
  /frameworks/base/tests/FixVibrateSetting/src/com/android/fixvibratesetting/
FixVibrateSetting.java 64 update(); method
84 update(); method
87 update(); method
90 update(); method
94 private void update() { method in class:FixVibrateSetting
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerProvider.java 122 public int update(Uri uri, ContentValues values, String selection, method in class:TrackerProvider
  /frameworks/base/tools/orientationplot/
orientationplot.py 183 self.timer.add_callback(lambda: self.update())
262 # Update samples.
263 def update(self): member in class:Plotter
454 plotter.update()
  /frameworks/base/tools/velocityplot/
velocityplot.py 118 self.timer.add_callback(lambda: self.update())
176 # Update samples.
177 def update(self): member in class:Plotter
286 plotter.update()
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pDeviceList.java 81 * Add/update a device to the list. If the device is not found, a new device entry
86 public void update(WifiP2pDevice device) { method in class:WifiP2pDeviceList
207 deviceList.update((WifiP2pDevice)in.readParcelable(null));
  /frameworks/ex/common/java/com/android/common/content/
SyncStateContentProviderHelper.java 28 * 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
105 db.execSQL("UPDATE " + SYNC_STATE_TABLE
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
encodemv.c 180 /* Motion vector probability table update depends on benefit.
181 * Small correction allows for the fact that an update to an MV probability
198 static void update( function
326 update(w, is_short_ct, Pcur + mvpis_short, Pnew[mvpis_short], *Pupdate++, updated);
328 update(w, sign_ct, Pcur + MVPsign, Pnew[MVPsign], *Pupdate++, updated);
338 update(w, short_bct[j], cur_p + j, new_p[j], *Pupdate++, updated);
351 update(w, bit_ct[j], cur_p + j, new_p[j], *Pupdate++, updated);

Completed in 2577 milliseconds

<<11121314151617181920>>