Searched refs:removed (Results 1 - 25 of 254) sorted by relevance

1234567891011

/external/chromium_org/tools/binary_size/
H A Dexplain_binary_size_delta_unittest.py25 ( 'removed', 't', 1000, '/file_all_deleted' ),
31 ( 'removed', 't', 1000, '/file_pair_unchanged_removed' ),
39 ( 'removed', '@', 1000, '/file_pair_unchanged_diffbuck_removed' ),
42 # File with four symbols, one added, one removed,
45 ( 'removed', 't', 1000, '/file_tetra' ),
70 # File with four symbols, one added, one removed,
80 (added, removed, changed, unchanged) = \
88 assert ('/file_all_deleted', 't', 'removed', 1000, None) in removed
96 # File with two symbols, one unchanged, one removed, sam
[all...]
H A Dexplain_binary_size_delta.py56 removed = [] # tuples
83 # A file was removed. Everything in bucket1 is dead.
86 removed.append((key[0], key[1], symbol_name, symbol_size, None))
94 removed.append((key[0], key[1], symbol_name, symbol_size, None))
123 removed.append((key[0], key[1], symbol_name, symbol_size,
132 # We have now analyzed all symbols that are in cache1 and removed all of
139 return (added, removed, changed, unchanged)
160 def CrunchStats(added, removed, changed, unchanged, showsources, showsymbols):
174 removed_symbols = CrunchStatsData(removed)
198 description = ('removed, totallin
[all...]
/external/chromium_org/chrome/browser/net/
H A Dchrome_cookie_notification_details.h20 removed(is_removed),
25 bool removed; member in struct:ChromeCookieDetails
H A Dcookie_store_util.cc46 bool removed,
51 this, cookie, removed, cause));
73 bool removed,
77 ChromeCookieDetails cookie_details(&cookie, removed, cause);
71 OnCookieChangedAsyncHelper( const net::CanonicalCookie& cookie, bool removed, net::CookieMonster::Delegate::ChangeCause cause) argument
/external/libpng/scripts/
H A Dchecksym.awk20 removed[1] = "" # removed symbols from png.h
63 # 'removed' symbols, introduced in png.h using PNG_REMOVED rather
68 # ; symbol @ordinal # three fields, removed symbol
80 NF==3 && $1 == ";" && $3 ~ /^@[1-9][0-9]*$/ { # removed symbol
82 if (removed[o] == "" || removed[o] == $2) {
83 removed[o] = $2
86 print "png.h: duplicated removed symbol", o ": '" removed[
[all...]
/external/deqp/scripts/
H A Dcaselist_diff.py145 # returns (added, removed) lists
148 removed = []
158 # build removed set
161 removed.append(case)
163 return (added, removed)
175 added, removed = diffCaseLists(renamedCases, newCases)
186 for case in removed:
/external/chromium_org/third_party/polymer/components-chromium/core-signals/
H A Dcore-signals-extracted.js8 removed: function() {
/external/chromium_org/third_party/webrtc/base/
H A Dasyncinvoker.cc45 MessageList removed; local
46 thread->Clear(this, id, &removed);
47 for (MessageList::iterator it = removed.begin(); it != removed.end(); ++it) {
H A Dmessagequeue.cc332 MessageList* removed) {
338 if (removed) {
339 removed->push_back(msgPeek_);
350 if (removed) {
351 removed->push_back(*it);
367 if (removed) {
368 removed->push_back(it->msg_);
331 Clear(MessageHandler *phandler, uint32 id, MessageList* removed) argument
/external/apache-http/src/org/apache/http/impl/client/
H A DBasicCookieStore.java83 * values will still be removed.
108 * not be added, but existing values will still be removed.
145 boolean removed = false;
149 removed = true;
152 return removed;
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dtypingmonitor.cc92 rtc::MessageList removed; local
93 worker_thread_->Clear(this, 0, &removed);
94 ASSERT(removed.size() == 1);
/external/chromium_org/ui/file_manager/gallery/js/
H A Dribbon.js99 if (event.removed.length > 1) {
104 if (event.removed.length > 0 && event.added.length > 0) {
123 var removed = this.renderCache_[event.removed[0].getEntry().toURL()];
124 if (!removed || !removed.parentNode || !removed.hasAttribute('selected')) {
160 removed.removeAttribute('selected');
161 removed.setAttribute('vanishing', 'smooth');
235 // removed afterward
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DLruBitmapPool.java106 final Bitmap removed = strategy.removeLast();
107 currentSize -= strategy.getSize(removed);
108 removed.recycle();
111 Log.d(TAG, "Evicting bitmap=" + strategy.logBitmap(removed));
H A DSizeStrategy.java52 Bitmap removed = groupedMap.removeLast();
53 if (removed != null) {
54 final int removedSize = removed.getAllocationByteCount();
57 return removed;
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DMemoryCache.java12 * An interface that will be called whenever a bitmap is removed from the cache.
15 public void onResourceRemoved(Resource removed); argument
45 * Set the listener to be called when a bitmap is removed from the cache
/external/qemu/distrib/sdl-1.2.15/src/timer/
H A DSDL_timer.c108 SDL_bool removed; local
114 removed = SDL_FALSE;
153 removed = SDL_TRUE;
158 if ( ! removed ) {
209 SDL_bool removed; local
211 removed = SDL_FALSE;
223 removed = SDL_TRUE;
229 printf("SDL_RemoveTimer(%08x) = %d num_timers = %d thread = %d\n", (Uint32)id, removed, SDL_timer_running, SDL_ThreadID());
232 return removed;
/external/chromium_org/components/policy/core/common/
H A Dschema_map_unittest.cc197 new base::StringValue("to-be-removed"),
203 // Mismatched types are also removed.
291 // Unknown policies of known components with a schema are removed.
298 // Unknown components are removed.
317 PolicyNamespaceList removed; local
319 newer->GetChanges(older, &removed, &added);
320 EXPECT_TRUE(removed.empty());
326 newer->GetChanges(older, &removed, &added);
327 EXPECT_TRUE(removed.empty());
334 newer->GetChanges(older, &removed,
336 EXPECT_EQ(PolicyNamespace(POLICY_DOMAIN_CHROME, ""), removed[0]); local
337 EXPECT_EQ(PolicyNamespace(POLICY_DOMAIN_EXTENSIONS, "xyz"), removed[1]); local
[all...]
H A Dschema_map.h47 PolicyNamespaceList* removed,
/external/chromium_org/extensions/renderer/
H A Dscript_context_set.cc108 ContextSet removed; local
116 removed.insert(*it);
121 return removed;
/external/chromium_org/ui/file_manager/file_manager/audio_player/js/
H A Daudio_player_model.js75 observer.open(function(added, removed, changed, getOldValueFn) {
/external/chromium_org/ui/views/focus/
H A Dview_storage.h19 // It automatically removes a view from the storage if the view is removed from
46 // Notifies the ViewStorage that a view was removed from its parent somewhere.
47 void ViewRemoved(View* removed);
58 // all other mapping pointing to the same view are removed as well.
/external/llvm/utils/release/
H A DfindRegressions-simple.py67 removed = ''
120 removed += t + "\n"
146 if len(removed) != 0:
148 print removed
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPChargingFunctionAddresses.java142 * @throws ParseException if the address was not removed
225 * @throws ParseException if the address was not removed
254 boolean removed = false;
277 * @return true if parameter was removed, and false if not
282 boolean removed = false;
287 removed = true;
291 return removed;
/external/lldb/
H A DAndroid.mk2 # This guard will be removed once lldb is working
/external/chromium_org/jingle/glue/
H A Dthread_wrapper.cc91 rtc::MessageList* removed) {
100 if (removed) {
101 removed->push_back(it->second);
117 if (removed) {
118 removed ->push_back((*it)->message);
90 Clear(rtc::MessageHandler* handler, uint32 id, rtc::MessageList* removed) argument

Completed in 1685 milliseconds

1234567891011