HomeSort by relevance Sort by last modified time
    Searched full:occurrences (Results 26 - 50 of 685) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultiset.java 279 public final int add(E element, int occurrences) {
291 public final int remove(Object element, int occurrences) {
504 * Adds a number of occurrences of an element to this {@code
508 * @param occurrences the number of occurrences of the element to add. May
512 * @throws IllegalArgumentException if {@code occurrences} is negative, or
514 * occurrences of the element
516 public Builder<E> addCopies(E element, int occurrences) {
517 contents.add(checkNotNull(element), occurrences);
522 * Adds or removes the necessary occurrences of an element such that th
    [all...]
TreeMultiset.java 241 public int add(@Nullable E element, int occurrences) {
242 checkNonnegative(occurrences, "occurrences");
243 if (occurrences == 0) {
250 AvlNode<E> newRoot = new AvlNode<E>(element, occurrences);
256 AvlNode<E> newRoot = root.add(comparator(), element, occurrences, result);
262 public int remove(@Nullable Object element, int occurrences) {
263 checkNonnegative(occurrences, "occurrences");
264 if (occurrences == 0)
    [all...]
LinkedHashMultiset.java 28 * occurrences of an element are removed, after which that element is added to
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
ReplaceTextCommentScanner.java 23 * Replaces all occurrences of {@code oldText} with {@code newText}.
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 5 in it were fixed. This is mainly used to remove double occurrences of
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 5 in it were fixed. This is mainly used to remove double occurrences of
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 5 in it were fixed. This is mainly used to remove double occurrences of
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 5 in it were fixed. This is mainly used to remove double occurrences of
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
strop.so 
  /toolchain/binutils/binutils-2.25/gold/testsuite/
dwp_test_1.sh 43 echo "Found $n occurrences (should find $3):"
dwp_test_2.sh 43 echo "Found $n occurrences (should find $3):"
  /external/chromium-trace/catapult/dashboard/docs/
code-snippets.md 27 occurrences = [[], [], []]
31 occurrences[i].append(part)
34 counters = [(type, collections.Counter(x)) for type, x in zip(types, occurrences)]
  /external/guava/guava/src/com/google/common/collect/
Multisets.java 155 @Override public int remove(Object element, int occurrences) {
329 public int add(@Nullable E element, int occurrences) {
332 return unfiltered.add(element, occurrences);
336 public int remove(@Nullable Object element, int occurrences) {
337 checkNonnegative(occurrences, "occurrences");
338 if (occurrences == 0) {
341 return contains(element) ? unfiltered.remove(element, occurrences) : 0;
370 * not contained in {@code multiset1}, with repeated occurrences of the same
447 * occurrences of the same element appearing consecutively
    [all...]
FilteredEntryMultimap.java 335 public int remove(@Nullable Object key, int occurrences) {
336 checkNonnegative(occurrences, "occurrences");
337 if (occurrences == 0) {
352 if (oldCount <= occurrences) {
ForwardingMultiset.java 66 public int add(E element, int occurrences) {
67 return delegate().add(element, occurrences);
71 public int remove(Object element, int occurrences) {
72 return delegate().remove(element, occurrences);
ImmutableSet.java 99 * occurrences of an element (according to {@link Object#equals}) after the
110 * occurrences of an element (according to {@link Object#equals}) after the
121 * occurrences of an element (according to {@link Object#equals}) after the
132 * occurrences of an element (according to {@link Object#equals}) after the
143 * occurrences of an element (according to {@link Object#equals}) after the
265 * occurrences of an element (according to {@link Object#equals}) after the
284 * occurrences of an element (according to {@link Object#equals}) after the
307 * occurrences of an element (according to {@link Object#equals}) after the
330 * occurrences of an element (according to {@link Object#equals}) after the
ImmutableSortedMultiset.java 461 * Adds a number of occurrences of an element to this {@code ImmutableSortedMultiset}.
464 * @param occurrences the number of occurrences of the element to add. May be zero, in which
468 * @throws IllegalArgumentException if {@code occurrences} is negative, or if this operation
469 * would result in more than {@link Integer#MAX_VALUE} occurrences of the element
472 public Builder<E> addCopies(E element, int occurrences) {
473 super.addCopies(element, occurrences);
478 * Adds or removes the necessary occurrences of an element such that the element attains the
481 * @param element the element to add or remove occurrences of
  /prebuilts/gdb/darwin-x86/lib/python2.7/
re.py 80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
146 non-overlapping occurrences of the pattern in string by the
156 non-overlapping occurrences of the pattern in the source
165 """Split the source string by the occurrences of the pattern,
  /prebuilts/gdb/linux-x86/lib/python2.7/
re.py 80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
146 non-overlapping occurrences of the pattern in string by the
156 non-overlapping occurrences of the pattern in the source
165 """Split the source string by the occurrences of the pattern,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
re.py 80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
146 non-overlapping occurrences of the pattern in string by the
156 non-overlapping occurrences of the pattern in the source
165 """Split the source string by the occurrences of the pattern,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
re.py 80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
146 non-overlapping occurrences of the pattern in string by the
156 non-overlapping occurrences of the pattern in the source
165 """Split the source string by the occurrences of the pattern,
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractContainerTester.java 121 * default {@code expectContents()} implementation, the number of occurrences
123 * created, and the number of occurrences of all other elements has not
135 * occurrences of {@code existingElement} is unchanged.
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
startup_unittest.py 51 # occurrences of two distinct events.
  /libcore/ojluni/src/main/java/java/lang/
ThreadDeath.java 44 * occurrences of {@code Exception} and then discard the exception.
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessageEmail.java 70 String tmpBody = mEmailBody.replaceAll("END:MSG", "/END\\:MSG"); // Replace any occurrences of END:MSG with \END:MSG

Completed in 987 milliseconds

12 3 4 5 6 7 8 91011>>