Searched refs:update (Results 276 - 300 of 1296) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/renderer/resources/extensions/automation/
H A Dautomation_node.js271 * the source AXTree. Each update contains node data that form a complete tree
272 * after applying the update.
302 unserialize: function(update) {
306 if (update.nodeIdToClear < 0) {
307 logging.WARNING('Bad nodeIdToClear: ' + update.nodeIdToClear);
309 'Bad update received on automation tree',
313 } else if (update.nodeIdToClear > 0) {
314 var nodeToClear = this.axNodeDataCache_[update.nodeIdToClear];
316 logging.WARNING('Bad nodeIdToClear: ' + update.nodeIdToClear +
319 'Bad update receive
[all...]
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
H A DOAEPEncoding.java64 hash.update(encodingParams, 0, encodingParams.length);
339 mgf1Hash.update(Z, zOff, zLen);
340 mgf1Hash.update(C, 0, C.length);
352 mgf1Hash.update(Z, zOff, zLen);
353 mgf1Hash.update(C, 0, C.length);
/external/chromium_org/pdf/
H A Dpaint_manager.cc143 // The best way for us to do the next update is to get a notification that
200 PaintAggregator::PaintUpdate update = aggregator_.GetPendingUpdate(); local
201 client_->OnPaint(update.paint_rects, &ready, &pending);
218 if (update.has_scroll)
219 graphics_.Scroll(update.scroll_rect, update.scroll_delta);
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Didl_types.py99 ancestors.update(new_ancestors)
214 cls.callback_functions.update(new_callback_functions)
218 cls.callback_interfaces.update(new_callback_interfaces)
222 cls.dictionaries.update(new_dictionaries)
226 cls.enums.update(new_enums)
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/
H A Dbuild_jsdoc_validator_jar.py35 sha.update(buf)
45 hasher.update('d ' + quoted_name + '\n')
49 hasher.update('r ' + quoted_name + ' ')
50 hasher.update(str(info.st_size) + ' ')
53 hasher.update(f_hash + '\n')
141 print '--no-rebuild: Do not rebuild jar, just update hashes'
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/armv6/
H A Dvp8_subtract_armv6.asm63 add r6, r6, r2, lsl #1 ; update diff pointer
118 add r1, r1, r3 ; update usrc pointer
119 add r5, r5, r12 ; update upred pointer
125 subs r4, r4, #1 ; update loop counter
163 add r2, r2, r3 ; update vsrc pointer
164 add r5, r5, r12 ; update vpred pointer
170 subs r4, r4, #1 ; update loop counter
254 add r1, r1, r2 ; update src pointer
255 add r3, r3, r12 ; update pred pointer
261 subs r4, r4, #1 ; update loo
[all...]
/external/libvpx/libvpx/vp8/encoder/arm/armv6/
H A Dvp8_subtract_armv6.asm63 add r6, r6, r2, lsl #1 ; update diff pointer
118 add r1, r1, r3 ; update usrc pointer
119 add r5, r5, r12 ; update upred pointer
125 subs r4, r4, #1 ; update loop counter
163 add r2, r2, r3 ; update vsrc pointer
164 add r5, r5, r12 ; update vpred pointer
170 subs r4, r4, #1 ; update loop counter
254 add r1, r1, r2 ; update src pointer
255 add r3, r3, r12 ; update pred pointer
261 subs r4, r4, #1 ; update loo
[all...]
/external/llvm/utils/lit/lit/
H A Drun.py91 self.consumer.update(test_index, test)
98 def update(self, test_index, test): member in class:ThreadResultsConsumer
101 self.display.update(test)
118 def update(self, test_index, test): member in class:MultiprocessResultsConsumer
145 self.display.update(test)
201 The display object will have its update method called with each test as
/external/openssl/crypto/evp/
H A Ddigest.c209 ctx->update = type->update;
250 return ctx->update(ctx,data,count);
333 out->update = in->update;
/external/chromium_org/chrome/browser/chromeos/display/
H A Ddisplay_preferences_unittest.cc86 // notifying the update to the system.
91 DictionaryPrefUpdate update(&local_state_, prefs::kSecondaryDisplays);
97 base::DictionaryValue* pref_data = update.Get();
126 DictionaryPrefUpdate update(&local_state_, prefs::kDisplayProperties);
129 base::DictionaryValue* pref_data = update.Get();
139 DictionaryPrefUpdate update(&local_state_, prefs::kDisplayProperties);
142 base::DictionaryValue* pref_data = update.Get();
150 DictionaryPrefUpdate update(local_state(), prefs::kDisplayRotationLock);
151 base::DictionaryValue* pref_data = update.Get();
670 ui::AccelerometerUpdate update; local
813 ui::AccelerometerUpdate update; local
843 ui::AccelerometerUpdate update; local
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRunnerController.java97 public void update() { method in class:RunnerController
102 update();
108 update();
/external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DCipher_ImplTest.java259 * Class under test for byte[] update(byte[])
268 c.update(b);
278 c.update(null);
282 assertNull(c.update(new byte[0]));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DPKCS12ParametersGenerator.java132 digest.update(D, 0, D.length);
133 digest.update(I, 0, I.length);
137 digest.update(A, 0, A.length);
/external/chromium_org/chrome/browser/android/
H A Dnew_tab_page_prefs.cc101 DictionaryPrefUpdate update(prefs, prefs::kNtpCollapsedForeignSessions);
103 update.Get()->SetBoolean(ConvertJavaStringToUTF8(env, session_tag), true);
105 update.Get()->Remove(ConvertJavaStringToUTF8(env, session_tag), NULL);
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_sync_service.cc260 false /* update */);
271 DictionaryPrefUpdate update(prefs_, prefs::kSupervisedUsers);
272 base::DictionaryValue* dict = update.Get();
295 DictionaryPrefUpdate update(prefs_, prefs::kSupervisedUsers);
296 bool success = update->RemoveWithoutPathExpansion(id, NULL);
320 DictionaryPrefUpdate update(prefs_, prefs::kSupervisedUsers);
321 base::DictionaryValue* dict = update.Get();
414 DictionaryPrefUpdate update(prefs_, prefs::kSupervisedUsers);
415 base::DictionaryValue* dict = update.Get();
475 DictionaryPrefUpdate update(prefs
[all...]
/external/chromium_org/components/data_reduction_proxy/browser/
H A Ddata_reduction_proxy_statistics_prefs_unittest.cc47 base::ListValue* update = statistics_prefs_->GetList(pref); local
48 update->Clear();
50 update->Insert(0, new base::StringValue(base::Int64ToString(0)));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
H A DLayerDetailsView.js98 this.update();
104 this.update();
133 update: function()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_state.c50 /* Atoms to update hardware state prior to emitting a clear or draw
62 /* Atoms to update hardware state prior to emitting a draw packet.
148 assert(atoms[i]->update);
152 debug_printf("update: %s\n", atoms[i]->name);
153 ret = atoms[i]->update( svga, *state );
176 ret = atoms[i]->update( svga, *state );
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_atom.c69 /* this must be done after the vertex program update */
197 !atom->update) {
203 atoms[i]->update( st );
223 atoms[i]->update( st );
/external/chromium_org/third_party/simplejson/
H A Dordered_dict.py28 self.update(*args, **kwds)
89 update = DictMixin.update variable in class:OrderedDict
/external/chromium_org/tools/deep_memory_profiler/lib/
H A Dsubcommand.py54 symbol_mapping_cache.update(
58 symbol_mapping_cache.update(
62 symbol_mapping_cache.update(
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dimage_adjust.js66 ImageEditor.Mode.Adjust.prototype.update = function(options) {
67 ImageEditor.Mode.prototype.update.apply(this, arguments);
187 this.update({histogram: this.getHistogram()});
/external/conscrypt/src/test/java/org/conscrypt/
H A DSignatureTest.java108 sig.update(DATA);
114 sig.update(DATA);
118 sig.update(DATA);
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state.c50 /* Atoms to update hardware state prior to emitting a clear or draw
62 /* Atoms to update hardware state prior to emitting a draw packet.
148 assert(atoms[i]->update);
152 debug_printf("update: %s\n", atoms[i]->name);
153 ret = atoms[i]->update( svga, *state );
176 ret = atoms[i]->update( svga, *state );

Completed in 3519 milliseconds

<<11121314151617181920>>