/external/chromium/chrome/browser/sync/engine/ |
D | store_timestamps_command.cc | 27 const GetUpdatesResponse& updates = in ExecuteImpl() local 36 for (int i = 0; i < updates.new_progress_marker_size(); ++i) { in ExecuteImpl() 39 updates.new_progress_marker(i).data_type_id()); in ExecuteImpl() 45 dir->SetDownloadProgress(model, updates.new_progress_marker(i)); in ExecuteImpl() 48 updates.changes_remaining() == 0); in ExecuteImpl() 55 if (updates.has_changes_remaining()) { in ExecuteImpl() 56 int64 changes_left = updates.changes_remaining(); in ExecuteImpl()
|
D | verify_updates_command_unittest.cc | 60 void AddUpdate(GetUpdatesResponse* updates, in AddUpdate() argument 63 sync_pb::SyncEntity* e = updates->add_entries(); in AddUpdate() 83 GetUpdatesResponse* updates = session()->status_controller()-> in TEST_F() local 85 AddUpdate(updates, "b1", root, syncable::BOOKMARKS); in TEST_F() 86 AddUpdate(updates, "b2", root, syncable::BOOKMARKS); in TEST_F() 87 AddUpdate(updates, "p1", root, syncable::PREFERENCES); in TEST_F() 88 AddUpdate(updates, "a1", root, syncable::AUTOFILL); in TEST_F()
|
D | verify_updates_command.cc | 40 const GetUpdatesResponse& updates = status->updates_response().get_updates(); in ModelChangingExecuteImpl() local 41 int update_count = updates.entries().size(); in ModelChangingExecuteImpl() 46 *reinterpret_cast<const SyncEntity *>(&(updates.entries(i))); in ModelChangingExecuteImpl()
|
D | process_updates_command.cc | 29 const GetUpdatesResponse& updates = in ModelNeutralExecuteImpl() local 31 const int update_count = updates.entries_size(); in ModelNeutralExecuteImpl()
|
/external/mesa3d/docs/ |
D | RELNOTES-6.4 | 36 Glide (3dfx Voodoo1/2) requires updates 37 SVGA requires updates 38 DJGPP requires updates 39 GGI requires updates 40 BeOS requires updates 41 Allegro requires updates 42 D3D requires updates 44 The drivers which require updates mostly need to be updated to work
|
D | MESA_ycbcr_texture.spec | 200 29 April 2003 - minor updates 202 19 September 2003 - a few more updates prior to submitting to extension
|
/external/webkit/Source/WebKit/efl/ewk/ |
D | ewk_tiled_matrix.c | 46 Eina_List *updates; member 76 if (t->updates || t->stats.full_update) in _ewk_tile_matrix_cell_free() 77 tm->updates = eina_list_remove(tm->updates, t); in _ewk_tile_matrix_cell_free() 112 if (t->updates || t->stats.full_update) in _ewk_tile_matrix_tile_free() 113 tm->updates = eina_list_remove(tm->updates, t); in _ewk_tile_matrix_tile_free() 460 tm->updates = eina_list_append(tm->updates, t); in ewk_tile_matrix_tile_new() 525 if (!t->updates && !t->stats.full_update) in ewk_tile_matrix_tile_update() 526 tm->updates = eina_list_append(tm->updates, t); in ewk_tile_matrix_tile_update() 556 if (!t->updates && !t->stats.full_update) in ewk_tile_matrix_tile_update_full() 557 tm->updates = eina_list_append(tm->updates, t); in ewk_tile_matrix_tile_update_full() [all …]
|
D | ewk_tiled_model.c | 281 t->updates = NULL; in ewk_tile_new() 337 if (t->updates) in ewk_tile_free() 338 eina_tiler_free(t->updates); in ewk_tile_free() 383 if (t->updates) { in ewk_tile_update_full() 384 eina_tiler_free(t->updates); in ewk_tile_update_full() 385 t->updates = NULL; in ewk_tile_update_full() 403 if (t->updates) { in ewk_tile_update_area() 404 eina_tiler_free(t->updates); in ewk_tile_update_area() 405 t->updates = NULL; in ewk_tile_update_area() 410 if (!t->updates) { in ewk_tile_update_area() [all …]
|
/external/valgrind/main/exp-ptrcheck/tests/ |
D | bad_percentify.stdout.exp | 1 translate: fast SP updates identified: 0 (--% ) 2 translate: generic_known SP updates identified: 0 (--% ) 3 translate: generic_unknown SP updates identified: 0 (--% )
|
/external/chromium/base/files/ |
D | file_path_watcher_mac.cc | 315 EventVector updates(valid); in UpdateWatches() local 316 int count = HANDLE_EINTR(kevent(kqueue_, &events_[0], valid, &updates[0], in UpdateWatches() 318 if (!AreKeventValuesValid(&updates[0], count)) { in UpdateWatches() 346 EventVector updates(events_.size()); in OnFileCanReadWithoutBlocking() local 348 int count = HANDLE_EINTR(kevent(kqueue_, NULL, 0, &updates[0], updates.size(), in OnFileCanReadWithoutBlocking() 353 if (!AreKeventValuesValid(&updates[0], count)) { in OnFileCanReadWithoutBlocking() 368 event->ident == updates[i].ident) { in OnFileCanReadWithoutBlocking() 387 if ((updates[i].fflags & NOTE_ATTRIB) && !target_file_affected) { in OnFileCanReadWithoutBlocking() 390 if (updates[i].fflags & (NOTE_DELETE | NOTE_REVOKE | NOTE_RENAME)) { in OnFileCanReadWithoutBlocking() 393 if ((updates[i].fflags & NOTE_WRITE) && !target_file_affected) { in OnFileCanReadWithoutBlocking()
|
/external/chromium/chrome/common/extensions/ |
D | update_manifest.cc | 137 std::vector<xmlNode*> updates = GetChildren(app_node, xml_namespace, in ParseSingleAppTag() local 139 if (updates.size() > 1) { in ParseSingleAppTag() 143 if (updates.empty()) { in ParseSingleAppTag() 147 xmlNode *updatecheck = updates[0]; in ParseSingleAppTag()
|
/external/strace/ |
D | NEWS | 48 * Bug fixes, Linux ioctl updates. 107 * The usual Linux syscall updates (includes 32bit uid/gid support), 111 * UnixWare and Solaris updates 118 * The usual Linux syscall updates 124 * Lots of Linux updates again 138 * IRIX64 updates 139 * Solaris updates
|
/external/libffi/ |
D | libtool-version | 3 # a separate file so that version updates don't involve re-running 12 # release of your software. More frequent updates are unnecessary,
|
/external/chromium/chrome/browser/sync/sessions/ |
D | status_controller.cc | 162 const ClientToServerResponse& updates = shared_.updates_response; in CountUpdates() local 163 if (updates.has_get_updates()) { in CountUpdates() 164 return updates.get_updates().entries().size(); in CountUpdates()
|
/external/quake/quake/src/QW/client/ |
D | docs.txt | 98 "spawn" sends all dynamically changing state (fullclient updates, lightmaps, frags) 101 FIXME: 32 clients could be up to 16k in updates, which overflows the 8k packet size 111 The client_t->state is set to cs_spawned, so normal datagram updates begin
|
/external/v8/ |
D | V8_MERGE_REVISION | 3 We have synced V8 past the last revision used in Chrome 12, as we continue to take 3.2 updates.
|
/external/chromium/chrome/browser/password_manager/ |
D | password_store_mac_unittest.cc | 964 UpdateData updates[] = { in TEST_F() local 990 for (unsigned int i = 0; i < ARRAYSIZE_UNSAFE(updates); ++i) { in TEST_F() 992 updates[i].form_data)); in TEST_F() 1006 for (unsigned int i = 0; i < ARRAYSIZE_UNSAFE(updates); ++i) { in TEST_F() 1008 CreatePasswordFormFromData(updates[i].form_data)); in TEST_F() 1012 if (updates[i].password) { in TEST_F() 1015 EXPECT_EQ(ASCIIToUTF16(updates[i].password), in TEST_F() 1023 EXPECT_EQ(updates[i].password ? 1U : 0U, matching_items.size()) in TEST_F()
|
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/ |
D | updates-expected.txt | 1 Tests that updates to the orientation causes new events to fire.
|
/external/chromium/chrome/browser/extensions/ |
D | extension_updater_unittest.cc | 563 UpdateManifest::Results updates; in TestDetermineUpdates() local 565 updates); in TestDetermineUpdates() 577 "1.1", "http://localhost/e1_1.1.crx", &updates); in TestDetermineUpdates() 582 tmp[1]->VersionString(), "http://localhost/e2_2.0.crx", &updates); in TestDetermineUpdates() 583 updateable = updater.DetermineUpdates(fetch_data, updates); in TestDetermineUpdates() 603 UpdateManifest::Results updates; in TestDetermineUpdatesPending() local 611 "1.1", "http://localhost/e1_1.1.crx", &updates); in TestDetermineUpdatesPending() 614 updater.DetermineUpdates(fetch_data, updates); in TestDetermineUpdatesPending()
|
D | extension_management_browsertest.cc | 213 const std::set<std::string>& updates() { return updates_; } in updates() function in NotificationListener 300 ASSERT_TRUE(ContainsKey(notification_listener.updates(), in IN_PROC_BROWSER_TEST_F() 315 ASSERT_TRUE(ContainsKey(notification_listener.updates(), in IN_PROC_BROWSER_TEST_F()
|
/external/llvm/test/CodeGen/X86/ |
D | anyext.ll | 3 ; Use movzbl to avoid partial-register updates.
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | about_window_controller.mm | 67 // Launches a check for available updates. 71 // updates are possible and promotion is desired or required. 195 // updates aren't possible. 205 // check for updates or an update installation attempt, set the status 242 // Show it following a promotion because updates should be possible 251 // thread's loop doesn't spin, meaning that animations and other updates 318 // updates, save the current frame, let GTMUILocalizerAndLayoutTweaker do 455 // Nothing actually failed, but updates aren't possible. The throbber 553 // Nothing actually failed, but updates aren't possible. The throbber
|
/external/webkit/LayoutTests/fast/dom/Geolocation/ |
D | watch-expected.txt | 1 Tests that watchPosition correctly reports position updates and errors from the Geolocation service.
|
/external/qemu/docs/ |
D | ANDROID-FRAMEBUFFER.TXT | 27 compute the bounding rectangle of pixel updates since the last call, and 50 foreach up in updates:
|
/external/webrtc/src/modules/audio_processing/ns/main/source/ |
D | ns_core.h | 72 int updates; member
|