Searched refs:updates (Results 1 - 25 of 43) sorted by relevance

12

/external/valgrind/main/exp-sgcheck/tests/
H A Dbad_percentify.stdout.exp1 translate: fast SP updates identified: 0 ( --%)
2 translate: generic_known SP updates identified: 0 ( --%)
3 translate: generic_unknown SP updates identified: 0 ( --%)
/external/chromium/chrome/browser/sync/engine/
H A Dstore_timestamps_command.cc27 const GetUpdatesResponse& updates = local
36 for (int i = 0; i < updates.new_progress_marker_size(); ++i) {
39 updates.new_progress_marker(i).data_type_id());
45 dir->SetDownloadProgress(model, updates.new_progress_marker(i));
48 updates.changes_remaining() == 0);
55 if (updates.has_changes_remaining()) {
56 int64 changes_left = updates.changes_remaining();
H A Dverify_updates_command_unittest.cc60 void AddUpdate(GetUpdatesResponse* updates, argument
63 sync_pb::SyncEntity* e = updates->add_entries();
83 GetUpdatesResponse* updates = session()->status_controller()-> local
85 AddUpdate(updates, "b1", root, syncable::BOOKMARKS);
86 AddUpdate(updates, "b2", root, syncable::BOOKMARKS);
87 AddUpdate(updates, "p1", root, syncable::PREFERENCES);
88 AddUpdate(updates, "a1", root, syncable::AUTOFILL);
H A Dverify_updates_command.cc40 const GetUpdatesResponse& updates = status->updates_response().get_updates(); local
41 int update_count = updates.entries().size();
46 *reinterpret_cast<const SyncEntity *>(&(updates.entries(i)));
88 LOG(ERROR) << "Illegal negative id in received updates";
115 // If we have an existing entry, we check here for updates that break
H A Dprocess_updates_command.cc29 const GetUpdatesResponse& updates = local
31 const int update_count = updates.entries_size();
33 // Don't bother processing updates if there were none.
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestalpha.c249 SDL_Rect updates[2]; local
254 updates[0] = position;
255 SDL_BlitSurface(backing, NULL, screen, &updates[0]);
257 updates[0].x = 0; updates[0].y = 0;
258 updates[0].w = 0; updates[0].h = 0;
295 updates[1] = position;
296 SDL_BlitSurface(screen, &updates[1], backing, NULL);
299 updates[
308 SDL_Rect updates[2]; local
[all...]
H A Dtestpalette.c235 SDL_Rect updates[NBOATS]; local
266 updates[i].x = MIN(old_x, boatx[i]);
267 updates[i].y = boaty[i];
268 updates[i].w = boat[0]->w + SPEED;
269 updates[i].h = boat[0]->h;
271 if(updates[i].x < 0) {
272 updates[i].w += updates[i].x;
273 updates[i].x = 0;
275 if(updates[
[all...]
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_tiled_matrix.c46 Eina_List *updates; member in struct:_Ewk_Tile_Matrix
76 if (t->updates || t->stats.full_update)
77 tm->updates = eina_list_remove(tm->updates, t);
112 if (t->updates || t->stats.full_update)
113 tm->updates = eina_list_remove(tm->updates, t);
460 tm->updates = eina_list_append(tm->updates, t);
525 if (!t->updates
[all...]
H A Dewk_tiled_model.c239 * @c stats.full_update and @c updates.
281 t->updates = NULL;
337 if (t->updates)
338 eina_tiler_free(t->updates);
378 /* TODO: list of tiles pending updates? */
383 if (t->updates) {
384 eina_tiler_free(t->updates);
385 t->updates = NULL;
395 /* TODO: list of tiles pending updates? */
403 if (t->updates) {
[all...]
/external/mdnsresponder/mDNSShared/
H A Ddnsextd.conf10 // dynamic zone that will be accepting Wide-Area Bonjour DNS updates.
23 // network, you might allow anyone to perform updates. To do that, you just
24 // permit any and all updates coming from dnsextd on the same machine:
30 // you'll want to limit updates to only users with keys. For example,
32 // perform updates in your dynamic zone, like this:
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
H A DLodCalculator.java50 public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String,UpdatedTerrainPatch> updates); argument
H A DDistanceLodCalculator.java65 public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String, UpdatedTerrainPatch> updates) { argument
72 UpdatedTerrainPatch utp = updates.get(terrainPatch.getName());
75 updates.put(utp.getName(), utp);
94 UpdatedTerrainPatch utp = updates.get(terrainPatch.getName());
97 updates.put(utp.getName(), utp);
H A DPerspectiveLodCalculator.java77 public boolean calculateLod(List<Vector3f> locations, HashMap<String, UpdatedTerrainPatch> updates) { argument
78 return calculateLod(patch, locations, updates);
81 public boolean calculateLod(TerrainPatch terrainPatch, List<Vector3f> locations, HashMap<String, UpdatedTerrainPatch> updates) { argument
111 UpdatedTerrainPatch utp = updates.get(patch.getName());
114 updates.put(utp.getName(), utp);
/external/chromium/base/files/
H A Dfile_path_watcher_mac.cc250 // potentially rendering other events in |updates| invalid.
269 // potentially rendering other events in |updates| invalid.
315 EventVector updates(valid);
316 int count = HANDLE_EINTR(kevent(kqueue_, &events_[0], valid, &updates[0],
318 if (!AreKeventValuesValid(&updates[0], count)) {
344 // them in |updates|. |count| will contain the number of updates that have
346 EventVector updates(events_.size());
348 int count = HANDLE_EINTR(kevent(kqueue_, NULL, 0, &updates[0], updates
[all...]
/external/chromium/chrome/common/extensions/
H A Dupdate_manifest.cc137 std::vector<xmlNode*> updates = GetChildren(app_node, xml_namespace, local
139 if (updates.size() > 1) {
143 if (updates.empty()) {
147 xmlNode *updatecheck = updates[0];
/external/webrtc/src/modules/audio_processing/ns/
H A Dns_core.h72 int updates; member in struct:NSinst_t_
/external/chromium/chrome/browser/sync/sessions/
H A Dstatus_controller.cc160 // Returns the number of updates received from the sync server.
162 const ClientToServerResponse& updates = shared_.updates_response; local
163 if (updates.has_get_updates()) {
164 return updates.get_updates().entries().size();
/external/mesa3d/docs/
H A DMESA_ycbcr_texture.spec200 29 April 2003 - minor updates
202 19 September 2003 - a few more updates prior to submitting to extension
H A DMESA_resize_buffers.spec36 Mesa's glViewport command queries the current window size and updates
/external/webkit/Tools/Scripts/
H A Dupdate-webkit68 -q|--quiet pass -q to svn update for quiet updates
/external/chromium/chrome/browser/password_manager/
H A Dpassword_store_mac_unittest.cc545 // Test that adding duplicate item updates the existing item.
964 UpdateData updates[] = {
990 for (unsigned int i = 0; i < ARRAYSIZE_UNSAFE(updates); ++i) {
992 updates[i].form_data));
1006 for (unsigned int i = 0; i < ARRAYSIZE_UNSAFE(updates); ++i) {
1008 CreatePasswordFormFromData(updates[i].form_data));
1012 if (updates[i].password) {
1015 EXPECT_EQ(ASCIIToUTF16(updates[i].password),
1023 EXPECT_EQ(updates[i].password ? 1U : 0U, matching_items.size())
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/
H A DfeedPublish.emf.properties44 updateManagerURL=http://download.eclipse.org/tools/emf/updates/
H A DfeedPublish.uml2.properties44 updateManagerURL=http://download.eclipse.org/modeling/mdt/updates/?project=uml2-uml
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.operations_2.0.0.v20100510.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium/chrome/browser/extensions/
H A Dextension_management_browsertest.cc57 // Helper method that installs a low permission extension then updates
194 // Used for testing notifications sent during extension updates.
213 const std::set<std::string>& updates() { return updates_; } function in class:NotificationListener
300 ASSERT_TRUE(ContainsKey(notification_listener.updates(),
315 ASSERT_TRUE(ContainsKey(notification_listener.updates(),

Completed in 499 milliseconds

12