/external/guava/guava-tests/test/com/google/common/collect/ |
FilteredMultimapTest.java | 42 Multimap<String, Integer> unfiltered = HashMultimap.create(); local 43 unfiltered.put("foo", 55556); 44 unfiltered.put("badkey", 1); 45 return Multimaps.filterEntries(unfiltered, ENTRY_PREDICATE); 69 Multimap<String, Integer> unfiltered = HashMultimap.create(); local 70 unfiltered.put("foo", 55556); 71 unfiltered.put("badkey", 1); 72 Multimap<String, Integer> filtered = Multimaps.filterKeys(unfiltered, KEY_PREDICATE); 85 Multimap<String, Integer> unfiltered = HashMultimap.create(); local 86 unfiltered.put("foo", 55556) 95 Multimap<String, Integer> unfiltered = HashMultimap.create(); local [all...] |
Collections2Test.java | 90 List<String> unfiltered = newArrayList(); 91 unfiltered.add("yyy"); 92 unfiltered.addAll(asList(elements)); 93 unfiltered.add("zzz"); 94 return Collections2.filter(unfiltered, NOT_YYY_ZZZ); 112 List<String> unfiltered = newArrayList(); 113 unfiltered.addAll(asList(elements)); 114 return Collections2.filter(unfiltered, NOT_YYY_ZZZ); 132 List<String> unfiltered = newLinkedList(); 133 unfiltered.add("yyy") [all...] |
SortedMapsTest.java | 104 SortedMap<Integer, String> unfiltered = Maps.newTreeMap(comparator); local 105 unfiltered.put(1, "one"); 106 unfiltered.put(2, "two"); 107 unfiltered.put(3, "three"); 108 unfiltered.put(4, "four"); 109 unfiltered.put(5, "five"); 110 unfiltered.put(6, "six"); 111 unfiltered.put(7, "seven"); 113 = SortedMaps.filterKeys(unfiltered, EVEN); 133 SortedMap<Integer, String> unfiltered = Maps.newTreeMap(comparator) local 186 SortedMap<Integer, String> unfiltered = new ContainsKeySafeSortedMap(); local 195 SortedMap<Integer, String> unfiltered = new ContainsKeySafeSortedMap(); local [all...] |
MultimapsFilterEntriesAsMapTest.java | 46 Multimap<String, Integer> unfiltered = HashMultimap.create(); local 47 unfiltered.put("zero", 55556); 48 unfiltered.put("one", 55556); 49 unfiltered.put("badkey", 1); 50 return Multimaps.filterEntries(unfiltered, PREDICATE);
|
MapsTest.java | [all...] |
SetsTest.java | 185 Set<String> unfiltered = Sets.newLinkedHashSet(); 186 unfiltered.add("yyy"); 187 unfiltered.addAll(Arrays.asList(elements)); 188 unfiltered.add("zzz"); 189 return Sets.filter(unfiltered, Collections2Test.NOT_YYY_ZZZ); 206 Set<String> unfiltered = Sets.newLinkedHashSet(); 207 unfiltered.add("yyy"); 208 unfiltered.addAll(ImmutableList.copyOf(elements)); 209 unfiltered.add("zzz"); 210 return Sets.filter(unfiltered, Collections2Test.LENGTH_1) [all...] |
IteratorsTest.java | 228 Iterator<String> unfiltered = Lists.newArrayList("foo", "bar").iterator(); local 229 Iterator<String> filtered = Iterators.filter(unfiltered, 237 Iterator<String> unfiltered = Lists.newArrayList("foo", "bar").iterator(); local 238 Iterator<String> filtered = Iterators.filter(unfiltered, 246 Iterator<String> unfiltered = Lists.newArrayList("foo", "bar").iterator(); local 247 Iterator<String> filtered = Iterators.filter(unfiltered, 255 Iterator<String> unfiltered = Collections.<String>emptyList().iterator(); local 256 Iterator<String> filtered = Iterators.filter(unfiltered, [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
features_utility_test.py | 60 unfiltered = { 71 apps_names, set(Filtered(unfiltered, 'apps').keys())) 73 extension_names, set(Filtered(unfiltered, 'extensions').keys()))
|
/external/guava/guava/src/com/google/common/collect/ |
Collections2.java | 49 * Returns the elements of {@code unfiltered} that satisfy a predicate. The 50 * returned collection is a live view of {@code unfiltered}; changes to one 62 * {@code unfiltered} is. 67 * it may be faster to copy {@code Iterables.filter(unfiltered, predicate)} 79 Collection<E> unfiltered, Predicate<? super E> predicate) { 80 if (unfiltered instanceof FilteredCollection) { 83 return ((FilteredCollection<E>) unfiltered).createCombined(predicate); 87 checkNotNull(unfiltered), checkNotNull(predicate)); 103 final Collection<E> unfiltered; field in class:Collections2.FilteredCollection 106 FilteredCollection(Collection<E> unfiltered, [all...] |
SortedMaps.java | 191 * Returns a sorted map containing the mappings in {@code unfiltered} whose 193 * unfiltered}; changes to one affect the other. 206 * unfiltered} is. 220 SortedMap<K, V> unfiltered, final Predicate<? super K> keyPredicate) { 230 return filterEntries(unfiltered, entryPredicate); 234 * Returns a sorted map containing the mappings in {@code unfiltered} whose 236 * unfiltered}; changes to one affect the other. 250 * unfiltered} is. 264 SortedMap<K, V> unfiltered, final Predicate<? super V> valuePredicate) { 273 return filterEntries(unfiltered, entryPredicate) [all...] |
Maps.java | [all...] |
Sets.java | 722 * Returns the elements of {@code unfiltered} that satisfy a predicate. The 723 * returned set is a live view of {@code unfiltered}; changes to one affect 734 * {@code unfiltered} is. 739 * to copy {@code Iterables.filter(unfiltered, predicate)} and use the copy. 749 Set<E> unfiltered, Predicate<? super E> predicate) { 750 if (unfiltered instanceof SortedSet) { 751 return filter((SortedSet<E>) unfiltered, predicate); 753 if (unfiltered instanceof FilteredSet) { 756 FilteredSet<E> filtered = (FilteredSet<E>) unfiltered; 760 (Set<E>) filtered.unfiltered, combinedPredicate) [all...] |
Multimaps.java | [all...] |
Iterables.java | 575 * Returns the elements of {@code unfiltered} that satisfy a predicate. The 579 final Iterable<T> unfiltered, final Predicate<? super T> predicate) { 580 checkNotNull(unfiltered); 585 return Iterators.filter(unfiltered.iterator(), predicate); 591 * Returns all instances of class {@code type} in {@code unfiltered}. The 596 * @param unfiltered an iterable containing objects of any type 603 final Iterable<?> unfiltered, final Class<T> type) { 604 checkNotNull(unfiltered); 609 return Iterators.filter(unfiltered.iterator(), type); [all...] |
Iterators.java | 639 * Returns the elements of {@code unfiltered} that satisfy a predicate. 642 final Iterator<T> unfiltered, final Predicate<? super T> predicate) { 643 checkNotNull(unfiltered); 647 while (unfiltered.hasNext()) { 648 T element = unfiltered.next(); 659 * Returns all instances of class {@code type} in {@code unfiltered}. The 663 * @param unfiltered an iterator containing objects of any type 671 Iterator<?> unfiltered, Class<T> type) { 673 filter(unfiltered, Predicates.instanceOf(type)); [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Maps.java | [all...] |
Sets.java | 710 * Returns the elements of {@code unfiltered} that satisfy a predicate. The 711 * returned set is a live view of {@code unfiltered}; changes to one affect 722 * {@code unfiltered} is. 727 * to copy {@code Iterables.filter(unfiltered, predicate)} and use the copy. 737 Set<E> unfiltered, Predicate<? super E> predicate) { 738 if (unfiltered instanceof SortedSet) { 739 return filter((SortedSet<E>) unfiltered, predicate); 741 if (unfiltered instanceof FilteredSet) { 744 FilteredSet<E> filtered = (FilteredSet<E>) unfiltered; 748 (Set<E>) filtered.unfiltered, combinedPredicate) [all...] |
Multimaps.java | [all...] |
Iterables.java | 557 * Returns the elements of {@code unfiltered} that satisfy a predicate. The 561 final Iterable<T> unfiltered, final Predicate<? super T> predicate) { 562 checkNotNull(unfiltered); 567 return Iterators.filter(unfiltered.iterator(), predicate); [all...] |
Iterators.java | 621 * Returns the elements of {@code unfiltered} that satisfy a predicate. 624 final Iterator<T> unfiltered, final Predicate<? super T> predicate) { 625 checkNotNull(unfiltered); 629 while (unfiltered.hasNext()) { 630 T element = unfiltered.next(); [all...] |
/external/chromium_org/content/renderer/ |
image_loading_helper.cc | 54 const std::vector<SkBitmap>& unfiltered, 61 if (!unfiltered.size()) 71 for (std::vector<SkBitmap>::const_iterator it = unfiltered.begin(); 72 it != unfiltered.end();
|
/external/chromium_org/v8/src/ |
json.js | 63 var unfiltered = %ParseJson(TO_STRING_INLINE(text)); 65 return Revive({'': unfiltered}, '', reviver); 67 return unfiltered;
|
/external/v8/src/ |
json.js | 56 var unfiltered = %ParseJson(TO_STRING_INLINE(text)); 58 return Revive({'': unfiltered}, '', reviver); 60 return unfiltered;
|
/external/valgrind/main/tests/ |
vg_regtest.in | 40 # --keep-unfiltered: keep a copy of the unfiltered output/error output 41 # of each test by adding an extension .unfiltered.out 123 . " vg_regtest [--all, --valgrind, --valgrind-lib, --keep-unfiltered]\n" 210 } elsif ($arg =~ /^--keep-unfiltered$/) { 318 # if $keepunfiltered, copies $1 to $1.unfiltered.out 323 mysystem("cp $_[1] $_[1].unfiltered.out");
|
/frameworks/base/services/java/com/android/server/accounts/ |
AccountManagerService.java | [all...] |