HomeSort by relevance Sort by last modified time
    Searched defs:update (Results 351 - 375 of 1828) sorted by null

<<11121314151617181920>>

  /device/sample/apps/LeanbackWidget/src/com/google/android/leanbacklauncher/partnerwidget/
ClockWidgetProvider.java 35 update(context);
44 update(context);
48 update(context);
52 private void update(Context context) { method in class:ClockWidgetProvider
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
task.rb 343 def update method in class:ANTLR3
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdamsNordsieckTransformer.java 126 * <p>We observe that both methods use similar update formulas. In both cases a P<sup>-1</sup>u
142 /** Update matrix for the higher order derivatives h<sup>2</sup>/2y'', h<sup>3</sup>/6 y''' ... */
143 private final Array2DRowRealMatrix update; field in class:AdamsNordsieckTransformer
145 /** Update coefficients of the higher order derivatives wrt y'. */
163 // update coefficients are computed by combining transform from
189 update = MatrixUtils.bigFractionMatrixToRealMatrix(bigMSupdate);
271 /** Update the high order scaled derivatives for Adams integrators (phase 1).
272 * <p>The complete update of high order derivatives has a form similar to:
283 return update.multiply(highOrder);
286 /** Update the high order scaled derivatives Adams integrators (phase 2)
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractPoolEntry.java 84 //@@@ avoid that, derived classes should decide whether update is allowed
160 // - update the tracking data
222 this.connection.update(null, tracker.getTargetHost(),
263 this.connection.update(null, next, secure, params);
301 // - update the tracking data
DefaultClientConnection.java 214 public void update(Socket sock, HttpHost target, method in class:DefaultClientConnection
235 } // update
DefaultClientConnectionOperator.java 247 conn.update(sock, target, lsf.isSecure(sock), params);
  /external/autotest/contrib/
crbug_crawler.py 59 class Update(object):
60 """Class encapsulating fields of an update to a bug.
82 """Update manager that allows you to revert status updates.
84 This class keeps track of the last update applied and is capable
89 """Initialize update manager.
91 @param autocommit: If False just print out the update instead
104 for issue_id, update in self.history.iteritems():
105 logging.warning('You will have to manually update %s and %s on %s',
108 # Create a new update with just the status.
109 self.update(issue_id, Update(status=update.status)
112 def update(self, old_issue, update): member in class:UpdateManager
    [all...]
db_cleanup.py 77 def update(self, x): member in class:ProgressBar
88 "update" the display.
209 pb.update(len(row_keys))
  /external/autotest/frontend/client/src/autotest/common/ui/
Paginator.java 153 public void update() { method in class:Paginator
  /external/autotest/site_utils/
job_history.py 141 def update(self, host_id, start_time, end_time): member in class:TaskCacheCollection
142 """Update the cache of the given host by searching database.
269 task_caches.update(self.host.id, search_start_time,
  /external/autotest/utils/
check_patch.py 93 def update(self): member in class:VCS
97 return self.backend.update()
175 def update(self): member in class:SubVersionBackend
177 utils.system("svn update", ignore_status=True)
179 logging.error("SVN tree update failed: %s" % e)
332 self.vcs.update()
  /external/avahi/avahi-qt/
qt-watch.cpp 64 void update(const struct timeval* tv);
120 update(tv);
123 void AvahiTimeout::update(const struct timeval *tv) function in class:AvahiTimeout
170 t->update(tv);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeWrapEngine.java 322 sha1.update(key, 0, key.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
CBCBlockCipherMac.java 123 public void update( method in class:CBCBlockCipherMac
135 public void update( method in class:CBCBlockCipherMac
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseMac.java 167 macEngine.update(input);
175 macEngine.update(input, offset, len);
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
rdataset.py 134 def update(self, other): member in class:Rdataset
137 @param other: The rdataset from which to update
141 super(Rdataset, self).update(other)
set.py 88 """Update the set, adding any elements from other which are not
90 @param other: the collection of items with which to update the set
101 """Update the set, removing any elements from other which are not
103 @param other: the collection of items with which to update the set
117 """Update the set, removing any elements from other which are in
119 @param other: the collection of items with which to update the set
195 def update(self, other): member in class:Set
196 """Update the set, adding any elements from other which are not
198 @param other: the collection of items with which to update the set
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
multidict.py 164 def update(self, other=None, **kwargs): member in class:MultiDict
176 self.update(kwargs)
  /external/chromium-trace/catapult/third_party/coverage/coverage/
misc.py 171 def update(self, v): member in class:Hasher
173 self.md5.update(to_bytes(str(type(v))))
175 self.md5.update(to_bytes(v))
177 self.md5.update(v)
181 self.md5.update(to_bytes(str(v)))
184 self.update(e)
188 self.update(k)
189 self.update(v[k])
197 self.update(k)
198 self.update(a
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sqs/
message.py 242 def update(self, d): member in class:MHMessage
243 self._body.update(d)
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTableTooltipHelper.java 84 public void update(Property property, method in class:PropertyTableTooltipHelper
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractByteHasherTest.java 118 protected void update(byte b) { method in class:AbstractByteHasherTest.TestHasher
123 protected void update(byte[] b, int off, int len) { method in class:AbstractByteHasherTest.TestHasher
  /external/jetty/src/java/org/eclipse/jetty/client/security/
DigestAuthentication.java 81 md.update(securityRealm.getPrincipal().getBytes(StringUtil.__ISO_8859_1));
82 md.update((byte)':');
83 md.update(String.valueOf(details.get("realm")).getBytes(StringUtil.__ISO_8859_1));
84 md.update((byte)':');
85 md.update(securityRealm.getCredentials().getBytes(StringUtil.__ISO_8859_1));
89 md.update(exchange.getMethod().getBytes(StringUtil.__ISO_8859_1));
90 md.update((byte)':');
91 md.update(exchange.getURI().getBytes(StringUtil.__ISO_8859_1));
94 md.update(TypeUtil.toString(ha1,16).getBytes(StringUtil.__ISO_8859_1));
95 md.update((byte)':')
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/io/
View.java 65 * Update view to buffer
67 public void update(Buffer buffer) method in class:View
78 public void update(int get, int put) method in class:View
  /external/jetty/src/java/org/eclipse/jetty/security/
HashLoginService.java 166 public void update(String userName, Credential credential, String[] roleArray) method in class:HashLoginService
169 LOG.debug("update: " + userName + " Roles: " + roleArray.length);

Completed in 1015 milliseconds

<<11121314151617181920>>