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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
PKCS5S2ParametersGenerator.java 58 hMac.update(S, 0, S.length);
61 hMac.update(iBuf, 0, iBuf.length);
68 hMac.update(state, 0, state.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DSABase.java 35 digest.update(b);
44 digest.update(b, off, len);
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_manager_win.cc 71 ui::AXTreeUpdate update; local
72 update.nodes.push_back(empty_document);
73 return update;
  /external/chromium_org/content/browser/appcache/
appcache_group_unittest.cc 137 // Adding cache with same update time uses one with larger ID.
226 // Set state to checking to prevent update job from executing fetches.
229 AppCacheUpdateJob* update = group->update_job_; local
230 EXPECT_TRUE(update != NULL);
232 // Start another update, check that same update job is in use.
234 EXPECT_EQ(update, group->update_job_);
236 // Deleting the update should restore the group to APPCACHE_STATUS_IDLE.
237 delete update;
247 // Set state to checking to prevent update job from executing fetches
250 AppCacheUpdateJob* update = group->update_job_; local
    [all...]
  /external/chromium_org/pdf/
paint_manager.cc 143 // The best way for us to do the next update is to get a notification that
200 PaintAggregator::PaintUpdate update = aggregator_.GetPendingUpdate(); local
201 client_->OnPaint(update.paint_rects, &ready, &pending);
218 if (update.has_scroll)
219 graphics_.Scroll(update.scroll_rect, update.scroll_delta);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositingLayerAssigner.cpp 92 CompositingStateTransitionType update = NoCompositingStateChange; local
95 update = AllocateOwnCompositedLayerMapping;
99 update = RemoveOwnCompositedLayerMapping;
103 // We can't compute at this time whether the squashing layer update is a no-op,
105 update = PutInSquashingLayer;
107 update = RemoveFromSquashingLayer;
111 return update;
182 // If we've modified the collection of squashed layers, we must update
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
ScopeChainSidebarPane.js 43 update: function(callFrame)
  /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/libwebp/enc/
tree.c 492 const int update = (p0 != VP8CoeffsProba0[t][b][c][p]); local
493 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::__anon17438
  /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/ui/accessibility/
ax_generated_tree_unittest.cc 111 AXTreeUpdate update; local
112 update.nodes.resize(node_count_);
113 update.nodes[0].id = permuted[0];
114 update.nodes[0].role = AX_ROLE_ROOT_WEB_AREA;
115 update.nodes[0].child_ids.push_back(permuted[1]);
116 update.nodes[1].id = permuted[1];
121 update.nodes[i].id = permuted[i];
124 update.nodes[parent_index].child_ids.push_back(permuted[i]);
127 // Unserialize the tree update into the destination tree.
128 CHECK(out_tree->Unserialize(update));
230 AXTreeUpdate update; local
    [all...]
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/ui/file_manager/file_manager/foreground/js/
progress_center_item_group.js 205 * Starts item update.
209 ProgressCenterItemGroup.prototype.update = function(item) {
213 // Compares the current state and the new state to check if the update is
253 // Update the internal summarized item cache.
285 * This may update summarized view. (1 progressing + 1 error -> 1 error)
  /external/libcxx/test/
runtests.py 34 def update(self, value): member in class:ProgressBarWrapper
36 self.pb.update(value)
110 pb.update(sum(num_run.values()))
  /external/libnfc-nci/src/nfa/dm/
nfa_dm_main.c 220 ** Description Update config parameters only if it's different from NFCC
230 BOOLEAN update; local
245 update = FALSE;
367 update = TRUE;
380 update = TRUE;
384 update = TRUE;
391 update = TRUE;
396 if (update)
414 /* If any TVLs to update, or if the SetConfig was initiated by the application, then send the SET_CONFIG command */
  /external/lldb/examples/summaries/cocoa/
CFArray.py 33 self.update()
35 def update(self): member in class:NSArrayKVC_SynthProvider
62 self.update()
64 def update(self): member in class:NSArrayCF_SynthProvider
85 self.update()
87 def update(self): member in class:NSArrayI_SynthProvider
109 self.update()
111 def update(self): member in class:NSArrayM_SynthProvider
144 def update(self): member in class:NSArray_SynthProvider
148 self.wrapper.update()
    [all...]
CFBitVector.py 60 self.update();
62 def update(self): member in class:CFBitVectorKnown_SummaryProvider
115 self.update();
117 def update(self): member in class:CFBitVectorUnknown_SummaryProvider
CFDictionary.py 38 self.update();
40 def update(self): member in class:NSCFDictionary_SummaryProvider
76 self.update();
78 def update(self): member in class:NSDictionaryI_SummaryProvider
116 self.update();
118 def update(self): member in class:NSDictionaryM_SummaryProvider
150 self.update();
152 def update(self): member in class:NSDictionaryUnknown_SummaryProvider
NSSet.py 38 self.update();
40 def update(self): member in class:NSCFSet_SummaryProvider
70 self.update();
72 def update(self): member in class:NSSetUnknown_SummaryProvider
99 self.update();
101 def update(self): member in class:NSSetI_SummaryProvider
140 self.update();
142 def update(self): member in class:NSSetM_SummaryProvider
169 self.update();
171 def update(self) member in class:NSCountedSet_SummaryProvider
    [all...]
NSURL.py 37 self.update();
39 def update(self): member in class:NSURLKnown_SummaryProvider
86 self.update()
88 def update(self): member in class:NSURLUnknown_SummaryProvider
  /external/lldb/utils/vim-lldb/python-vim-lldb/
vim_ui.py 187 def update(self, target, status, controller, goto_file=False): member in class:UI
193 self.paneCol.update(target, controller)

Completed in 1169 milliseconds

1 2 3 4 5 6 7 8 91011>>