Searched defs:update (Results 176 - 200 of 441) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/markdown/
H A Dodict.py140 def update(self, dict_): member in class:OrderedDict
/external/chromium_org/third_party/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/chromium_org/tools/gyp/pylib/gyp/
H A Dordered_dict.py169 # Suppress 'OrderedDict.update: Method has no argument':
171 def update(*args, **kwds): member in class:OrderedDict
172 '''od.update(E, **F) -> None. Update od from dict/iterable E and F.
181 raise TypeError('update() takes at most 2 positional '
184 raise TypeError('update() takes at least 1 argument (0 given)')
202 __update = update # let subclasses override update without breaking __init__
/external/chromium_org/ui/accessibility/extensions/highcontrast/
H A Dhighcontrast.js32 function update() { function
36 window.setTimeout(update, 100);
72 update();
112 update();
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
H A Dprogress_center_panel.js93 * @param {ProgressCenterItem} item Item to be referred for the update.
97 ProgressCenterItemElement.prototype.update = function(item, animated) {
302 targetGroup.update(item);
313 itemElement.update(newItem, targetGroup.isAnimated(item.id));
394 this.closeView_.update(normalSummarizedItem,
404 this.closeView_.update(quietSummarizedItem,
414 this.closeView_.update(errorSummarizedItem, false);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTableTooltipHelper.java84 public void update(Property property, method in class:PropertyTableTooltipHelper
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDouble.java129 * @param update the new value
133 public final boolean compareAndSet(double expect, double update) { argument
136 doubleToRawLongBits(update));
151 * @param update the new value
154 public final boolean weakCompareAndSet(double expect, double update) { argument
157 doubleToRawLongBits(update));
/external/libnfc-nci/src/nfa/dm/
H A Dnfa_dm_main.c230 BOOLEAN update; local
245 update = FALSE;
367 update = TRUE;
380 update = TRUE;
384 update = TRUE;
391 update = TRUE;
396 if (update)
414 /* If any TVLs to update, or if the SetConfig was initiated by the application, then send the SET_CONFIG command */
/external/lldb/examples/summaries/cocoa/
H A DCFString.py59 self.update()
322 def update(self): member in class:CFStringSynthProvider
H A DNSDate.py66 self.update();
71 def update(self): member in class:NSTaggedDate_SummaryProvider
97 self.update()
99 def update(self): member in class:NSUntaggedDate_SummaryProvider
127 self.update()
129 def update(self): member in class:NSCalendarDate_SummaryProvider
155 self.update()
157 def update(self): member in class:NSTimeZoneClass_SummaryProvider
179 self.update()
181 def update(sel member in class:NSUnknownDate_SummaryProvider
[all...]
/external/lldb/examples/synthetic/
H A Dgnu_libstdcpp.py120 def update(self): member in class:StdListSynthProvider
213 def update(self): member in class:StdVectorSynthProvider
264 def update(self): member in class:StdMapSynthProvider
/external/llvm/lib/CodeGen/
H A DInterferenceCache.cpp80 /// revalidate - LIU contents have changed, update tags.
123 void InterferenceCache::Entry::update(unsigned MBBNum) { function in class:InterferenceCache::Entry
/external/llvm/lib/Support/
H A DMD5.cpp73 /// \brief This processes one or more 64-byte data blocks, but does NOT update
187 void MD5::update(ArrayRef<uint8_t> Data) { function in class:llvm::MD5
225 void MD5::update(StringRef Str) { function in class:llvm::MD5
227 update(SVal);
/external/llvm/utils/lit/lit/
H A DProgressBar.py182 def update(self, percent, message): member in class:SimpleProgressBar
244 self.update(0, '')
246 def update(self, percent, message): member in class:ProgressBar
287 p.update(i/100., str(i))
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/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...]
H A Dcomposer.h94 SkinRegion update[1]; member in struct:SkinViewport
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestwin.c25 SDL_Rect dest, update; local
120 update = dest;
121 if ( SDL_BlitSurface(picture, NULL, screen, &update) < 0 ) {
128 SDL_UpdateRects(screen, 1, &update);
/external/replicaisland/src/com/replica/replicaisland/
H A DDoorAnimationComponent.java137 public void update(float timeDelta, BaseObject parent) { method in class:DoorAnimationComponent
H A DFadeDrawableComponent.java62 public void update(float timeDelta, BaseObject parent) { method in class:FadeDrawableComponent
H A DGameObjectManager.java75 public void update(float timeDelta, BaseObject parent) { method in class:GameObjectManager
92 gameObject.update(timeDelta, this);
121 gameObject.update(timeDelta, this);
H A DLauncherComponent.java62 public void update(float timeDelta, BaseObject parent) { method in class:LauncherComponent
H A DLifetimeComponent.java78 public void update(float timeDelta, BaseObject parent) { method in class:LifetimeComponent
H A DPatrolComponent.java69 public void update(float timeDelta, BaseObject parent) { method in class:PatrolComponent
H A DPopOutComponent.java61 public void update(float timeDelta, BaseObject parent) { method in class:PopOutComponent

Completed in 4214 milliseconds

1234567891011>>