Searched defs:update (Results 176 - 200 of 320) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/autofill/
H A Dpersonal_data_manager_unittest.cc119 std::vector<AutofillProfile> update; local
120 update.push_back(profile0);
121 update.push_back(profile1);
122 personal_data_->SetProfiles(&update);
134 update.clear();
135 update.push_back(profile0);
136 update.push_back(profile2);
137 personal_data_->SetProfiles(&update);
187 std::vector<CreditCard> update; local
188 update
263 std::vector<AutofillProfile> update; local
313 std::vector<AutofillProfile> update; local
360 std::vector<AutofillProfile> update; local
399 std::vector<CreditCard> update; local
444 std::vector<AutofillProfile> update; local
720 std::vector<CreditCard> update; local
[all...]
/external/chromium/chrome/browser/chromeos/notifications/
H A Dnotification_browsertest.cc239 Notification update = SystemNotificationFactory::Create( local
241 collection->UpdateNotification(update);
450 SCOPED_TRACE(base::StringPrintf("update n%d", i));
460 SCOPED_TRACE(base::StringPrintf("update s%d", i));
473 SCOPED_TRACE(base::StringPrintf("update and show n%d", i));
481 SCOPED_TRACE(base::StringPrintf("update and show s%d", i));
/external/chromium/chrome/browser/resources/net_internals/
H A Dsourceentry.js67 SourceEntry.prototype.update = function(logEntry) {
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer_util.cc100 // among the children will be valid after the loop, since we update all
111 // We just need a shallow update to |entry|'s fields since it is already
132 const SyncEntity& update) {
136 // DB has not yet been modified, no entries created for this update.
140 if (update.has_client_defined_unique_tag() &&
141 !update.client_defined_unique_tag().empty()) {
148 // Case 1, we don't have to do anything since the update will
155 // this update gets targeted at the correct local entry; we expect conflict
160 update.client_defined_unique_tag());
167 if (local_entry.Get(ID) != update
130 FindLocalIdToUpdate( syncable::BaseTransaction* trans, const SyncEntity& update) argument
380 UpdateServerFieldsFromUpdate( MutableEntry* target, const SyncEntity& update, const std::string& name) argument
685 VerifyNewEntry( const SyncEntity& update, syncable::Entry* target, const bool deleted) argument
704 VerifyUpdateConsistency( syncable::WriteTransaction* trans, const SyncEntity& update, syncable::MutableEntry* target, const bool deleted, const bool is_directory, syncable::ModelType model_type) argument
790 VerifyUndelete(syncable::WriteTransaction* trans, const SyncEntity& update, syncable::MutableEntry* target) argument
[all...]
/external/chromium/chrome/browser/sync/sessions/
H A Dsync_session_unittest.cc347 syncable::ModelTypePayloadMap update; local
348 update[syncable::BOOKMARKS] = empty_payload; // Same.
349 update[syncable::PASSWORDS] = empty_payload; // Overwrite with empty.
350 update[syncable::AUTOFILL] = payload1; // Overwrite with non-empty.
351 update[syncable::SESSIONS] = payload2; // New.
354 CoalescePayloads(&original, update);
/external/clang/utils/
H A Dclang-completion-mode.el182 ;; updated, do so (and update the display of results).
183 (defun clang-update-filter ()
191 ;; update the filter for the currently-active code completion.
195 (clang-update-filter)
198 ;; Invoked when the user types the backspace key to update the filter
203 (clang-update-filter))
205 ;; Invoked when the user types the delete key to update the filter
210 (clang-update-filter))
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeData.java203 if (update(cp, expectedName, typeName))
220 if (update(cp, name, tn.expectedName))
253 private boolean update(ClassPool cp, String oldName, String typeName) throws BadBytecode { method in class:TypeData.TypeName
/external/jmonkeyengine/engine/src/android/com/jme3/audio/android/
H A DAndroidAudioRenderer.java223 public void update(float tpf) { method in class:AndroidAudioRenderer
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/
H A DBulletAppState.java98 pSpace.update(tpf * getSpeed());
106 pSpace.update(getPhysicsSpace().getAccuracy() * getSpeed());
108 long update = System.currentTimeMillis() - detachedPhysicsLastUpdate;
110 executor.schedule(detachedPhysicsUpdate, Math.round(getPhysicsSpace().getAccuracy() * 1000000.0f) - (update * 1000), TimeUnit.MICROSECONDS);
168 public void update(float tpf) { method in class:BulletAppState
185 pSpace.update(active ? tpf * speed : 0);
265 * Default mode; user update, physics update and rendering happen sequentially (single threaded)
269 * Parallel threaded mode; physics update and rendering are executed in parallel, update orde
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DAnimChannel.java320 void update(float tpf, TempVars vars) { method in class:AnimChannel
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DCinematic.java192 public void update(float tpf) { method in class:Cinematic
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
H A DMotionTrack.java164 public void update(float tpf) { method in class:MotionTrack
356 * On each update the direction given to the target can have different behavior
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DLetters.java74 void update() { method in class:Letters
82 l.update(block);
109 blank.update(block);
121 cursor.update(block);
125 cursor.update(block);
192 l.update(block); // TODO: update from l
/external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
H A DVideoRecorderAppState.java224 public void update() { method in class:VideoRecorderAppState.IsoTimer
/external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
H A DAwtMouseInput.java160 public void update() { method in class:AwtMouseInput
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
H A DAwtPanelsContext.java36 public void update() { method in class:AwtPanelsContext.AwtPanelsListener
144 System.out.println("OGL: Throttling update loop.");
146 System.out.println("OGL: Ceased throttling update loop.");
157 listener.update();
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DPhysicsHoverControl.java172 public void update(float tpf) { method in class:PhysicsHoverControl
/external/libvpx/libvpx/vp8/encoder/
H A Dencodemv.c180 /* 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);
/external/llvm/lib/CodeGen/
H A DSpillPlacement.cpp144 /// update - Recompute Value from Bias and Links. Return true when node
146 bool update(const Node nodes[]) { function in struct:SpillPlacement::Node
296 nodes[n].update(nodes);
309 /// iterate - Repeatedly update the Hopfield nodes until stability or the
313 // First update the recently positive nodes. They have likely received new
316 nodes[RecentPositive.pop_back_val()].update(nodes);
333 if (nodes[n].update(nodes)) {
347 if (nodes[n].update(nodes)) {
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_wimpvideo.c359 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/replicaisland/src/com/replica/replicaisland/
H A DAnimationComponent.java106 public void update(float timeDelta, BaseObject parent) { method in class:AnimationComponent
H A DBackgroundCollisionComponent.java136 public void update(float timeDelta, BaseObject parent) { method in class:BackgroundCollisionComponent
H A DCameraSystem.java99 public void update(float timeDelta, BaseObject parent) { method in class:CameraSystem
H A DGameObjectCollisionSystem.java100 public void update(float timeDelta, BaseObject parent) { method in class:GameObjectCollisionSystem
H A DGhostComponent.java58 public void update(float timeDelta, BaseObject parent) { method in class:GhostComponent

Completed in 1095 milliseconds

1234567891011>>