Searched defs:update (Results 201 - 225 of 441) sorted by relevance

1234567891011>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowRemoteViews.java104 viewUpdater.update(v);
115 final void update(View parent) { method in class:ShadowRemoteViews.ViewUpdater
/external/skia/src/utils/
H A DSkSHA1.cpp33 void SkSHA1::update(const uint8_t* input, size_t inputLength) { function in class:SkSHA1
75 this->update(PADDING, paddingLength);
77 // Append length (length before padding, will cause final update).
78 this->update(bits, 8);
/external/srtp/crypto/include/
H A Dauth.h84 (((a)->type)->update((a)->state, (buf), (len)))
126 auth_update_func update; member in struct:auth_type_t
/external/webp/src/enc/
H A Dtree.c492 const int update = (p0 != VP8CoeffsProba0[t][b][c][p]); local
493 if (VP8PutBit(bw, update, VP8CoeffsUpdateProba[t][b][c][p])) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
H A DIndexedDBViews.js63 this.update(database);
91 update: function(database)
135 this.update(objectStore, index);
257 update: function(objectStore, index)
/external/chromium_org/chrome/renderer/resources/
H A Doffline.js327 this.update();
373 this.horizon.update(0, 0, true);
374 this.tRex.update(0);
380 this.distanceMeter.update(0, Math.ceil(this.distanceRan));
456 update: function() {
480 this.horizon.update(0, this.currentSpeed, hasObstacles);
483 this.horizon.update(deltaTime, this.currentSpeed, hasObstacles);
505 var playAcheivementSound = this.distanceMeter.update(deltaTime,
514 this.tRex.update(deltaTime);
642 this.raqId = requestAnimationFrame(this.update
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DLongDigest.java70 public void update( method in class:LongDigest
84 public void update( method in class:LongDigest
94 update(in[inOff]);
117 update(in[inOff]);
134 update((byte)128);
138 update((byte)0);
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
H A DTestContentProvider.java92 public int update(Uri uri, ContentValues values, String where, method in class:TestContentProvider
/external/chromium_org/chrome/browser/chromeos/login/supervised/
H A Dsupervised_user_test_base.cc84 bool update) {
96 update ? syncer::SyncChange::ACTION_UPDATE
133 bool update) {
145 update ? syncer::SyncChange::ACTION_UPDATE
160 bool update) {
164 AddChange(data.GetSpecifics().managed_user_shared_setting(), update);
82 AddChange( const ::sync_pb::ManagedUserSpecifics& proto, bool update) argument
131 AddChange( const ::sync_pb::ManagedUserSharedSettingSpecifics& proto, bool update) argument
155 AddChange( const std::string& mu_id, const std::string& key, const base::Value& value, bool acknowledged, bool update) argument
/external/chromium_org/chrome/browser/extensions/api/runtime/
H A Dchrome_runtime_api_delegate.cc258 const Extension* update = service->GetPendingExtensionUpdate(extension_id); local
259 if (update) {
262 UpdateCheckResult(true, kUpdateFound, update->VersionString()));
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_store_x_unittest.cc183 bool CompareForms(const PasswordForm& a, const PasswordForm& b, bool update) { argument
184 // An update check doesn't care about the submit element.
185 if (!update && a.submit_element != b.submit_element)
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
H A Doptions.js85 cvox.OptionsPage.update();
93 cvox.OptionsPage.update();
111 cvox.OptionsPage.update = function() {
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dcontent_editable_extractor.js60 cvox.ContentEditableExtractor.prototype.update = function(element) {
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/managed_bookmarks/
H A Dbackground.js286 ManagedBookmarkTree.prototype.update = function(rootNodeId, currentPolicy) {
304 tree.update(policyToNodeId[policyName], policy[policyName]);
317 tree.update(policyToNodeId[policyName], changes[policyName].newValue);
347 chrome.bookmarks.update(id, {
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dchrome_web_view_experimental.js85 WebViewContextMenusImpl.prototype.update = function() {
92 { functions: ['create', 'remove', 'removeAll', 'update'] });
/external/chromium_org/components/dom_distiller/core/
H A Ddom_distiller_service_unittest.cc313 DomDistillerObserver::ArticleUpdate update; local
314 update.entry_id = entry_id;
315 update.update_type = DomDistillerObserver::ArticleUpdate::ADD;
316 expected_updates.push_back(update);
327 update.update_type = DomDistillerObserver::ArticleUpdate::REMOVE;
329 expected_updates.push_back(update);
H A Ddom_distiller_store_unittest.cc456 DomDistillerObserver::ArticleUpdate update; local
457 update.entry_id = GetSampleEntry(0).entry_id();
458 update.update_type = DomDistillerObserver::ArticleUpdate::ADD;
459 expected_updates.push_back(update);
465 update.entry_id = GetSampleEntry(1).entry_id();
466 update.update_type = DomDistillerObserver::ArticleUpdate::ADD;
467 expected_updates.push_back(update);
473 update.entry_id = GetSampleEntry(0).entry_id();
474 update.update_type = DomDistillerObserver::ArticleUpdate::REMOVE;
476 expected_updates.push_back(update);
[all...]
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_manager.cc27 ui::AXTreeUpdate update; local
28 update.nodes.push_back(node1);
30 update.nodes.push_back(node2);
32 update.nodes.push_back(node3);
34 update.nodes.push_back(node4);
36 update.nodes.push_back(node5);
38 update.nodes.push_back(node6);
40 update.nodes.push_back(node7);
42 update.nodes.push_back(node8);
44 update
114 ui::AXTreeUpdate update; local
371 ui::AXTreeUpdate update; local
[all...]
H A Dbrowser_accessibility_manager_android.cc97 ui::AXTreeUpdate update; local
98 update.nodes.push_back(empty_document);
99 return update;
/external/chromium_org/content/browser/media/
H A Dmedia_internals.cc227 void MediaInternals::SendUpdate(const base::string16& update) { argument
229 // TODO(dalecurtis): This is pretty silly since the update callbacks simply
233 &MediaInternals::SendUpdate, base::Unretained(this), update));
238 update_callbacks_[i].Run(update);
H A Dwebrtc_internals.cc138 // Append the update to the end of the log.
155 base::DictionaryValue update; local
156 update.SetInteger("pid", static_cast<int>(pid));
157 update.SetInteger("lid", lid);
158 update.MergeDictionary(log_entry);
160 SendUpdate("updatePeerConnection", &update);
327 base::DictionaryValue update; local
328 update.SetInteger("lid", lid);
329 update.SetInteger("pid", pid);
330 SendUpdate("removePeerConnection", &update);
354 base::DictionaryValue update; local
[all...]
/external/chromium_org/content/renderer/media/
H A Dwebcontentdecryptionmodulesession_impl.cc72 void WebContentDecryptionModuleSessionImpl::update(const uint8* response, function in class:content::WebContentDecryptionModuleSessionImpl
122 void WebContentDecryptionModuleSessionImpl::update( function in class:content::WebContentDecryptionModuleSessionImpl
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
H A Dsdk_update_main.py32 import command.update namespace
201 """update a bundle in the SDK to the latest version"""
211 args = [command.update.RECOMMENDED]
214 delegate = command.update.RealUpdateDelegate(USER_DATA_DIR,
216 command.update.Update(delegate, remote_manifest, local_manifest, args,
255 Note that if there is an update to a given bundle, reinstall will not
256 automatically update to the newest version.
267 delegate = command.update.RealUpdateDelegate(USER_DATA_DIR,
269 command.update.Reinstall(delegate, local_manifest, args)
346 """update th
[all...]
/external/chromium_org/sync/engine/
H A Dget_updates_processor.cc72 const sync_pb::SyncEntity& update = gu_response.entries(i); local
73 ModelType type = GetModelType(update);
75 NOTREACHED() << "Received update with invalid type.";
81 NOTREACHED() << "Received update for unexpected type "
86 it->second.push_back(&update);
H A Dmodel_type_sync_proxy_impl.cc209 // If we're being asked to apply an update to this entity, this overrides
256 const UpdateResponseData& update = *list_it; local
257 const std::string& client_tag_hash = update.client_tag_hash;
262 std::make_pair(client_tag_hash, new UpdateResponseData(update)));
263 } else if (lookup_it->second->response_version <= update.response_version) {
267 std::make_pair(client_tag_hash, new UpdateResponseData(update)));
269 // Received update is stale, do not overwrite existing.

Completed in 576 milliseconds

1234567891011>>