HomeSort by relevance Sort by last modified time
    Searched defs:update (Results 601 - 625 of 1241) sorted by null

<<21222324252627282930>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
collections.py 70 link_prev[1] = link_next # update link_prev[NEXT]
71 link_next[0] = link_prev # update link_next[PREV]
126 update = MutableMapping.update variable in class:OrderedDict
128 __update = update # let subclasses override update without breaking __init__
399 >>> for elem in 'shazam': # update counts from an iterable
408 >>> c.update(d) # add in the second counter
444 self.update(iterable, **kwds)
495 def update(self, iterable=None, **kwds) member in class:Counter
    [all...]
sets.py 148 result._data.update(self._data)
342 # The main loop for update() and the subclass __init__() methods.
345 # Use the fast update() method when a dictionary is available.
347 data.update(iterable._data)
429 """Update a set with the union of itself and another."""
431 self._data.update(other._data)
435 """Update a set with the union of itself and another."""
439 """Update a set with the intersection of itself and another."""
445 """Update a set with the intersection of itself and another."""
452 """Update a set with the symmetric difference of itself and another.""
489 def update(self, iterable): member in class:Set
    [all...]
trace.py 243 self.update(self.__class__(counts, calledfuncs, callers))
248 def update(self, other): member in class:CoverageResults
412 linenos.update(find_lines(c, strs))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 131 self.update()
137 self.update()
162 def update(self): member in class:TreeNode
164 self.parent.update()
168 self.canvas.update()
473 node.update()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Finder_items.py 145 def update(self, _object, _attributes={}, **_arguments): member in class:Finder_items_Events
146 """update: Update the display of the specified object(s) to match their on-disk representation
147 Required argument: the item to update
148 Keyword argument necessity: only update if necessary (i.e. a finder window is open). default is false
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.6/
printers.py 602 self.update ()
607 def update (self): member in class:Tr1HashtableIterator
626 self.update ()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_weakrefset.py 50 self.update(data)
116 def update(self, other): member in class:WeakSet
123 self.update(other)
collections.py 70 link_prev[1] = link_next # update link_prev[NEXT]
71 link_next[0] = link_prev # update link_next[PREV]
126 update = MutableMapping.update variable in class:OrderedDict
128 __update = update # let subclasses override update without breaking __init__
399 >>> for elem in 'shazam': # update counts from an iterable
408 >>> c.update(d) # add in the second counter
444 self.update(iterable, **kwds)
495 def update(self, iterable=None, **kwds) member in class:Counter
    [all...]
sets.py 148 result._data.update(self._data)
342 # The main loop for update() and the subclass __init__() methods.
345 # Use the fast update() method when a dictionary is available.
347 data.update(iterable._data)
429 """Update a set with the union of itself and another."""
431 self._data.update(other._data)
435 """Update a set with the union of itself and another."""
439 """Update a set with the intersection of itself and another."""
445 """Update a set with the intersection of itself and another."""
452 """Update a set with the symmetric difference of itself and another.""
489 def update(self, iterable): member in class:Set
    [all...]
trace.py 243 self.update(self.__class__(counts, calledfuncs, callers))
248 def update(self, other): member in class:CoverageResults
412 linenos.update(find_lines(c, strs))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 131 self.update()
137 self.update()
162 def update(self): member in class:TreeNode
164 self.parent.update()
168 self.canvas.update()
473 node.update()
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.6/
printers.py 602 self.update ()
607 def update (self): member in class:Tr1HashtableIterator
626 self.update ()
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/
Draw9PatchEditor.java 204 public void update(NinePatchedImage image) { method in class:Draw9PatchEditor
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GestureToolTip.java 33 * used to dynamically update the position and text of the tip, and it does not seem to
34 * have setter methods to update the text or position without recreating the tip.
119 * which case the update is applied immediately.)
126 public void update(final String text, boolean below, boolean toRightOf) { method in class:GestureToolTip
144 // change first, and then the location will update later - so there will be a
198 update(text, mBelow, mToRightOf);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/
NdkDiscoveredPathInfo.java 71 // BTW, can't do this in the update since the indexer runs before
103 public void update(IProgressMonitor monitor) throws CoreException { method in class:NdkDiscoveredPathInfo
  /system/core/healthd/
BatteryMonitor.cpp 176 bool BatteryMonitor::update(void) { function in class:android::BatteryMonitor
  /system/core/libutils/
ProcessCallStack.cpp 131 void ProcessCallStack::update() { function in class:android::ProcessCallStack
138 ALOGE("%s: Failed to update the process's call stacks (errno = %d, '%s')",
183 * Ignore CallStack::update and ProcessCallStack::update for current thread
184 * - Every other thread doesn't need this since we call update off-thread
188 // Update thread's call stacks
189 threadInfo.callStack.update(ignoreDepth, tid);
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsTest.java 114 // Test: update
121 mProvider.update(uri, value, null, null);
181 // Test: update
186 assertEquals(1, mProvider.update(uri, value, null, null));
294 // Test: update
300 mProvider.update(uri, value, null, null);
377 // Test: update
384 mProvider.update(uri, value, null, null);
484 // Test: update. Also add new cached fields to simulate extra cached fields being
504 mCallLogProvider.update(uri, value, null, null)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DexFile.java 615 md.update(bytes, 32, bytes.length - 32);
637 a32.update(bytes, 12, bytes.length - 12);
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 632 md.update(bytes, 32, bytes.length - 32);
654 a32.update(bytes, 12, bytes.length - 12);
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 239 * Update the position of each particle in the system using the
264 public void update(float sx, float sy, long now) { method in class:AccelerometerPlayActivity.SimulationView.ParticleSystem
265 // update the system's positions
432 particleSystem.update(sx, sy, now);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DexFile.java 634 md.update(bytes, 32, bytes.length - 32);
656 a32.update(bytes, 12, bytes.length - 12);
  /frameworks/base/media/java/android/media/session/
MediaSessionLegacyHelper.java 260 holder.update();
275 holder.update();
304 holder.update();
320 holder.update();
466 public void update() { method in class:MediaSessionLegacyHelper.SessionHolder
  /frameworks/opt/net/ims/src/java/com/android/ims/internal/
ImsCallSession.java 218 * Called when the session update is failed.
221 * @param reasonInfo detailed reason of the session update failure
228 * Called when the session update is received from the remote user.
597 * Accepts an incoming call or session update.
615 * Rejects an incoming call or session update.
706 public void update(int callType, ImsStreamMediaProfile profile) { method in class:ImsCallSession
712 miSession.update(callType, profile);
    [all...]
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
ImageProcessingActivityJB.java 280 public void update() { method in class:ImageProcessingActivityJB.Processor
294 //update();
395 //mProcessor.update();
419 mProcessor.update();

Completed in 937 milliseconds

<<21222324252627282930>>