Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for trimAndCollapseFrom (0.19 seconds)

  1. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

          assertEqualsSame(expected, in, is('-').trimAndCollapseFrom(in, replacement));
          assertEqualsSame(expected, in, is('-').or(is('#')).trimAndCollapseFrom(in, replacement));
          assertEqualsSame(expected, in, isNot('x').trimAndCollapseFrom(in, replacement));
          assertEqualsSame(expected, in, is('x').negate().trimAndCollapseFrom(in, replacement));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  2. guava/src/com/google/common/base/CharMatcher.java

       * groups of matching BMP characters at the start or end of the sequence are removed without
       * replacement.
       */
      public String trimAndCollapseFrom(CharSequence sequence, char replacement) {
        // This implementation avoids unnecessary allocation.
        int len = sequence.length();
        int first = 0;
        int last = len - 1;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 54.4K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

       * groups of matching BMP characters at the start or end of the sequence are removed without
       * replacement.
       */
      public String trimAndCollapseFrom(CharSequence sequence, char replacement) {
        // This implementation avoids unnecessary allocation.
        int len = sequence.length();
        int first = 0;
        int last = len - 1;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 53.9K bytes
    - Click Count (0)
Back to Top