/external/guava/guava/src/com/google/common/collect/ |
D | AbstractMapBasedMultiset.java | 95 Map.Entry<E, Count> toRemove; in entryIterator() 105 toRemove = mapEntry; in entryIterator() 127 checkState(toRemove != null, in entryIterator() 129 size -= toRemove.getValue().getAndSet(0); in entryIterator() 131 toRemove = null; in entryIterator() 344 Map.Entry<E, Count> toRemove; 353 toRemove = entries.next(); 354 return toRemove.getKey(); 359 checkState(toRemove != null, 361 size -= toRemove.getValue().getAndSet(0); [all …]
|
D | TreeMultiset.java | 284 E toRemove = null; in iteratorInDirection() 295 toRemove = path.getTip().getKey(), path.getTip().elemCount()); in iteratorInDirection() 300 checkState(toRemove != null); in iteratorInDirection() 301 setCount(toRemove, 0); in iteratorInDirection() 302 toRemove = null; in iteratorInDirection()
|
D | Maps.java | 2187 Set<K> toRemove = Sets.newHashSet(); 2190 toRemove.add(entry.getKey()); 2193 return map().keySet().removeAll(toRemove);
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | AbstractMapBasedMultiset.java | 92 Map.Entry<E, Count> toRemove; in entryIterator() 102 toRemove = mapEntry; in entryIterator() 124 checkState(toRemove != null, in entryIterator() 126 size -= toRemove.getValue().getAndSet(0); in entryIterator() 128 toRemove = null; in entryIterator() 341 Map.Entry<E, Count> toRemove; 350 toRemove = entries.next(); 351 return toRemove.getKey(); 356 checkState(toRemove != null, 358 size -= toRemove.getValue().getAndSet(0); [all …]
|
D | TreeMultiset.java | 280 E toRemove = null; in iteratorInDirection() 291 toRemove = path.getTip().getKey(), path.getTip().elemCount()); in iteratorInDirection() 296 checkState(toRemove != null); in iteratorInDirection() 297 setCount(toRemove, 0); in iteratorInDirection() 298 toRemove = null; in iteratorInDirection()
|
D | Maps.java | 2158 Set<K> toRemove = Sets.newHashSet(); 2161 toRemove.add(entry.getKey()); 2164 return map().keySet().removeAll(toRemove);
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
D | HeaderIterator.java | 39 private boolean toRemove; field in HeaderIterator 52 toRemove = true; in next() 60 toRemove = true; in previous() 84 if (toRemove) { in remove()
|
D | SIPMessage.java | 726 SIPHeader toRemove = (SIPHeader) nameTable.get(headerNameLowerCase); in removeHeader() local 728 if (toRemove == null) in removeHeader() 730 if (toRemove instanceof SIPHeaderList) { in removeHeader() 731 SIPHeaderList< ? > hdrList = (SIPHeaderList< ? >) toRemove; in removeHeader() 751 if (toRemove instanceof From) { in removeHeader() 753 } else if (toRemove instanceof To) { in removeHeader() 755 } else if (toRemove instanceof CSeq) { in removeHeader() 757 } else if (toRemove instanceof CallID) { in removeHeader() 759 } else if (toRemove instanceof MaxForwards) { in removeHeader() 761 } else if (toRemove instanceof ContentLength) { in removeHeader()
|
/external/chromium_org/chrome/browser/resources/options/ |
D | language_dictionary_overlay_word_list.js | 172 var toRemove = []; 181 toRemove.push(entries[i]); 185 if (toRemove.length == 0) 187 for (var i = 0; i < toRemove.length; i++) { 188 index = this.dataModel.indexOf(toRemove[i]);
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | MatchedPropertiesCache.cpp | 117 Vector<unsigned, 16> toRemove; in sweep() local 125 toRemove.append(it->key); in sweep() 130 for (size_t i = 0; i < toRemove.size(); ++i) in sweep() 131 m_cache.remove(toRemove[i]); in sweep()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MultisetsTest.java | 149 Multiset<String> toRemove = in testRemoveOccurrencesEmpty() local 151 assertFalse(Multisets.retainOccurrences(multiset, toRemove)); in testRemoveOccurrencesEmpty() 204 Multiset<String> toRemove = HashMultiset.create(); in testRemoveEmptyOccurrences() local 205 assertFalse(Multisets.removeOccurrences(multiset, toRemove)); in testRemoveEmptyOccurrences() 212 Multiset<String> toRemove = in testRemoveOccurrences() local 214 assertTrue(Multisets.removeOccurrences(multiset, toRemove)); in testRemoveOccurrences()
|
/external/icu4c/common/unicode/ |
D | enumset.h | 37 inline void remove(T toRemove) { set(toRemove, 0); } in remove() argument
|
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/js/ |
D | network_status.js | 63 var toRemove = diff[0]; 65 toRemove.forEach(function(element) { 619 var toRemove = diff[0]; 628 toRemove.forEach(function(id) {
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/ |
D | metadata_cache.js | 534 var toRemove = []; 542 toRemove.push(url); 546 toRemove.sort(function(a, b) { 552 removeCount = Math.min(removeCount, toRemove.length); 555 delete this.cache_[toRemove[index]];
|
/external/chromium_org/chrome/browser/resources/history/ |
D | history.js | 1897 var toRemove = [entry]; 1901 toRemove.push(nextEntry); 1905 toRemove.push(previousEntry); 1910 toRemove.push(nextEntry); 1915 toRemove.push(dayResults.previousSibling); // Remove the 'h3'. 1916 toRemove.push(dayResults); 1922 for (var i = 0; i < toRemove.length; ++i) { 1923 if (toRemove[i].parentNode) 1930 for (var i = 0; i < toRemove.length; ++i) { 1931 removeNode(toRemove[i], onRemove);
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
D | RegisterSpecSet.java | 242 public void remove(RegisterSpec toRemove) { in remove() argument 244 specs[toRemove.getReg()] = null; in remove()
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
D | Field.java | 257 private void removeCharacter(StringBuilder text, char toRemove) { in removeCharacter() argument 259 if (text.charAt(i) == toRemove) { in removeCharacter()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | StylePropertySet.cpp | 459 HashSet<CSSPropertyID> toRemove; in removePropertiesInSet() local 461 toRemove.add(set[i]); in removePropertiesInSet() 471 if (toRemove.contains(property.id())) in removePropertiesInSet()
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/ |
D | Opcode.java | 400 private static void removeOpcodes(Opcode... toRemove) { in removeOpcodes() argument 401 for (Opcode opcode: toRemove) { in removeOpcodes()
|