/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
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/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 | 210 bool BatteryMonitor::update(void) { function in class:android::BatteryMonitor
|
/system/core/libutils/ |
ProcessCallStack.cpp | 132 void ProcessCallStack::update() { function in class:android::ProcessCallStack 139 ALOGE("%s: Failed to update the process's call stacks: %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);
|
/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 | 261 holder.update(); 276 holder.update(); 305 holder.update(); 321 holder.update(); 467 public void update() { method in class:MediaSessionLegacyHelper.SessionHolder
|
/frameworks/support/design/src/android/support/design/internal/ |
NavigationMenuPresenter.java | 112 mAdapter.update(); 435 public void update() { method in class:NavigationMenuPresenter.NavigationMenuAdapter
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
CipherTest.java | 320 * javax.crypto.Cipher#update(byte[], int, int) 348 byte[] output = c.update(input, 0, bytesRead); 371 cipher.update(new byte[64], 0, 32); 406 byte[] output = c.update(input, 0, bytesRead); 431 c.update(b, 0, 10, b1, 5); 454 c.update(b1, 0, 24, b, 0); 483 * Class under test for int update(byte[], int, int, byte[], int) 491 c.update(b, 0, 10, b1, 5); 498 c.update(b, 0, 10, b1, 5); 504 c.update(b, 0, 10, b1, 5) [all...] |
/libcore/ojluni/src/main/java/sun/security/x509/ |
X509CRLImpl.java | 393 sigVerf.update(tbsCertList, 0, tbsCertList.length); 463 sigEngine.update(tbsCertList, 0, tbsCertList.length); 492 sb.append("\nThis Update: " + thisUpdate.toString() + "\n"); 494 sb.append("Next Update: " + nextUpdate.toString() + "\n"); [all...] |
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSetupOutgoingFragment.java | 354 cred.update(context, cred.toContentValues()); 360 account.mHostAuthSend.update(context, account.mHostAuthSend.toContentValues()); 361 // Update the backup (side copy) of the accounts
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
ProcessDownloadedMmsAction.java | 375 BugleNotifications.update(false, BugleNotifications.UPDATE_ERRORS); 471 // Update image sizes. 478 LogUtil.w(TAG, "Message deleted prior to update"); 520 // Just in case this was the latest message update the summary data 532 // Update mms table with read status now we know the conversation id 535 SqliteWrapper.update(context, context.getContentResolver(), mmsUri, values, 540 BugleNotifications.update(false /*silent*/, conversationId, BugleNotifications.UPDATE_ALL);
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/ |
FusionDictionary.java | 52 // the update process needs to know about both values at the same time. Updating will 53 // update the AfterUpdate value, and the code will move them to BeforeUpdate before 54 // the next update pass. 94 // address compression, where the update process needs to know about both values at the 95 // same time. Updating will update the AfterUpdate value, and the code will move them 96 // to BeforeUpdate before the next update pass. 97 // The update process does not need two versions of mCachedSize. 99 int mCachedAddressBeforeUpdate; // The address of this PtNode (before update) 100 int mCachedAddressAfterUpdate; // The address of this PtNode (after update) 204 void update(final ProbabilityInfo probabilityInfo method in class:FusionDictionary.PtNode [all...] |