Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testFindAllIndex (0.16 sec)

  1. src/regexp/find_test.go

    			}
    		}
    	}
    }
    
    func TestFindAllIndex(t *testing.T) {
    	for _, test := range findTests {
    		testFindAllIndex(&test, MustCompile(test.pat).FindAllIndex([]byte(test.text), -1), t)
    	}
    }
    
    func TestFindAllStringIndex(t *testing.T) {
    	for _, test := range findTests {
    		testFindAllIndex(&test, MustCompile(test.pat).FindAllStringIndex(test.text, -1), t)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  2. src/index/suffixarray/suffixarray_test.go

    		for i, r := range res {
    			e := exp[i]
    			if r != e {
    				t.Errorf("test %q, lookup %q, result %d: expected index %d; got %d", tc.name, s, i, e, r)
    			}
    		}
    	}
    }
    
    func testFindAllIndex(t *testing.T, tc *testCase, x *Index, rx *regexp.Regexp, n int) {
    	res := x.FindAllIndex(rx, n)
    	exp := rx.FindAllStringIndex(tc.source, n)
    
    	// check that the lengths match
    	if len(res) != len(exp) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top