HomeSort by relevance Sort by last modified time
    Searched defs:update (Results 26 - 50 of 1241) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/src/images/
SkPageFlipper.cpp 70 const SkRegion& SkPageFlipper::update(SkRegion* copyBits) { function in class:SkPageFlipper
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineMemoryOverview.js 52 update: function()
  /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/lldb/examples/synthetic/bitfield/
example.py 97 def update(self): member in class:MaskedData_SyntheticChildrenProvider
98 # we do not do anything special in update - but this would be the right place to lookup
  /external/lldb/test/functionalities/data-formatter/data-formatter-python-synth/
fooSynthProvider.py 22 def update(self): member in class:fooSynthProvider
  /external/llvm/utils/
lldbDataFormatters.py 20 self.update() # initialize this provider
44 def update(self): member in class:SmallVectorSynthProvider
  /frameworks/av/include/camera/
CameraMetadata.h 122 * Update metadata entry. Will create entry if it doesn't exist already, and
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,
134 status_t update(uint32_t tag,
136 status_t update(uint32_t tag,
138 status_t update(uint32_t tag,
142 status_t update(uint32_t tag, Vector<T> data) { function in class:android::CameraMetadata
143 return update(tag, data.array(), data.size())
    [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
  /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
  /prebuilts/devtools/
update_jars.sh 13 MK_MERGE_MSG="1" # 1 to update the MERGE_MSG, empty to do not generate it
46 function update() { function
66 Update SDK prebuilts.
149 update $r
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
PropertiesSidebarPane.js 41 update: function(node)
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForIdentity.java 49 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, method in class:DataRowHandlerForIdentity
52 super.update(db, txContext, values, c, callerIsSyncAdapter);
DataRowHandlerForStructuredPostal.java 62 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, method in class:DataRowHandlerForStructuredPostal
71 super.update(db, txContext, values, c, callerIsSyncAdapter);
81 private void fixStructuredPostalComponents(ContentValues augmented, ContentValues update) {
82 final String unstruct = update.getAsString(StructuredPostal.FORMATTED_ADDRESS);
85 final boolean touchedStruct = !areAllEmpty(update, STRUCTURED_FIELDS);
91 postal.toValues(update);
93 && (touchedStruct || areAnySpecified(update, STRUCTURED_FIELDS))) {
96 update.put(StructuredPostal.FORMATTED_ADDRESS, joined);
  /cts/suite/cts/deviceTests/opengl/jni/reference/
ReferenceRenderer.cpp 78 bool ReferenceRenderer::update(int frame) { function in class:ReferenceRenderer
83 mCurrentScene->update(localFrame);
  /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/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
Mac.java 39 public void update(byte in) method in interface:Mac
49 public void update(byte[] in, int inOff, int len) method in interface:Mac
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/WebKit/Source/core/rendering/compositing/
GraphicsLayerUpdater.cpp 65 void GraphicsLayerUpdater::update(Vector<RenderLayer*>& layersNeedingPaintInvalidation, RenderLayer& layer, UpdateType updateType, const UpdateContext& context) function in class:WebCore::GraphicsLayerUpdater
101 update(layersNeedingPaintInvalidation, *child, updateType, childContext);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebContentDecryptionModuleSession.cpp 51 void WebContentDecryptionModuleSession::update(const unsigned char* response, size_t responseLength, const WebContentDecryptionModuleResult& result) function in class:blink::WebContentDecryptionModuleSession
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state.h 43 enum pipe_error (*update)( struct svga_context *svga, unsigned dirty ); member in struct:svga_tracked_state
  /external/lldb/examples/summaries/
sp_cp.py 12 self.update()
13 def update(self): member in class:SharedPtr_SyntheticChildrenProvider
36 self.update()
37 def update(self): member in class:ValueObjectSP_SyntheticChildrenProvider
  /external/lldb/test/expression_command/formatters/
foosynth.py 6 self.update();
8 def update(self): member in class:FooSyntheticProvider

Completed in 540 milliseconds

12 3 4 5 6 7 8 91011>>