/development/tools/recovery_l10n/res/values/ |
strings.xml | 15 system is installing an update. [CHAR LIMIT=60] --> 16 <string name="recovery_installing">Installing system update\u2026</string> 29 <!-- Displayed on the triangle-! screen when a system update
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/ |
BcDigestCalculatorProvider.java | 54 dig.update(bytes, off, len); 60 dig.update(bytes, 0, bytes.length); 66 dig.update((byte)b);
|
/external/chromium/chrome/browser/chromeos/ |
update_observer.cc | 17 : notification_(profile, "update.chromeos", IDR_NOTIFICATION_UPDATE, 26 // TODO seanparent@chromium.org : This update should only be shown when an 27 // update is critical and should include a restart button using the
|
/external/chromium/chrome/browser/download/ |
download_status_updater.cc | 20 Update(); 26 Update(); 29 void DownloadStatusUpdater::Update() {
|
/external/chromium/chrome/browser/sync/syncable/ |
model_type_payload_map.h | 43 // Coalesce |update| into |original|, overwriting only when |update| has 46 const ModelTypePayloadMap& update);
|
/external/jmdns/src/javax/jmdns/impl/constants/ |
DNSOperationCode.java | 33 * Update [RFC2136] 35 Update("Update", 5);
|
/external/replicaisland/src/com/replica/replicaisland/ |
MainLoop.java | 34 public void update(float timeDelta, BaseObject parent) { method in class:MainLoop 35 mTimeSystem.update(timeDelta, parent); 37 super.update(newTimeDelta, parent);
|
/external/webkit/LayoutTests/http/tests/appcache/ |
fail-on-update.html | 1 <html manifest="resources/fail-on-update.php"> 11 req.open("GET", "resources/fail-on-update.php?command=" + (state ? "delete" : "reset"), false); 20 applicationCache.update();
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
TiledDrawingArea.cpp | 153 TileUpdate update = it->second; local 156 updateTile(update.tileID, update.dirtyRect, update.scale); 196 TileUpdate update; local 197 if (!arguments->decode(CoreIPC::Out(update.tileID, update.dirtyRect, update.scale))) 199 UpdateMap::iterator it = m_pendingUpdates.find(update.tileID); 201 it->second.dirtyRect.unite(update.dirtyRect) [all...] |
/external/webkit/Tools/Scripts/ |
update-webkit | 31 # Update script for WebKit Open Source Project. 66 --chromium also update dependencies of the chromium port 68 -q|--quiet pass -q to svn update for quiet updates 69 --gyp generate project files from gyp after update 70 --wincairo also update dependencies of the WinCairo port 100 system("perl", "Tools/Scripts/update-webkit-chromium") == 0 or die $!; 102 system("perl", "Tools/Scripts/update-webkit-auxiliary-libs") == 0 or die; 104 system("perl", "Tools/Scripts/update-webkit-wincairo-libs") == 0 or die; 119 open UPDATE, "-|", "svn", "update", @svnOptions or die [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
metered_stream.py | 50 two other methods for output, update(), and progress(). 52 In normal usage, update() will overwrite the output of the immediately 53 preceding update() (write() also will overwrite update()). So, calling 54 multiple update()s in a row can provide an updating status bar (note that 55 if an update string contains newlines, only the text following the last 59 verbose=true), then update() no longer overwrite a previous update(), and 64 progress() is just like update(), except that if you are in verbose mode, 72 layering inversion in update() for things to work correctly 114 def update(self, str): member in class:MeteredStream [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/database/ |
ContactUpdateUtils.java | 26 * Static methods to update contact information. 38 // Update the primary values in the data record. 43 context.getContentResolver().update(
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
LocalVideo.java | 134 id = uh.update(id, cursor.getInt(INDEX_ID)); 135 caption = uh.update(caption, cursor.getString(INDEX_CAPTION)); 136 mimeType = uh.update(mimeType, cursor.getString(INDEX_MIME_TYPE)); 137 latitude = uh.update(latitude, cursor.getDouble(INDEX_LATITUDE)); 138 longitude = uh.update(longitude, cursor.getDouble(INDEX_LONGITUDE)); 139 dateTakenInMs = uh.update( 141 dateAddedInSec = uh.update( 143 dateModifiedInSec = uh.update( 145 filePath = uh.update(filePath, cursor.getString(INDEX_DATA)); 146 durationInSec = uh.update( [all...] |
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
NullCipherTest.java | 96 * Class under test for byte[] update(byte[]) 100 byte [] r = c.update(b); 106 * Class under test for byte[] update(byte[], int, int) 110 byte [] r = c.update(b, 0, 5); 114 r = c.update(b, 1, 3); 122 * Class under test for int update(byte[], int, int, byte[]) 127 c.update(b, 0, 5, r); 132 * Class under test for int update(byte[], int, int, byte[], int) 137 c.update(b, 0, 5, r, 0); 185 * Class under test for byte[] update(byte[], int, int [all...] |
/external/chromium/chrome/browser/chromeos/login/ |
update_screen.cc | 28 // Defines what part of update progress does download part takes. 35 const char kUpdateDeadlineFile[] = "/tmp/update-check-response-deadline"; 84 // check unless there is an update. 90 LOG(INFO) << "Noncritical update available: " 94 LOG(INFO) << "Critical update available: " 104 // Because update engine doesn't send UPDATE_STATUS_UPDATE_AVAILABLE 105 // we need to is update critical on first downloading notification. 108 LOG(INFO) << "Non-critical update available: " 112 LOG(INFO) << "Critical update available: " 138 VLOG(1) << "Initiate reboot after update"; [all...] |
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
NullCipherTest.java | 98 * Class under test for byte[] update(byte[]) 102 byte [] r = c.update(b); 108 * Class under test for byte[] update(byte[], int, int) 112 byte [] r = c.update(b, 0, 5); 116 r = c.update(b, 1, 3); 124 * Class under test for int update(byte[], int, int, byte[]) 129 c.update(b, 0, 5, r); 134 * Class under test for int update(byte[], int, int, byte[], int) 139 c.update(b, 0, 5, r, 0); 187 * Class under test for byte[] update(byte[], int, int [all...] |
/cts/tools/dasm/src/java_cup/ |
version.java | 10 * update, and are written as v<major>.<minor><update> (e.g. v0.9a). 13 * change big enough to cause incompatibilities. Finally update 37 /** The update letter. */ 38 public static final char update = 'd'; field in class:version
|
/external/chromium/chrome/browser/sync/notifier/ |
invalidation_util.cc | 73 const invalidation::RegistrationUpdate& update) { 76 ss << "type: " << update.type() << ", "; 77 ss << "object_id: " << ObjectIdPToString(update.object_id()) << ", "; 78 ss << "version: " << update.version() << ", "; 79 ss << "sequence_number: " << update.sequence_number();
|
/external/webrtc/src/modules/audio_processing/ns/ |
defines.h | 36 #define DD_PR_SNR (float)0.98 // DD update of prior SNR 40 #define PRIOR_UPDATE (float)0.10 // update parameter of prior model 41 #define NOISE_UPDATE (float)0.90 // update parameter for noise 42 #define SPEECH_UPDATE (float)0.99 // update parameter when likely speech 50 #define GAMMA_PAUSE (float)0.05 // update for conservative noise estimate
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicReferenceFieldUpdater.java | 30 * boolean compareAndSetLeft(Node expect, Node update) { 31 * return leftUpdater.compareAndSet(this, expect, update); 84 * @param update the new value 87 public abstract boolean compareAndSet(T obj, V expect, V update); 102 * @param update the new value 105 public abstract boolean weakCompareAndSet(T obj, V expect, V update); 161 * Internal type checks within all update methods contain 216 void updateCheck(T obj, V update) { 218 (update != null && vclass != null && !vclass.isInstance(update))) [all...] |
/frameworks/av/include/camera/ |
CameraMetadata.h | 116 * Update metadata entry. Will create entry if it doesn't exist already, and 120 status_t update(uint32_t tag, 122 status_t update(uint32_t tag, 124 status_t update(uint32_t tag, 126 status_t update(uint32_t tag, 128 status_t update(uint32_t tag, 130 status_t update(uint32_t tag, 132 status_t update(uint32_t tag, 136 status_t update(uint32_t tag, Vector<T> data) { function in class:android::CameraMetadata 137 return update(tag, data.array(), data.size()) [all...] |
/external/chromium/chrome/browser/sync/engine/ |
syncer_types.h | 30 // Update was applied or safely ignored. 39 // Success. Update applied and stored in SERVER_* fields or dropped if 43 // Success. Update details stored in SERVER_* fields, but wasn't applied. 46 // Update is illegally inconsistent with earlier updates. e.g. A bookmark 50 // Update is illegal when considered alone. e.g. broken UTF-8 in the name. 53 // Only used by VerifyUpdate. Indicates that an update is valid. As 111 // Update-Client-Auth returns a new token for sync use.
|
/external/elfutils/libelf-po/ |
Rules-quot | 5 .SUFFIXES: .insert-header .po-update-en 7 en@quot.po-update: en@quot.po-update-en 8 en@boldquot.po-update: en@boldquot.po-update-en 10 .insert-header.po-update-en: 11 @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \
|
/frameworks/base/core/java/android/os/ |
UpdateLock.java | 24 * OTA/update purposes can so advise the OS. This is particularly relevant for headless 48 * Broadcast Intent action sent when the global update lock state changes, 49 * i.e. when the first locker acquires an update lock, or when the last 58 * update operation. True means that updates are okay right now; false indicates 81 * Change the refcount behavior of this update lock. 100 * Acquire an update lock. 126 * Release this update lock.
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
MessageDigest1Test.java | 46 * java.security.MessageDigest#update(byte) 50 md.update((byte) 1); 55 * java.security.MessageDigest#update(byte[], int, int) 60 md.update(bytes, 1, 2); 66 md.update(null, 0, 1); 72 md.update(bytes, 0, bytes.length + 1); 78 md.update(bytes, Integer.MAX_VALUE, 1); 94 md.update(bytes, offset, len); 99 * java.security.MessageDigest#update(byte[]) 104 md.update(b) [all...] |