/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
H A D | Iterators.java | 203 * @param removeFrom the iterator to (potentially) remove elements from 208 Iterator<?> removeFrom, Collection<?> elementsToRemove) { 209 return removeIf(removeFrom, in(elementsToRemove)); 217 * @param removeFrom the iterator to (potentially) remove elements from 224 Iterator<T> removeFrom, Predicate<? super T> predicate) { 227 while (removeFrom.hasNext()) { 228 if (predicate.apply(removeFrom.next())) { 229 removeFrom.remove(); 241 * @param removeFrom the iterator to (potentially) remove elements from 246 Iterator<?> removeFrom, Collectio 207 removeAll( Iterator<?> removeFrom, Collection<?> elementsToRemove) argument 223 removeIf( Iterator<T> removeFrom, Predicate<? super T> predicate) argument 245 retainAll( Iterator<?> removeFrom, Collection<?> elementsToRetain) argument [all...] |
H A D | Iterables.java | 130 * @param removeFrom the iterable to (potentially) remove elements from 135 Iterable<?> removeFrom, Collection<?> elementsToRemove) { 136 return (removeFrom instanceof Collection) 137 ? ((Collection<?>) removeFrom).removeAll(checkNotNull(elementsToRemove)) 138 : Iterators.removeAll(removeFrom.iterator(), elementsToRemove); 148 * @param removeFrom the iterable to (potentially) remove elements from 153 Iterable<?> removeFrom, Collection<?> elementsToRetain) { 154 return (removeFrom instanceof Collection) 155 ? ((Collection<?>) removeFrom).retainAll(checkNotNull(elementsToRetain)) 156 : Iterators.retainAll(removeFrom 134 removeAll( Iterable<?> removeFrom, Collection<?> elementsToRemove) argument 152 retainAll( Iterable<?> removeFrom, Collection<?> elementsToRetain) argument 172 removeIf( Iterable<T> removeFrom, Predicate<? super T> predicate) argument 235 removeFirstMatching(Iterable<T> removeFrom, Predicate<? super T> predicate) argument [all...] |
/external/guava/guava/src/com/google/common/collect/ |
H A D | Iterables.java | 132 * @param removeFrom the iterable to (potentially) remove elements from 137 Iterable<?> removeFrom, Collection<?> elementsToRemove) { 138 return (removeFrom instanceof Collection) 139 ? ((Collection<?>) removeFrom).removeAll(checkNotNull(elementsToRemove)) 140 : Iterators.removeAll(removeFrom.iterator(), elementsToRemove); 150 * @param removeFrom the iterable to (potentially) remove elements from 155 Iterable<?> removeFrom, Collection<?> elementsToRetain) { 156 return (removeFrom instanceof Collection) 157 ? ((Collection<?>) removeFrom).retainAll(checkNotNull(elementsToRetain)) 158 : Iterators.retainAll(removeFrom 136 removeAll( Iterable<?> removeFrom, Collection<?> elementsToRemove) argument 154 retainAll( Iterable<?> removeFrom, Collection<?> elementsToRetain) argument 174 removeIf( Iterable<T> removeFrom, Predicate<? super T> predicate) argument 237 removeFirstMatching(Iterable<T> removeFrom, Predicate<? super T> predicate) argument [all...] |
H A D | Iterators.java | 205 * @param removeFrom the iterator to (potentially) remove elements from 210 Iterator<?> removeFrom, Collection<?> elementsToRemove) { 211 return removeIf(removeFrom, in(elementsToRemove)); 219 * @param removeFrom the iterator to (potentially) remove elements from 226 Iterator<T> removeFrom, Predicate<? super T> predicate) { 229 while (removeFrom.hasNext()) { 230 if (predicate.apply(removeFrom.next())) { 231 removeFrom.remove(); 243 * @param removeFrom the iterator to (potentially) remove elements from 248 Iterator<?> removeFrom, Collectio 209 removeAll( Iterator<?> removeFrom, Collection<?> elementsToRemove) argument 225 removeIf( Iterator<T> removeFrom, Predicate<? super T> predicate) argument 247 retainAll( Iterator<?> removeFrom, Collection<?> elementsToRetain) argument [all...] |
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
H A D | CharMatcherTest.java | 130 assertEquals("", matcher.removeFrom("")); 214 assertEquals(s.toString(), matcher.removeFrom(s)); 231 assertEquals("", matcher.removeFrom(s)); 299 assertEquals("", matcher.removeFrom(s)); 317 assertSame(s, matcher.removeFrom(s)); 333 assertEquals(s.substring(1), matcher.removeFrom(s)); 349 assertEquals(s.substring(0, 1), matcher.removeFrom(s));
|
/external/guava/guava-tests/test/com/google/common/base/ |
H A D | CharMatcherTest.java | 193 assertEquals("", matcher.removeFrom("")); 283 assertEquals(s.toString(), matcher.removeFrom(s)); 300 assertEquals("", matcher.removeFrom(s)); 368 assertEquals("", matcher.removeFrom(s)); 386 assertSame(s, matcher.removeFrom(s)); 402 assertEquals(s.substring(1), matcher.removeFrom(s)); 418 assertEquals(s.substring(0, 1), matcher.removeFrom(s));
|
/external/guava/guava/src/com/google/common/base/ |
H A D | CharMatcher.java | 281 @Override public String removeFrom(CharSequence sequence) { 359 @Override public String removeFrom(CharSequence sequence) { 1052 * CharMatcher.is('a').removeFrom("bazaar")}</pre> 1057 public String removeFrom(CharSequence sequence) { method in class:CharMatcher 1095 return negate().removeFrom(sequence); 1152 return removeFrom(sequence);
|
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
H A D | CharMatcher.java | 279 @Override public String removeFrom(CharSequence sequence) { 357 @Override public String removeFrom(CharSequence sequence) { 895 * CharMatcher.is('a').removeFrom("bazaar")}</pre> 900 public String removeFrom(CharSequence sequence) { method in class:CharMatcher 938 return negate().removeFrom(sequence); 995 return removeFrom(sequence);
|
/external/vogar/lib/ |
H A D | guava.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/annotations/ ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.sat4j.core_2.2.0.v20100429.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/owasp/sanitizer/distrib/lib/ |
H A D | guava.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ... |
/external/owasp/sanitizer/lib/guava-libraries/ |
H A D | guava.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ... |