Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for findtext (0.18 sec)

  1. src/cmd/cover/cover.go

    	mdb     *encodemeta.CoverageMetaDataBuilder
    	fn      Func
    	pkg     *Package
    }
    
    // findText finds text in the original source, starting at pos.
    // It correctly skips over comments and assumes it need not
    // handle quoted strings.
    // It returns a byte offset within f.src.
    func (f *File) findText(pos token.Pos, text string) int {
    	b := []byte(text)
    	start := f.offset(pos)
    	i := start
    	s := f.content
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. src/regexp/find_test.go

    // only the FindAllStringSubmatchIndex result.
    type FindTest struct {
    	pat     string
    	text    string
    	matches [][]int
    }
    
    func (t FindTest) String() string {
    	return fmt.Sprintf("pat: %#q text: %#q", t.pat, t.text)
    }
    
    var findTests = []FindTest{
    	{``, ``, build(1, 0, 0)},
    	{`^abcdefg`, "abcdefg", build(1, 0, 7)},
    	{`a+`, "baaab", build(1, 1, 4)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  3. src/regexp/all_test.go

    		t.Errorf("Match failure on %s: %t should be %t", test, m, len(test.matches) > 0)
    	}
    }
    
    func TestMatch(t *testing.T) {
    	for _, test := range findTests {
    		matchTest(t, &test)
    	}
    }
    
    func matchFunctionTest(t *testing.T, test *FindTest) {
    	m, err := MatchString(test.pat, test.text)
    	if err == nil {
    		return
    	}
    	if m != (len(test.matches) > 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitTestClassExecutionResult.groovy

        }
    
        TestClassExecutionResult assertTestsExecuted(String... testNames) {
            Map<String, Node> testMethods = findTests().findAll { name, element ->
                element."skipped".size() == 0 // Exclude skipped test.
            }
            assertThat(testMethods.keySet(), CoreMatchers.equalTo(testNames as Set))
            this
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Collections2.java

        }
    
        void calculateNextPermutation() {
          int j = findNextJ();
          if (j == -1) {
            nextPermutation = null;
            return;
          }
          /*
           * requireNonNull is safe because we don't clear nextPermutation until we're done calling this
           * method.
           */
          requireNonNull(nextPermutation);
    
          int l = findNextL(j);
          Collections.swap(nextPermutation, j, l);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Collections2.java

        }
    
        void calculateNextPermutation() {
          int j = findNextJ();
          if (j == -1) {
            nextPermutation = null;
            return;
          }
          /*
           * requireNonNull is safe because we don't clear nextPermutation until we're done calling this
           * method.
           */
          requireNonNull(nextPermutation);
    
          int l = findNextL(j);
          Collections.swap(nextPermutation, j, l);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    // binutils objdump binary. No version check is performed.
    func isBuObjdump(output string) bool {
    	return strings.Contains(output, "GNU objdump")
    }
    
    // findExe looks for an executable command on a set of paths.
    // If it cannot find it, returns cmd.
    func findExe(cmd string, paths []string) (string, bool) {
    	for _, p := range paths {
    		cp := filepath.Join(p, cmd)
    		if c, err := exec.LookPath(cp); err == nil {
    			return c, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        const list = elems.get(src);
        if (list) {
          for (const elem of list) {
            elem.classList.toggle(cl, value);
          }
        }
      }
    
      // fitText sets text and font-size clipped to the specified width w.
      function fitText(t, avail, textList) {
        // Find first entry in textList that fits.
        let width = avail;
        textContext.font = FONT_SIZE + 'pt Arial';
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. src/net/mail/message.go

    // isWSP reports whether r is a WSP (white space).
    // WSP is a space or horizontal tab (RFC 5234 Appendix B).
    func isWSP(r rune) bool {
    	return r == ' ' || r == '\t'
    }
    
    // isDtext reports whether r is an RFC 5322 dtext character.
    func isDtext(r rune) bool {
    	// Printable US-ASCII, excluding "[", "]", or "\".
    	if r == '[' || r == ']' || r == '\\' {
    		return false
    	}
    	return isVchar(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. src/go/printer/printer.go

    				p.state = inEscape
    				m = n + 1 // +1: skip tabwriter.Escape
    			default:
    				_, err = p.output.Write(p.space)
    				p.state = inText
    				m = n
    			}
    		case inEscape:
    			if b == tabwriter.Escape {
    				_, err = p.output.Write(data[m:n])
    				p.resetSpace()
    			}
    		case inText:
    			switch b {
    			case '\t', ' ':
    				_, err = p.output.Write(data[m:n])
    				p.resetSpace()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
Back to top