/external/chromium/chrome/browser/google/ |
google_update.cc | 31 // The registry location of the Google Update policies. 33 L"SOFTWARE\\Policies\\Google\\Update"; 35 const wchar_t kGUPolicyAppValuePrefix[] = L"Update"; 57 // Check if the currently running instance can be updated by Google Update. 78 LOG(ERROR) << L"Google Update cannot update Chrome installed in a " 137 // reports from google Update. It keeps track of the progress as Google Update 138 // notifies us and ends the message loop we are spinning in once Google Update 155 // Notifications from Google Update [all...] |
/external/chromium/chrome/common/extensions/docs/static/ |
autoupdate.html | 14 <ul><li>An extension manifest may contain an "update_url" for doing update checks.</li> 15 <li>The content returned by an update check is an "update manifest" XML document listing the latest version of an extension (or set of extensions, more on that later).</li></ul> 17 <p>Every few hours, the browser will check if any installed extensions have an autoupdate URL. For each one, it will make a request to that URL looking for an update manifest XML file. If the update manifest mentions a version of an extension that is more recent than what's installed, it will download and install the new version. Similar to manual updates, the new crx must be signed with the same private key as the currently installed version.</p> 20 <h2>Update URL</h2> 31 <h2>Update manifest</h2> 32 <p>The "update manifest" returned by the server should be an XML document that looks like this (parts you'll want to modify highlighted):</p> 43 <p>(This XML format is borrowed from that used by Omaha, Google's update infrastructure. See <a href="http://code.google.com/p/omaha/">http://code.google.com/p/omaha/</a> for more details.)</p> 53 <p>The update manifest XML file may contain information about multiple extensions by including multiple <code>&l (…) [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
SignatureTest.java | 335 * Class under test for void update(byte) 340 s.update((byte)1); 346 s.update((byte) 1); 348 s.update((byte) 1); 351 assertTrue("update() failed", s.runEngineUpdate1); 355 sig.update((byte) 42); 363 * Class under test for void update(byte[]) 369 s.update(b); 375 s.update(b); 377 s.update(b) [all...] |
/external/chromium/chrome/browser/translate/ |
translate_prefs.cc | 70 DictionaryPrefUpdate update(prefs_, kPrefTranslateWhitelists); 71 DictionaryValue* dict = update.Get(); 83 DictionaryPrefUpdate update(prefs_, kPrefTranslateWhitelists); 84 DictionaryValue* dict = update.Get(); 102 DictionaryPrefUpdate update(prefs_, kPrefTranslateDeniedCount); 103 DictionaryValue* dict = update.Get(); 111 DictionaryPrefUpdate update(prefs_, kPrefTranslateDeniedCount); 112 update.Get()->SetInteger(language, 0); 124 DictionaryPrefUpdate update(prefs_, kPrefTranslateAcceptedCount); 125 DictionaryValue* dict = update.Get() [all...] |
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/ |
BulletAppState.java | 98 pSpace.update(tpf * getSpeed()); 106 pSpace.update(getPhysicsSpace().getAccuracy() * getSpeed()); 108 long update = System.currentTimeMillis() - detachedPhysicsLastUpdate; 110 executor.schedule(detachedPhysicsUpdate, Math.round(getPhysicsSpace().getAccuracy() * 1000000.0f) - (update * 1000), TimeUnit.MICROSECONDS); 168 public void update(float tpf) { method in class:BulletAppState 185 pSpace.update(active ? tpf * speed : 0); 265 * Default mode; user update, physics update and rendering happen sequentially (single threaded) 269 * Parallel threaded mode; physics update and rendering are executed in parallel, update order is kept.<br/ [all...] |
/frameworks/base/core/java/android/widget/ |
DateTimeView.java | 42 // - listen for the next threshold time to update the view. 100 update(); method 103 void update() { method in class:DateTimeView 167 // Schedule the next update 169 // Currently showing the time, update at the later of twelve hours after or midnight. 174 // If the time is in the past, don't schedule an update 184 Log.d(TAG, "update needed for '" + time + "' at '" + new Date(mUpdateTimeMillis) 236 // The update() function takes a few milliseconds to run because of 244 update(); 252 update(); [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
DigitalSignature.java | 37 * specification, 7.4.3. It allow to init, update and sign hash. Hash algorithm 133 * Update Signature hash 136 public void update(byte[] data) { method in class:DigitalSignature 138 sha.update(data); 141 md5.update(data); 173 signature.update(md5_hash); 175 cipher.update(md5_hash); 184 signature.update(sha_hash); 186 cipher.update(sha_hash); 214 signature.update(sha_hash) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
CCMBlockCipher.java | 301 cMac.update(b0, 0, b0.length); 313 cMac.update((byte)(textLength >> 8)); 314 cMac.update((byte)textLength); 320 cMac.update((byte)0xff); 321 cMac.update((byte)0xfe); 322 cMac.update((byte)(textLength >> 24)); 323 cMac.update((byte)(textLength >> 16)); 324 cMac.update((byte)(textLength >> 8)); 325 cMac.update((byte)textLength); 332 cMac.update(initialAssociatedText, 0, initialAssociatedText.length) [all...] |
/external/elfutils/libelf/ |
gelf.h | 183 /* Update the ELF header. */ 195 /* Update section header. */ 201 /* Update the program header. */ 225 /* Update REL relocation information at given index. */ 228 /* Update RELA relocation information at given index. */ 235 /* Update symbol information in the symbol table at the given index. */ 245 /* Update symbol information and separate section index in the symbol 257 /* Update additional symbol information in the symbol table at the 266 /* Update information in dynamic table at the given index. */ 273 /* Update move structure at the given index. * [all...] |
/external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/ |
TocUpdator.pm | 2 # function: Update 'HTML::Toc' table of contents. 3 # note: - 'TUT' is an abbreviation of 'Toc Update Token'. 42 # Bias to not update ToC 169 # Parse ToC update templates 185 # Create parser for update begin tokens 189 # Create parser for update end tokens 196 # Parse update tokens 258 # function: Update ToC in string. 260 # - $aToc: (reference to array of) ToC object to update 261 # - $aString: string to update ToC o 562 sub update { subroutine [all...] |
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/ |
LwjglTimer.java | 43 * accurate, a call to update each frame is required. <code>Timer</code> is a 99 * call to <code>update</code>. 112 * <code>update</code> recalulates the frame rate based on the previous 113 * call to update. It is assumed that update is called each frame. 115 public void update() { method in class:LwjglTimer
|
/external/webkit/Source/WebCore/manual-tests/ |
svg-cursor-changes.svg | 4 <!-- Clicking this circle should result in an instant update of the cursor location of this and the next circle (tested using DOM) --> 7 <!-- Clicking this circle should result in an instant update of the cursor location of this and the previous circle (tested using SVG DOM) --> 13 <!-- Clicking this circle should result in an instant update of the cursor location (tested using DOM) --> 16 <!-- Clicking this circle should result in an instant update of the cursor location (tested using SVG DOM) --> 21 <!-- Clicking this circle should result in an instant update of the cursor image (tested using DOM) --> 26 <!-- Clicking this circle should result in an instant update of the cursor image (tested using SVG DOM) -->
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebPreferences.cpp | 58 void WebPreferences::update() function in class:WebKit::WebPreferences 67 update(); // FIXME: Only send over the changed key and value. 73 update(); // FIXME: Only send over the changed key and value. 79 update(); // FIXME: Only send over the changed key and value. 85 update(); // FIXME: Only send over the changed key and value. 93 update##TypeName##ValueForKey(WebPreferencesKey::KeyLower##Key(), value); \
|
/libcore/luni/src/main/java/java/util/ |
Observable.java | 24 * cause the invocation of the {@code update()} method of all registered 27 * free in what order they call the update methods. 106 * If {@code hasChanged()} returns {@code true}, calls the {@code update()} 117 * If {@code hasChanged()} returns {@code true}, calls the {@code update()} 122 * the argument passed to {@code update()}. 138 observer.update(this, data);
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicBoolean.java | 65 * @param update the new value 69 public final boolean compareAndSet(boolean expect, boolean update) { 71 int u = update ? 1 : 0; 84 * @param update the new value 87 public boolean weakCompareAndSet(boolean expect, boolean update) { 89 int u = update ? 1 : 0;
|
AtomicReference.java | 80 * @param update the new value 84 public final boolean compareAndSet(V expect, V update) { 85 return unsafe.compareAndSwapObject(this, valueOffset, expect, update); 97 * @param update the new value 100 public final boolean weakCompareAndSet(V expect, V update) { 101 return unsafe.compareAndSwapObject(this, valueOffset, expect, update);
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
OldAndroidChecksumTest.java | 44 adler.update(values); 50 adler.update(values[i]); 59 crc.update(values); 65 crc.update(values[i]); 85 adler.update(bytes); 89 adler.update(bytes[i]);
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/ |
JcaDigestCalculatorProviderBuilder.java | 94 dig.update(bytes, off, len); 100 dig.update(bytes); 106 dig.update((byte)b);
|
/external/chromium/chrome/browser/extensions/ |
pending_extension_info.h | 14 // and is intended to be installed in the next auto-update cycle. The 15 // update URL of a pending extension may be blank, in which case a 62 bool is_from_sync_; // This update check was initiated from sync.
|
/external/chromium/chrome/browser/sync/syncable/ |
model_type_payload_map.cc | 46 const ModelTypePayloadMap& update) { 47 for (ModelTypePayloadMap::const_iterator i = update.begin(); 48 i != update.end(); ++i) {
|
/external/javassist/sample/evolve/ |
VersionManager.java | 17 * VersionManager.update("my.X");
19 public static void update(String qualifiedClassname)
method in class:VersionManager 27 throw new CannotUpdateException("cannot update class: "
|
/external/libvpx/libvpx/vpx/ |
vp8cx.h | 69 /*!\brief Don't update the last frame 71 * When this flag is set, the encoder will not update the last frame with 77 /*!\brief Don't update the golden frame 79 * When this flag is set, the encoder will not update the golden frame with 85 /*!\brief Don't update the alternate reference frame 87 * When this flag is set, the encoder will not update the alt ref frame with 93 /*!\brief Force golden frame update 101 /*!\brief Force alternate reference frame update 109 /*!\brief Disable entropy update 111 * When this flag is set, the encoder will not update its internal entrop [all...] |
/external/skia/include/images/ |
SkPageFlipper.h | 18 invalidating) you call update, which swaps the inval regions, and returns 42 /** When you're ready to write to the back page, call update. The returned 51 const SkRegion& update(SkRegion* copyBits);
|
/external/skia/legacy/include/images/ |
SkPageFlipper.h | 18 invalidating) you call update, which swaps the inval regions, and returns 42 /** When you're ready to write to the back page, call update. The returned 51 const SkRegion& update(SkRegion* copyBits);
|
/external/webkit/LayoutTests/http/tests/appcache/ |
update-cache.html | 3 <p>Test a simple offline application self-update process. Should print a series of messages followed with DONE:</p> 33 setTimeout("applicationCache.update()", 0); 44 setTimeout("applicationCache.update()", 0);
|