HomeSort by relevance Sort by last modified time
    Searched defs:update (Results 226 - 250 of 1083) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ScopeChainSidebarPane.js 43 update: function(callFrame)
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeySession.cpp 113 void MediaKeySession::update(Uint8Array* key, ExceptionState& exceptionState) function in class:WebCore::MediaKeySession
138 // NOTE: Continued from step 2. of MediaKeySession::update()
144 m_session->update(*pendingKey);
  /external/chromium_org/third_party/WebKit/Source/web/
ApplicationCacheHost.cpp 225 bool ApplicationCacheHost::update() function in class:WebCore::ApplicationCacheHost
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
misc.py 91 def update(self, v): member in class:Hasher
93 self.md5.update(to_bytes(str(type(v))))
95 self.md5.update(to_bytes(v))
97 self.update(str(v))
100 self.update(e)
104 self.update(k)
105 self.update(v[k])
113 self.update(k)
114 self.update(a)
  /external/chromium_org/third_party/WebKit/Tools/lldb/
lldb_webkit.py 165 self.update()
190 def update(self): member in class:WTFVectorProvider
205 self.update()
247 def update(self): member in class:WTFHashTableProvider
  /external/chromium_org/third_party/libwebp/enc/
tree.c 497 const int update = (p0 != VP8CoeffsProba0[t][b][c][p]); local
498 if (VP8PutBit(bw, update, VP8CoeffsUpdateProba[t][b][c][p])) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_screen.h 37 u32 (*update)(struct pipe_screen *); member in struct:nouveau_screen::__anon12654
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
m_sha1.c 77 static int update(EVP_MD_CTX *ctx,const void *data,size_t count) function
90 update,
111 * Even though there're separate SHA224_[Update|Final], we call
  /external/chromium_org/third_party/simplejson/
ordered_dict.py 28 self.update(*args, **kwds)
89 update = DictMixin.update variable in class:OrderedDict
  /external/chromium_org/third_party/skia/src/utils/
SkSHA1.cpp 33 void SkSHA1::update(const uint8_t* input, size_t inputLength) { function in class:SkSHA1
75 this->update(PADDING, paddingLength);
77 // Append length (length before padding, will cause final update).
78 this->update(bits, 8);
  /external/chromium_org/tools/deep_memory_profiler/lib/
symbol.py 119 'update()' updates the cache from the original symbol data sources via
129 def update(self, symbol_type, bucket_set, symbol_finder, cache_f): member in class:SymbolMappingCache
143 symbol_type: A type of symbols to update. It should be one of
174 symbol_type: A type of symbols to update. It should be one of
  /external/chromium_org/webkit/browser/appcache/
appcache_group_unittest.cc 130 // Adding cache with same update time uses one with larger ID.
219 // Set state to checking to prevent update job from executing fetches.
222 AppCacheUpdateJob* update = group->update_job_; local
223 EXPECT_TRUE(update != NULL);
225 // Start another update, check that same update job is in use.
227 EXPECT_EQ(update, group->update_job_);
229 // Deleting the update should restore the group to IDLE.
230 delete update;
240 // Set state to checking to prevent update job from executing fetches
243 AppCacheUpdateJob* update = group->update_job_; local
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
HashForSSH2Types.java 43 md.update(tmp);
48 md.update(b);
53 md.update((byte) (v >> 24));
54 md.update((byte) (v >> 16));
55 md.update((byte) (v >> 8));
56 md.update((byte) (v));
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
StatsView.java 96 public void update(float tpf) { method in class:StatsView
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
AbstractControl.java 86 public void update(float tpf) { method in class:AbstractControl
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
LwjglKeyInput.java 75 public void update() { method in class:LwjglKeyInput
  /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/jmonkeyengine/engine/src/test/jme3test/collision/
TestRayCasting.java 86 tracer.update();
92 tracer.update();
  /external/libnfc-nci/src/nfa/dm/
nfa_dm_main.c 219 ** Description Update config parameters only if it's different from NFCC
229 BOOLEAN update; local
244 update = FALSE;
366 update = TRUE;
379 update = TRUE;
383 update = TRUE;
390 update = TRUE;
395 if (update)
413 /* If any TVLs to update, or if the SetConfig was initiated by the application, then send the SET_CONFIG command */
  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 63 /// revalidate - LIU contents have changed, update tags.
106 void InterferenceCache::Entry::update(unsigned MBBNum) { function in class:InterferenceCache::Entry
  /external/llvm/lib/Support/
MD5.cpp 73 /// \brief This processes one or more 64-byte data blocks, but does NOT update
187 void MD5::update(ArrayRef<uint8_t> Data) { function in class:llvm::MD5
225 void MD5::update(StringRef Str) { function in class:llvm::MD5
227 update(SVal);
  /external/markdown/markdown/
odict.py 77 def update(self, dict_): member in class:OrderedDict
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_screen.h 37 u32 (*update)(struct pipe_screen *); member in struct:nouveau_screen::__anon23121
  /external/openssl/crypto/evp/
m_sha1.c 77 static int update(EVP_MD_CTX *ctx,const void *data,size_t count) function
90 update,
111 * Even though there're separate SHA224_[Update|Final], we call
  /external/replicaisland/src/com/replica/replicaisland/
AttackAtDistanceComponent.java 45 public void update(float timeDelta, BaseObject parent) { method in class:AttackAtDistanceComponent

Completed in 648 milliseconds

1 2 3 4 5 6 7 8 91011>>