HomeSort by relevance Sort by last modified time
    Searched refs:update (Results 1 - 25 of 2716) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/util/
UpdateHelper.java 24 public int update(int original, int update) { method in class:UpdateHelper
25 if (original != update) {
27 original = update;
32 public long update(long original, long update) { method in class:UpdateHelper
33 if (original != update) {
35 original = update;
40 public double update(double original, double update) { method in class:UpdateHelper
48 public <T> T update(T original, T update) { method in class:UpdateHelper
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
Checksum.java 48 public void update(byte[] buf, int off, int nbytes); method in interface:Checksum
54 * the byte to update the checksum with.
56 public void update(int val); method in interface:Checksum
Adler32.java 48 * Update this {@code Adler32} checksum with the single byte provided as
52 * the byte to update checksum with.
54 public void update(int i) { method in class:Adler32
59 * Update this {@code Adler32} checksum using the contents of {@code buf}.
62 * bytes to update checksum with.
64 public void update(byte[] buf) { method in class:Adler32
65 update(buf, 0, buf.length); method
69 * Update this {@code Adler32} checksum with the contents of {@code buf},
72 public void update(byte[] buf, int offset, int byteCount) { method in class:Adler32
CRC32.java 53 * represents the byte to update the checksum.
55 public void update(int val) { method in class:CRC32
63 * the buffer holding the data to update the checksum with.
65 public void update(byte[] buf) { method in class:CRC32
66 update(buf, 0, buf.length); method
70 * Update this {@code CRC32} checksum with the contents of {@code buf},
73 public void update(byte[] buf, int offset, int byteCount) { method in class:CRC32
  /libcore/luni/src/main/java/java/util/
Observer.java 39 void update(Observable observable, Object data); method in interface:Observer
  /packages/apps/Mms/src/com/android/mms/transaction/
Observer.java 26 * Update the state of the observable.
30 void update(Observable observable); method in interface:Observer
  /external/chromium_org/cc/resources/
resource_update.cc 17 ResourceUpdate update; local
18 update.texture = resource;
19 update.bitmap = bitmap;
20 update.content_rect = content_rect;
21 update.source_rect = source_rect;
22 update.dest_offset = dest_offset;
23 return update;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PaintAggregatorTest.cpp 55 PaintAggregator::PendingUpdate update; local
56 greg.popPendingUpdate(&update);
58 EXPECT_TRUE(update.scrollRect.isEmpty());
59 ASSERT_EQ(1U, update.paintRects.size());
61 EXPECT_EQ(rect, update.paintRects[0]);
77 PaintAggregator::PendingUpdate update; local
78 greg.popPendingUpdate(&update);
80 EXPECT_TRUE(update.scrollRect.isEmpty());
81 EXPECT_EQ(2U, update.paintRects.size());
83 EXPECT_EQ(expectedBounds, update.calculatePaintBounds())
102 PaintAggregator::PendingUpdate update; local
120 PaintAggregator::PendingUpdate update; local
147 PaintAggregator::PendingUpdate update; local
193 PaintAggregator::PendingUpdate update; local
213 PaintAggregator::PendingUpdate update; local
235 PaintAggregator::PendingUpdate update; local
264 PaintAggregator::PendingUpdate update; local
286 PaintAggregator::PendingUpdate update; local
306 PaintAggregator::PendingUpdate update; local
328 PaintAggregator::PendingUpdate update; local
350 PaintAggregator::PendingUpdate update; local
370 PaintAggregator::PendingUpdate update; local
391 PaintAggregator::PendingUpdate update; local
415 PaintAggregator::PendingUpdate update; local
436 PaintAggregator::PendingUpdate update; local
459 PaintAggregator::PendingUpdate update; local
483 PaintAggregator::PendingUpdate update; local
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_update.css 6 #update {
11 #update #update-screen-curtain {
16 #update #update-checking-progress {
23 #update #update-screen-curtain {
27 #update-screen-main {
33 #update #update-cancel-hint
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/
DynamicLayoutBlocksTest.java 63 private void update(int startLine, int endLine, int newLineCount) { method in class:DynamicLayoutBlocksTest
97 update(0, 0, 0);
100 update(0, 0, 1);
103 update(0, 0, 10);
110 update(0, 0, 0);
113 update(0, 10, 0);
116 update(0, 100, 0);
119 update(20, 30, 0);
122 update(20, 20, 0);
125 update(40, 100, 0)
    [all...]
  /external/chromium_org/sync/engine/
syncer_util_unittest.cc 20 // it to the update just yet.
26 update.set_id_string("I");
27 update.set_parent_id_string("P");
28 update.set_version(10);
29 update.set_mtime(100);
30 update.set_ctime(100);
31 update.set_deleted(false);
32 update.mutable_specifics()->mutable_bookmark()->set_title("Chrome");
33 update.mutable_specifics()->mutable_bookmark()->
38 update.set_originator_cache_guid("CacheGUID")
50 sync_pb::SyncEntity update; member in class:syncer::GetUpdatePositionTest
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Digest.java 23 * update the message digest with a single byte.
27 public void update(byte in); method in interface:Digest
30 * update the message digest with a block of bytes.
36 public void update(byte[] in, int inOff, int len); method in interface:Digest
Signer.java 17 * update the internal digest with the byte b
19 public void update(byte b); method in interface:Signer
22 * update the internal digest with the byte array in
24 public void update(byte[] in, int off, int len); method in interface:Signer
  /external/chromium_org/third_party/opus/src/
version.mk 1 # static version string; update manually every release.
  /external/libopus/
version.mk 1 # static version string; update manually every release.
  /frameworks/base/graphics/java/android/graphics/
LightingColorFilter.java 51 update(); method
77 update(); method
103 update(); method
106 private void update() { method in class:LightingColorFilter
  /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);
BaseObject.java 22 * an ObjectManager, and anything that requires an update per frame should be derived from
33 * Update this object.
34 * @param timeDelta The duration since the last update (in seconds).
37 public void update(float timeDelta, BaseObject parent) { method in class:BaseObject
  /hardware/intel/img/libdrm/tests/
updatedraw.c 34 struct drm_update_draw update; local
36 update.handle = drawable;
37 update.type = DRM_DRAWABLE_CLIPRECTS;
38 update.num = 0;
39 update.data = 0;
41 ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update);
49 struct drm_update_draw update; local
51 update.handle = drawable;
52 update.type = DRM_DRAWABLE_CLIPRECTS;
53 update.num = 0
64 struct drm_update_draw update; local
    [all...]
  /external/chromium_org/ui/accessibility/
ax_tree_unittest.cc 91 AXTreeUpdate update; local
92 serializer.SerializeChanges(src_tree.GetRoot(), &update);
95 ASSERT_TRUE(dst_tree.Unserialize(update));
143 AXTreeUpdate update; local
144 update.nodes.push_back(list);
145 update.nodes.push_back(list_item_2);
146 update.nodes.push_back(list_item_3);
147 update.nodes.push_back(button);
154 update.ToString());
168 AXTreeUpdate update; local
190 AXTreeUpdate update; local
207 AXTreeUpdate update; local
224 AXTreeUpdate update; local
249 AXTreeUpdate update; local
268 AXTreeUpdate update; local
    [all...]
  /external/chromium_org/chrome/installer/linux/debian/
prerm 22 update-alternatives --remove x-www-browser /usr/bin/@@USR_BIN_SYMLINK_NAME@@
23 update-alternatives --remove gnome-www-browser /usr/bin/@@USR_BIN_SYMLINK_NAME@@
25 update-alternatives --remove google-chrome /usr/bin/@@USR_BIN_SYMLINK_NAME@@
  /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
  /frameworks/base/libs/input/
SpriteController.cpp 111 // Each sprite update record includes a reference to its associated sprite so we can
133 SpriteUpdate& update = updates.editItemAt(i); local
135 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) {
136 update.state.surfaceWidth = update.state.icon.bitmap.width();
137 update.state.surfaceHeight = update.state.icon.bitmap.height();
138 update.state.surfaceDrawn = false;
139 update.state.surfaceVisible = false
151 SpriteUpdate& update = updates.editItemAt(i); local
192 SpriteUpdate& update = updates.editItemAt(i); local
243 SpriteUpdate& update = updates.editItemAt(i); local
329 const SpriteUpdate& update = updates.itemAt(i); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
Adler32Test.java 42 adl.update(1);
45 assertEquals("update(int) failed to update the checksum to the correct value ",
52 adl.update(Integer.MIN_VALUE);
55 assertEquals("update(min) failed to update the checksum to the correct value ",
65 adl.update(1);
68 assertEquals("update(int) failed to update the checksum to the correct value ",
76 * java.util.zip.Adler32#update(int
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/
rakefile 13 spec_extras.update(

Completed in 1597 milliseconds

1 2 3 4 5 6 7 8 91011>>