Searched defs:update (Results 76 - 100 of 320) sorted by relevance

1234567891011>>

/external/replicaisland/src/com/replica/replicaisland/
H A DSolidSurfaceComponent.java82 public void update(float timeDelta, BaseObject parent) { method in class:SolidSurfaceComponent
/external/webkit/Source/WebCore/bindings/js/
H A DJavaScriptCallFrame.h62 void update(const JSC::DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, const TextPosition0& textPosition) function in class:WebCore::JavaScriptCallFrame
/external/webkit/Source/WebCore/inspector/front-end/
H A DWatchExpressionsSidebarPane.js54 refreshElement.addEventListener("click", this.section.update.bind(this.section), false);
68 this.section.update();
91 update: function()
159 this.update();
166 this.update();
207 update: function()
209 WebInspector.ObjectPropertyTreeElement.prototype.update.call(this);
255 this.update();
H A DObjectPropertiesSection.js42 this.update();
45 update: function()
172 this.update();
175 update: function()
238 this.treeOutline.section.update();
276 this.update();
300 this.update();
/external/webkit/Source/WebCore/storage/
H A DIDBCursor.cpp88 PassRefPtr<IDBRequest> IDBCursor::update(ScriptExecutionContext* context, PassRefPtr<SerializedScriptValue> value, ExceptionCode& ec) function in class:WebCore::IDBCursor
91 m_backend->update(value, request, ec);
/external/webkit/Source/WebKit/chromium/public/
H A DWebIDBCursor.h76 virtual void update(const WebSerializedScriptValue&, WebIDBCallbacks*, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } function in class:WebKit::WebIDBCursor
/external/webkit/Source/WebKit/chromium/src/
H A DDragScrollTimer.cpp81 void DragScrollTimer::update() function in class:WebKit::DragScrollTimer
101 update();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DGeneralDigest.java41 public void update( method in class:GeneralDigest
55 public void update( method in class:GeneralDigest
65 update(in[inOff]);
88 update(in[inOff]);
102 update((byte)128);
106 update((byte)0);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
H A DCBCBlockCipherMac.java123 public void update( method in class:CBCBlockCipherMac
135 public void update( method in class:CBCBlockCipherMac
H A DHMac.java125 digest.update(key, 0, key.length);
154 digest.update(inputPad, 0, inputPad.length);
162 public void update( method in class:HMac
165 digest.update(in);
168 public void update( method in class:HMac
173 digest.update(in, inOff, len);
183 digest.update(outputPad, 0, outputPad.length);
184 digest.update(tmp, 0, tmp.length);
206 digest.update(inputPad, 0, inputPad.length);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
H A DRSADigestSigner.java119 * update the internal digest with the byte b
121 public void update( method in class:RSADigestSigner
124 digest.update(input);
128 * update the internal digest with the byte array in
130 public void update( method in class:RSADigestSigner
135 digest.update(input, inOff, length);
/external/chromium/chrome/browser/safe_browsing/
H A Dprotocol_parser_unittest.cc334 // Test parsing the SafeBrowsing update response.
367 // An update response with missing list name.
379 // Test parsing the SafeBrowsing update response.
631 std::string update("n:1800\ni:phishy\ne:pleaserekey\n");
638 EXPECT_TRUE(parser.ParseUpdate(update.data(),
639 static_cast<int>(update.size()), "",
647 std::string update("n:1800\ni:phishy\nr:pleasereset\n");
654 EXPECT_TRUE(parser.ParseUpdate(update.data(),
655 static_cast<int>(update.size()), "",
764 const std::string update local
[all...]
/external/chromium/chrome/browser/sync/engine/
H A Dprocess_updates_command.cc52 const sync_pb::SyncEntity& update = it->second; local
56 switch (ProcessUpdate(dir, update)) {
91 // Process a single update. Will avoid touching global state.
96 const SyncEntity& update = *static_cast<const SyncEntity*>(&proto_update); local
98 syncable::Id server_id = update.id();
99 const std::string name = SyncerProtoUtil::NameFromSyncEntity(update);
103 // Look to see if there's a local item that should recieve this update,
105 syncable::Id local_id = SyncerUtil::FindLocalIdToUpdate(&trans, update);
120 if (!ReverifyEntry(&trans, update, &target_entry)) {
125 // change the ID now, after we're sure that the update ca
[all...]
H A Dverify_updates_command.cc45 const SyncEntity& update = local
47 ModelSafeGroup g = GetGroupForModelType(update.GetModelType(),
52 VerifyUpdateResult result = VerifyUpdate(&trans, update,
54 status->mutable_update_progress()->AddVerifyResult(result.value, update);
56 if (update.deleted())
63 // will have refused to unify the update.
94 LOG(ERROR) << "Zero length name in non-deleted update";
/external/clang/test/SemaCXX/
H A Dconstexpr-turing.cpp30 constexpr Tape update(const Tape &old, bool write) { return Tape(old, write); } function
37 run(tm, move(update(tape, tm[state][tape.val].tape),
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
H A DMAC.java71 mac.update((byte) (seq >> 24));
72 mac.update((byte) (seq >> 16));
73 mac.update((byte) (seq >> 8));
74 mac.update((byte) (seq));
77 public void update(byte[] packetdata, int off, int len) method in class:MAC
79 mac.update(packetdata, off, len);
/external/guava/guava/src/com/google/common/io/
H A DFileBackedOutputStream.java166 update(1);
176 update(len);
192 private void update(int len) throws IOException { method in class:FileBackedOutputStream
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDoubleArray.java141 * @param update the new value
145 public final boolean compareAndSet(int i, double expect, double update) { argument
148 doubleToRawLongBits(update));
165 * @param update the new value
168 public final boolean weakCompareAndSet(int i, double expect, double update) { argument
171 doubleToRawLongBits(update));
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java54 public final boolean compareAndSet(int expect, int update) { argument
56 value = update;
H A DAtomicLong.java54 public final boolean compareAndSet(long expect, long update) { argument
56 value = update;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DConstraintRotLimit.java82 this.update();
149 * It is important to update the state of the limits and owner/target before
152 private void update() { method in class:ConstraintRotLimit
156 owner.update();
159 target.update();
H A DFeature.java36 * The update method should be called before the feature is used.
90 public void update() { method in class:Feature
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DStatsView.java96 public void update(float tpf) { method in class:StatsView
/external/jmonkeyengine/engine/src/core/com/jme3/app/state/
H A DAbstractAppState.java76 public void update(float tpf) { method in class:AbstractAppState
H A DAppStateManager.java43 * it will update and render.<br/>
54 * AppStateManager.update().
59 * <li>cleanup() : called ONCE on the render thread at the beginning of the next update
240 * Calls update for attached states, do not call directly.
243 public void update(float tpf){ method in class:AppStateManager
255 state.update(tpf);

Completed in 480 milliseconds

1234567891011>>