/external/chromium_org/chrome/browser/notifications/ |
balloon_notification_ui_manager.cc | 86 bool removed = NotificationUIManagerImpl::CancelAllBySourceOrigin(source); local 87 return balloon_collection_->RemoveBySourceOrigin(source) || removed; 92 bool removed = NotificationUIManagerImpl::CancelAllByProfile(profile); local 93 return balloon_collection_->RemoveByProfile(profile) || removed;
|
notification_ui_manager_impl.cc | 142 bool removed = false; local 151 removed = true; 153 return removed; 158 bool removed = false; local 167 removed = true; 169 return removed;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
MutationRecord.h | 47 static PassRefPtr<MutationRecord> createChildList(PassRefPtr<Node> target, PassRefPtr<NodeList> added, PassRefPtr<NodeList> removed, PassRefPtr<Node> previousSibling, PassRefPtr<Node> nextSibling);
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
currentspeakermonitor.h | 74 const MediaStreams& removed);
|
currentspeakermonitor.cc | 193 const MediaStreams& removed) { 195 // Update the speaking state map based on added and removed streams. 197 it = removed.video().begin(); it != removed.video().end(); ++it) {
|
/external/llvm/utils/release/ |
findRegressions-simple.py | 67 removed = '' 120 removed += t + "\n" 146 if len(removed) != 0: 147 print 'REMOVED TESTS' 148 print removed
|
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
PChargingFunctionAddresses.java | 142 * @throws ParseException if the address was not removed 153 throw new ParseException("CCF Address Not Removed",0); 225 * @throws ParseException if the address was not removed 236 throw new java.text.ParseException("ECF Address Not Removed",0); 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;
|
/libcore/luni/src/main/java/java/util/prefs/ |
FilePreferencesImpl.java | 57 //cache for removed prefs key-value pair 58 private Set<String> removed = new HashSet<String>(); field in class:FilePreferencesImpl 119 //if removed, return 126 Iterator<String> it = removed.iterator(); 130 removed.clear(); 183 removed.add(key);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
AbstractCollectionTest.java | 136 final String[] removed = new String[3]; local 153 removed[index - 1] = values[index - 1]; 167 for (String r : removed) { 169 fail("an unexpected element was removed"); 178 final String[] removed = new String[1]; local 195 removed[index - 1] = values[index - 1]; 209 assertEquals("0", removed[0]); 247 fail("an unexpected element was removed");
|
/frameworks/base/core/java/android/app/ |
BackStackRecord.java | 45 if (op.removed != null) numRemoved += op.removed.size(); 63 if (op.removed != null) { 64 final int N = op.removed.size(); 67 mOps[pos++] = op.removed.get(i).mIndex; 118 op.removed = new ArrayList<Fragment>(N); 123 op.removed.add(r); 197 ArrayList<Fragment> removed; field in class:BackStackRecord.Op 313 if (op.removed != null && op.removed.size() > 0) [all...] |
/frameworks/support/v4/java/android/support/v4/app/ |
BackStackRecord.java | 44 if (op.removed != null) numRemoved += op.removed.size(); 62 if (op.removed != null) { 63 final int N = op.removed.size(); 66 mOps[pos++] = op.removed.get(i).mIndex; 117 op.removed = new ArrayList<Fragment>(N); 122 op.removed.add(r); 196 ArrayList<Fragment> removed; field in class:BackStackRecord.Op 312 if (op.removed != null && op.removed.size() > 0) [all...] |
/external/chromium_org/jingle/glue/ |
thread_wrapper.cc | 91 talk_base::MessageList* removed) { 100 if (removed) { 101 removed->push_back(it->second); 117 if (removed) { 118 removed ->push_back((*it)->message);
|
/external/llvm/lib/Target/Mips/ |
MipsInstrInfo.cpp | 150 unsigned removed; local 158 // Up to 2 branches are removed. 159 // Note that indirect branches are not removed. 160 for(removed = 0; I != REnd && removed < 2; ++I, ++removed) 166 return removed; 243 // Return if the last instruction cannot be removed.
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
AllAppsList.java | 42 /** The list of apps that have been removed since the last notify() call. */ 43 public ArrayList<ApplicationInfo> removed = new ArrayList<ApplicationInfo>(); field in class:AllAppsList 74 removed.clear(); 108 removed.add(info); 122 // Find disabled/removed activities and remove them from data and add them 123 // to the removed list. 129 removed.add(applicationInfo); 158 removed.add(applicationInfo);
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
AllAppsList.java | 42 /** The list of apps that have been removed since the last notify() call. */ 43 public ArrayList<AppInfo> removed = new ArrayList<AppInfo>(); field in class:AllAppsList 80 removed.clear(); 114 removed.add(info); 128 // Find disabled/removed activities and remove them from data and add them 129 // to the removed list. 135 removed.add(applicationInfo); 164 removed.add(applicationInfo);
|
/external/elfutils/libdwfl/ |
dwfl_module.c | 194 If REMOVED is not null, it's called for each module that 200 int (*removed) (Dwfl_Module *, void *, 209 if (m->gc && removed != NULL) 211 int result = (*removed) (MODCB_ARGS (m), arg);
|
/external/qemu/memcheck/ |
memcheck_mmrange_map.c | 222 int removed = 0; local 226 removed++; 229 return removed;
|
/frameworks/base/tools/preload/ |
PrintHtmlDiff.java | 27 * Prints HTML containing removed and added files. 52 Set<LoadedClass> removed = new TreeSet<LoadedClass>(); local 67 if (!clazz.preloaded) removed.add(clazz); 79 out.println("<p><a href=\"#removed\">Removed</a>"); 82 out.println("<a name=\"removed\"/><h2>Removed</h2>"); 83 printTable(out, root.baseline, removed);
|
/libcore/luni/src/main/java/java/util/concurrent/ |
CopyOnWriteArrayList.java | 344 E removed = (E) elements[index]; local 346 return removed; 368 * of elements removed. 377 * We've encountered an element that must be removed! Create a new 399 int removed = elements.length - newElements.length; local 401 return removed; 565 E removed = CopyOnWriteArrayList.this.remove(slice.from + index); local 567 return removed; 636 int removed = removeOrRetain(collection, false, slice.from, slice.to); local 637 slice = new Slice(elements, slice.from, slice.to - removed); 645 int removed = removeOrRetain(collection, true, slice.from, slice.to); local [all...] |
/external/wpa_supplicant_8/src/utils/ |
eloop_none.c | 170 int removed = 0; local 180 removed++; 184 return removed; 193 int removed = 0; local 204 removed = 1; 211 return removed;
|
/external/chromium_org/ui/views/focus/ |
view_storage.cc | 66 void ViewStorage::ViewRemoved(View* removed) { 69 view_to_ids_.find(removed);
|
/external/dnsmasq/contrib/port-forward/ |
dnsmasq-portforward | 46 verb=removed
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.ui_3.6.1.M20100826-1330.jar | |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
DefaultServer.java | 413 Connection removed = null; local 419 removed = (Connection)endpointConnections.remove(p); 420 if( removed != null ) { 421 connections.remove( removed.getId() ); 430 // Note: checking removed.closed just to avoid spurious log messages 432 if( removed != null && !removed.closed ) { 434 log.log( Level.INFO, "Client closed:{0}.", removed ); 436 removed.closeConnection();
|
/external/chromium_org/content/browser/geolocation/ |
geolocation_provider_impl.cc | 72 bool removed = false; local 77 removed = true; 81 if (removed) 83 return removed;
|