/external/chromium_org/third_party/WebKit/Source/web/tests/ |
D | PaintAggregatorTest.cpp | 54 PaintAggregator::PendingUpdate update; in TEST() local 55 greg.popPendingUpdate(&update); in TEST() 57 EXPECT_TRUE(update.scrollRect.isEmpty()); in TEST() 58 ASSERT_EQ(1U, update.paintRects.size()); in TEST() 60 EXPECT_EQ(rect, update.paintRects[0]); in TEST() 76 PaintAggregator::PendingUpdate update; in TEST() local 77 greg.popPendingUpdate(&update); in TEST() 79 EXPECT_TRUE(update.scrollRect.isEmpty()); in TEST() 80 EXPECT_EQ(2U, update.paintRects.size()); in TEST() 82 EXPECT_EQ(expectedBounds, update.calculatePaintBounds()); in TEST() [all …]
|
/external/chromium_org/ui/accessibility/ |
D | ax_tree_unittest.cc | 91 AXTreeUpdate update; in TEST() local 92 serializer.SerializeChanges(src_tree.GetRoot(), &update); in TEST() 95 ASSERT_TRUE(dst_tree.Unserialize(update)); in TEST() 143 AXTreeUpdate update; in TEST() local 144 update.nodes.push_back(list); in TEST() 145 update.nodes.push_back(list_item_2); in TEST() 146 update.nodes.push_back(list_item_3); in TEST() 147 update.nodes.push_back(button); in TEST() 154 update.ToString()); in TEST() 168 AXTreeUpdate update; in TEST() local [all …]
|
D | ax_tree_serializer_unittest.cc | 86 AXTreeUpdate update; in TEST_F() local 87 serializer_->SerializeChanges(tree1_->GetFromId(1), &update); in TEST_F() 91 EXPECT_EQ(0, update.node_id_to_clear); in TEST_F() 92 ASSERT_EQ(static_cast<size_t>(2), update.nodes.size()); in TEST_F() 93 EXPECT_EQ(1, update.nodes[0].id); in TEST_F() 94 EXPECT_EQ(4, update.nodes[1].id); in TEST_F() 123 AXTreeUpdate update; in TEST_F() local 124 serializer_->SerializeChanges(tree1_->GetFromId(4), &update); in TEST_F() 129 EXPECT_EQ(1, update.node_id_to_clear); in TEST_F() 130 ASSERT_EQ(static_cast<size_t>(4), update.nodes.size()); in TEST_F() [all …]
|
D | tree_generator.cc | 44 AXTreeUpdate update; in BuildUniqueTree() local 45 update.nodes.resize(node_count_); in BuildUniqueTree() 46 update.nodes[0].id = permuted[0]; in BuildUniqueTree() 47 update.nodes[0].role = AX_ROLE_ROOT_WEB_AREA; in BuildUniqueTree() 48 update.nodes[0].state = AX_STATE_NONE; in BuildUniqueTree() 49 update.nodes[0].child_ids.push_back(permuted[1]); in BuildUniqueTree() 50 update.nodes[1].id = permuted[1]; in BuildUniqueTree() 51 update.nodes[1].state = AX_STATE_NONE; in BuildUniqueTree() 56 update.nodes[i].id = permuted[i]; in BuildUniqueTree() 57 update.nodes[i].state = AX_STATE_NONE; in BuildUniqueTree() [all …]
|
/external/chromium_org/chrome/browser/ui/webui/help/ |
D | help_browsertest.js | 35 var update = $('request-update'); 40 expectTrue(!cr.isChromeOS || !update.hidden && !update.disabled); 45 expectTrue(!cr.isChromeOS || update.hidden); 50 expectTrue(!cr.isChromeOS || update.hidden); 55 expectTrue(!cr.isChromeOS || update.hidden); 65 var update = $('request-update'); 69 expectTrue(!update.hidden && !update.disabled); 71 update.click(); 72 expectTrue(!update.hidden && update.disabled); 77 expectTrue(!update.hidden && update.disabled); [all …]
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | update.test | 14 # $Id: update.test,v 1.19 2008/04/10 18:44:36 drh Exp $ 19 # Try to update an non-existent table 21 do_test update-1.1 { 26 # Try to update a read-only table 28 do_test update-2.1 { 36 do_test update-3.1 { 47 do_test update-3.2 { 51 do_test update-3.3 { 55 do_test update-3.4 { 62 do_test update-3.5 { [all …]
|
D | lastinsert.test | 39 # LIRID unchanged after an update on a table 42 update t1 set k=4 where k=2; 88 update t2 set k=k+10, val2=100+last_insert_rowid(); 89 update t2 set val3=1000+last_insert_rowid(); 110 # LIRID unchanged by update within context of after insert trigger 118 # 3.x - tests with after update trigger 120 # LIRID not changed after an update onto a table containing an after trigger 125 create trigger r1 after update on t1 for each row begin 127 update t2 set k=k+10, val2=100+last_insert_rowid(); 128 update t2 set val3=1000+last_insert_rowid(); [all …]
|
/external/chromium_org/sync/engine/ |
D | syncer_util_unittest.cc | 47 update.set_id_string("I"); in InitUpdate() 48 update.set_parent_id_string("P"); in InitUpdate() 49 update.set_version(10); in InitUpdate() 50 update.set_mtime(100); in InitUpdate() 51 update.set_ctime(100); in InitUpdate() 52 update.set_deleted(false); in InitUpdate() 53 update.mutable_specifics()->mutable_bookmark()->set_title("Chrome"); in InitUpdate() 54 update.mutable_specifics()->mutable_bookmark()-> in InitUpdate() 59 update.set_originator_cache_guid("CacheGUID"); in InitSuffixIngredients() 60 update.set_originator_client_item_id("OrigID"); in InitSuffixIngredients() [all …]
|
D | syncer_util.cc | 80 const sync_pb::SyncEntity& update) { in FindLocalIdToUpdate() argument 87 const syncable::Id& update_id = SyncableIdFromProto(update.id_string()); in FindLocalIdToUpdate() 89 if (update.has_client_defined_unique_tag() && in FindLocalIdToUpdate() 90 !update.client_defined_unique_tag().empty()) { in FindLocalIdToUpdate() 109 update.client_defined_unique_tag()); in FindLocalIdToUpdate() 142 } else if (update.has_originator_cache_guid() && in FindLocalIdToUpdate() 143 update.originator_cache_guid() == client_id) { in FindLocalIdToUpdate() 163 update.originator_client_item_id()); in FindLocalIdToUpdate() 171 int64 new_version = update.version(); in FindLocalIdToUpdate() 280 std::string GetUniqueBookmarkTagFromUpdate(const sync_pb::SyncEntity& update) { in GetUniqueBookmarkTagFromUpdate() argument [all …]
|
D | process_updates_util.cc | 49 const sync_pb::SyncEntity &update) { in UpdateContainsNewVersion() argument 52 SyncableIdFromProto(update.id_string())); in UpdateContainsNewVersion() 56 if (!existing_entry.good() && update.deleted()) { in UpdateContainsNewVersion() 68 update.deleted()) { in UpdateContainsNewVersion() 76 return existing_version < update.version(); in UpdateContainsNewVersion() 178 const sync_pb::SyncEntity& update, in ProcessUpdate() argument 181 const syncable::Id& server_id = SyncableIdFromProto(update.id_string()); in ProcessUpdate() 182 const std::string name = SyncerProtoUtil::NameFromSyncEntity(update); in ProcessUpdate() 186 syncable::Id local_id = FindLocalIdToUpdate(trans, update); in ProcessUpdate() 201 if (!ReverifyEntry(trans, update, &target_entry)) { in ProcessUpdate() [all …]
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
D | oobe_screen_update.css | 6 #update { 11 #update #update-screen-curtain { 16 #update #update-checking-progress { 23 #update #update-screen-curtain { 27 #update-screen-main { 33 #update #update-cancel-hint { 40 #update #update-upper-label { 44 #update #checking-updates-label { 48 #update #update-bottom-label { 54 #update progress { [all …]
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.update.configurator_3.3.100.v20100512.jar | ... org/
org/eclipse/
org/eclipse/update/
org/eclipse/update/configurator/
org ... |
/external/smack/src/com/novell/sasl/client/ |
D | DigestMD5SaslClient.java | 445 md.update(userName.getBytes("UTF-8")); in DigestCalcHA1() 446 md.update(":".getBytes("UTF-8")); in DigestCalcHA1() 447 md.update(realm.getBytes("UTF-8")); in DigestCalcHA1() 448 md.update(":".getBytes("UTF-8")); in DigestCalcHA1() 449 md.update(password.getBytes("UTF-8")); in DigestCalcHA1() 454 md.update(hash); in DigestCalcHA1() 455 md.update(":".getBytes("UTF-8")); in DigestCalcHA1() 456 md.update(nonce.getBytes("UTF-8")); in DigestCalcHA1() 457 md.update(":".getBytes("UTF-8")); in DigestCalcHA1() 458 md.update(clientNonce.getBytes("UTF-8")); in DigestCalcHA1() [all …]
|
/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/ |
D | DigestMD5SaslClient.java | 445 md.update(userName.getBytes("UTF-8")); in DigestCalcHA1() 446 md.update(":".getBytes("UTF-8")); in DigestCalcHA1() 447 md.update(realm.getBytes("UTF-8")); in DigestCalcHA1() 448 md.update(":".getBytes("UTF-8")); in DigestCalcHA1() 449 md.update(password.getBytes("UTF-8")); in DigestCalcHA1() 454 md.update(hash); in DigestCalcHA1() 455 md.update(":".getBytes("UTF-8")); in DigestCalcHA1() 456 md.update(nonce.getBytes("UTF-8")); in DigestCalcHA1() 457 md.update(":".getBytes("UTF-8")); in DigestCalcHA1() 458 md.update(clientNonce.getBytes("UTF-8")); in DigestCalcHA1() [all …]
|
/external/chromium_org/content/browser/appcache/ |
D | appcache_update_job_unittest.cc | 314 AppCacheUpdateJob* update) { in TriggerAdditionalUpdates() argument 316 update_ = update; in TriggerAdditionalUpdates() 629 AppCacheUpdateJob* update = in StartCacheAttemptTest() local 631 group_->update_job_ = update; in StartCacheAttemptTest() 636 update->StartUpdate(&host, GURL()); in StartCacheAttemptTest() 639 EXPECT_EQ(AppCacheUpdateJob::CACHE_ATTEMPT, update->update_type_); in StartCacheAttemptTest() 640 EXPECT_EQ(AppCacheUpdateJob::FETCH_MANIFEST, update->internal_state_); in StartCacheAttemptTest() 652 delete update; in StartCacheAttemptTest() 684 AppCacheUpdateJob* update = in StartUpgradeAttemptTest() local 686 group_->update_job_ = update; in StartUpgradeAttemptTest() [all …]
|
/external/chromium_org/content/renderer/accessibility/ |
D | renderer_accessibility_browsertest.cc | 71 return event.update.nodes.size(); in CountAccessibilityNodesSentToBrowser() 114 EXPECT_EQ(event.update.nodes.size(), 2U); in TEST_F() 115 EXPECT_EQ(event.update.nodes[0].id, 1); in TEST_F() 116 EXPECT_EQ(event.update.nodes[0].role, in TEST_F() 118 EXPECT_EQ(event.update.nodes[0].state, in TEST_F() 122 EXPECT_EQ(event.update.nodes[0].child_ids.size(), 1U); in TEST_F() 135 EXPECT_EQ(event.update.nodes[0].id, 1); in TEST_F() 136 EXPECT_EQ(event.update.nodes[0].role, in TEST_F() 138 EXPECT_EQ(event.update.nodes[0].state, in TEST_F() 141 EXPECT_EQ(event.update.nodes[0].child_ids.size(), 1U); in TEST_F() [all …]
|
/external/chromium_org/content/browser/resources/media/ |
D | main.js | 65 updates.forEach(function(update) { argument 66 var id = update.source.id; 70 switch (eventPhases[update.phase] + '.' + eventTypes[update.type]) { 72 var key = update.params.key; 85 cacheEntries[id].readBytes(update.params.offset, 86 update.params.buff_len); 91 cacheEntries[id].writeBytes(update.params.offset, 92 update.params.buff_len); 97 requrestURLs[update.source.id] = update.params.url; 103 update.params.headers); [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/animation/css/ |
D | CSSAnimations.cpp | 226 OwnPtrWillBeRawPtr<CSSAnimationUpdate> update = adoptPtrWillBeNoop(new CSSAnimationUpdate()); in calculateUpdate() local 227 calculateAnimationUpdate(update.get(), animatingElement, element, style, parentStyle, resolver); in calculateUpdate() 228 …calculateAnimationActiveInterpolations(update.get(), animatingElement, element.document().timeline… in calculateUpdate() 229 calculateTransitionUpdate(update.get(), animatingElement, style); in calculateUpdate() 230 …calculateTransitionActiveInterpolations(update.get(), animatingElement, element.document().timelin… in calculateUpdate() 231 return update->isEmpty() ? nullptr : update.release(); in calculateUpdate() 234 void CSSAnimations::calculateAnimationUpdate(CSSAnimationUpdate* update, const Element* animatingEl… in calculateAnimationUpdate() argument 271 update->toggleAnimationPaused(animationName); in calculateAnimationUpdate() 284 …update->startAnimation(animationName, InertAnimation::create(AnimatableValueKeyframeEffectModel::c… in calculateAnimationUpdate() 292 update->cancelAnimation(*iter, *cssAnimations->m_animations.get(*iter)); in calculateAnimationUpdate() [all …]
|
/external/chromium_org/cc/resources/ |
D | resource_update.cc | 17 ResourceUpdate update; in Create() local 18 update.texture = resource; in Create() 19 update.bitmap = bitmap; in Create() 20 update.content_rect = content_rect; in Create() 21 update.source_rect = source_rect; in Create() 22 update.dest_offset = dest_offset; in Create() 23 return update; in Create()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
D | misc.py | 91 def update(self, v): member in Hasher 93 self.md5.update(to_bytes(str(type(v)))) 95 self.md5.update(to_bytes(v)) 97 self.update(str(v)) 100 self.update(e) 104 self.update(k) 105 self.update(v[k]) 113 self.update(k) 114 self.update(a)
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
D | mock_file_system.py | 32 for update in updates: 33 mock_file_system.Update(update) 48 update = self._GetMostRecentUpdate(path) 49 if update is not None: 50 result[path] = update 62 for update in reversed(self._updates): 64 return update.ReadSingle(path).Get() 132 def Update(self, update): argument 133 self._updates.append(TestFileSystem(update)) 134 for path in _List(update).iterkeys():
|
/external/tcpdump/tests/ |
D | babel1.out | 3 …:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (110) update/prefix/id nh update update/prefix/id update… 10 …::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (52) update/prefix/id update/prefix update/pr… 17 IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (28) update/prefix/id 22 IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (28) update/prefix/id
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/ |
D | HMac.java | 125 digest.update(key, 0, keyLength); in init() 149 ((Digest)opadState).update(outputBuf, 0, blockLength); in init() 152 digest.update(inputPad, 0, inputPad.length); in init() 165 public void update( in update() method in HMac 168 digest.update(in); in update() 171 public void update( in update() method in HMac 176 digest.update(in, inOff, len); in update() 188 digest.update(outputBuf, blockLength, digest.getDigestSize()); in doFinal() 192 digest.update(outputBuf, 0, outputBuf.length); in doFinal() 208 digest.update(inputPad, 0, inputPad.length); in doFinal() [all …]
|
/external/chromium_org/build/ |
D | install-build-deps-android.sh | 34 sudo apt-get update 65 if ! sudo update-java-alternatives -s java-1.7.0-openjdk-amd64 \ 66 >& "${TEMPDIR}"/update-java-alternatives.out 69 if grep 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out >& \ 74 grep 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out 77 if grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out \ 82 grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out
|
/external/chromium_org/chrome/browser/prefs/ |
D | pref_model_associator_unittest.cc | 101 ListPrefUpdate update(pref_service_, prefs::kURLsToRestoreOnStartup); in TEST_F() local 102 base::ListValue* local_list_value = update.Get(); in TEST_F() 120 ListPrefUpdate update(pref_service_, prefs::kURLsToRestoreOnStartup); in TEST_F() local 121 base::ListValue* local_list_value = update.Get(); in TEST_F() 138 ListPrefUpdate update(pref_service_, prefs::kURLsToRestoreOnStartup); in TEST_F() local 139 base::ListValue* local_list_value = update.Get(); in TEST_F() 161 ListPrefUpdate update(pref_service_, prefs::kURLsToRestoreOnStartup); in TEST_F() local 162 base::ListValue* local_list_value = update.Get(); in TEST_F() 184 ListPrefUpdate update(pref_service_, prefs::kURLsToRestoreOnStartup); in TEST_F() local 185 base::ListValue* local_list_value = update.Get(); in TEST_F() [all …]
|