Searched refs:update (Results 251 - 275 of 1296) sorted by relevance

<<11121314151617181920>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DDSABase.java35 digest.update(b);
44 digest.update(b, off, len);
/external/chromium_org/build/android/gyp/util/
H A Dmd5_check.py40 md5.update(data)
73 md5.update(s)
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dcache_chain_object_store.py31 self._cache.update(mapping)
68 updates.update(result)
/external/chromium_org/content/browser/media/
H A Dwebrtc_internals_message_handler.cc80 base::string16 update = WebUI::GetJavascriptCall(command, args_vector); local
84 host->ExecuteJavaScript(update);
H A Dmedia_internals_proxy.cc72 void MediaInternalsProxy::OnUpdate(const base::string16& update) { argument
76 base::Bind(&MediaInternalsProxy::UpdateUIOnUIThread, this, update));
143 void MediaInternalsProxy::UpdateUIOnUIThread(const base::string16& update) { argument
147 handler_->OnUpdate(update);
154 // if an update is not already pending.
178 base::string16 update = WebUI::GetJavascriptCall(function, args_vector); local
179 UpdateUIOnUIThread(update);
/external/chromium_org/content/renderer/media/
H A Dwebcontentdecryptionmodulesession_impl.h41 virtual void update(const uint8* response, size_t response_length);
49 virtual void update(const uint8* response,
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Dv8_callback_interface.py75 includes.update(CALLBACK_INTERFACE_CPP_INCLUDES)
110 context.update(arguments_context(operation.arguments,
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dmake_element_factory.py63 self._outputs.update({
82 self._template_context.update({
/external/chromium_org/third_party/WebKit/Source/core/loader/appcache/
H A DApplicationCache.cpp75 void ApplicationCache::update(ExceptionState& exceptionState) function in class:blink::ApplicationCache
78 if (!cacheHost || !cacheHost->update())
79 exceptionState.throwDOMException(InvalidStateError, "there is no application cache to update.");
/external/chromium_org/third_party/WebKit/Source/core/timing/
H A DMemoryInfo.cpp67 update();
72 void update() function in class:blink::HeapSizeCache
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DWatchExpressionsSidebarPane.js79 this.section.update();
138 update: function(e)
244 this.update();
251 this.update();
271 this.update();
278 this.update();
406 update: function()
408 WebInspector.ObjectPropertyTreeElement.prototype.update.call(this);
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBCursor.idl44 [CallWith=ScriptState, RaisesException] IDBRequest update(any value);
/external/chromium_org/third_party/libsrtp/srtp/crypto/include/
H A Dauth.h86 (((a)->type)->update((a)->state, (buf), (len)))
128 auth_update_func update; member in struct:auth_type_t
/external/clang/test/SemaCXX/
H A Dconstexpr-turing.cpp30 constexpr Tape update(const Tape &old, bool write) { return Tape(old, write); } function
37 run(tm, move(update(tape, tm[state][tape.val].tape),
/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/chromium_org/chrome/browser/chromeos/login/users/
H A Dmulti_profile_user_controller.cc184 DictionaryPrefUpdate update(local_state_,
186 update->RemoveWithoutPathExpansion(user_email, NULL);
204 DictionaryPrefUpdate update(local_state_,
206 update->SetStringWithoutPathExpansion(user_email,
234 DictionaryPrefUpdate update(local_state_,
236 update->RemoveWithoutPathExpansion(user_email, NULL);
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositingLayerAssigner.cpp97 CompositingStateTransitionType update = NoCompositingStateChange; local
100 update = AllocateOwnCompositedLayerMapping;
104 update = RemoveOwnCompositedLayerMapping;
108 // We can't compute at this time whether the squashing layer update is a no-op,
110 update = PutInSquashingLayer;
112 update = RemoveFromSquashingLayer;
116 return update;
195 // If we've modified the collection of squashed layers, we must update
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Ddata.py192 self.lines.setdefault(filename, {}).update(file_data)
195 self.arcs.setdefault(filename, {}).update(file_data)
206 self.lines.setdefault(filename, {}).update(linenos)
215 self.arcs.setdefault(filename, {}).update(arcs)
240 hasher.update(self.executed_lines(filename))
241 hasher.update(self.executed_arcs(filename))
/external/chromium_org/third_party/polymer/components-chromium/paper-slider/
H A Dpaper-slider-extracted.js79 'min max step snaps': 'update'
83 this.update();
86 update: function() {
92 this.update();
/external/chromium_org/third_party/tlslite/tlslite/
H A Dtlsrecordlayer.py566 self._handshake_md5.update(compat26Str(b))
567 self._handshake_sha.update(compat26Str(b))
573 mac.update(compatHMAC(seqnumBytes))
574 mac.update(compatHMAC(bytearray([contentType])))
576 mac.update( compatHMAC( bytearray([len(b)//256] )))
577 mac.update( compatHMAC( bytearray([len(b)%256] )))
579 mac.update(compatHMAC( bytearray([self.version[0]] )))
580 mac.update(compatHMAC( bytearray([self.version[1]] )))
581 mac.update( compatHMAC( bytearray([len(b)//256] )))
582 mac.update( compatHMA
[all...]
/external/chromium_org/sync/syncable/
H A Ddirectory_backing_store.cc716 sql::Statement update(db_->GetUniqueStatement(update_sql.c_str()));
727 update.BindBlob(0, new_value_bytes.data(), new_value_bytes.length());
728 update.BindInt64(1, metahandle);
729 if (!update.Run())
731 update.Reset(true);
883 sql::Statement update(db_->GetUniqueStatement(
887 update.BindBlob(0, bookmark_model_id.data(), bookmark_model_id.size());
888 update.BindInt64(1, last_sync_timestamp);
889 update.BindBool(2, initial_sync_ended);
891 if (!update
[all...]
/external/chromium_org/ash/wm/maximize_mode/
H A Dmaximize_mode_controller.cc200 const ui::AccelerometerUpdate& update) {
208 update.has(ui::ACCELEROMETER_SOURCE_ATTACHED_KEYBOARD) ?
209 update.get(ui::ACCELEROMETER_SOURCE_ATTACHED_KEYBOARD).Length() :
211 float lid_magnitude = update.has(ui::ACCELEROMETER_SOURCE_SCREEN) ?
212 update.get(ui::ACCELEROMETER_SOURCE_SCREEN).Length() : 0.0f;
213 bool lid_stable = update.has(ui::ACCELEROMETER_SOURCE_SCREEN) &&
216 update.has(ui::ACCELEROMETER_SOURCE_ATTACHED_KEYBOARD) &&
224 update.get(ui::ACCELEROMETER_SOURCE_ATTACHED_KEYBOARD),
225 update.get(ui::ACCELEROMETER_SOURCE_SCREEN));
228 HandleScreenRotation(update
199 OnAccelerometerUpdated( const ui::AccelerometerUpdate& update) argument
[all...]
/external/qemu/android/skin/
H A Dcomposer.c271 * 'updated' initially contains the update region, in parent coordinates
356 skin_region_init_empty( v->update );
368 skin_region_reset( v->update );
379 skin_region_union( v->update, r );
386 if (v->space && !skin_region_is_empty(v->update)) {
387 SkinRegion update[1]; local
391 skin_region_copy(update, v->update);
393 skin_region_reset( v->update );
396 skin_plate_redraw( v->space, update, draw
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/js/
H A Dnetwork_status.js119 * After construction, update() has to be called!
171 update: function() {
195 update: function() {
271 update: function() {
272 Button.prototype.update.call(this);
352 button.update();
382 update: function() {
383 UnfoldingButton.prototype.update.call(this);
387 button.update();
509 button.update();
[all...]
/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...]

Completed in 4256 milliseconds

<<11121314151617181920>>