github.com/google/licensecheck/internal/match.Word.Lo (field)

14 uses

	github.com/google/licensecheck/internal/match (current package)
		dict.go#L73: 	Lo int32 // Word appears at text[Lo:Hi].
		rematch.go#L851: 		have := toFold(text[words[i].Lo:words[i].Hi])
		rematch.go#L854: 			have2 = toFold(text[words[i+1].Lo:words[i+1].Hi])
		rematch.go#L916: 					text[words[start].Lo:words[i].Lo], "|",
		rematch.go#L917: 					text[words[i].Lo:words[i].Hi], "»\n")
		rematch.go#L939: 		println("DFA ran out of input at «", text[words[i-10].Lo:], "|", "EOF", "»\n")

	github.com/google/licensecheck
		scan.go#L156: 				if u := urlScanRE.FindIndex(text[w.Lo:]); u != nil && (m.Start == len(words) || int(w.Lo)+u[1] <= int(words[m.Start].Lo)) {
		scan.go#L157: 					u0, u1 := int(w.Lo)+u[0], int(w.Lo)+u[1]
		scan.go#L181: 		start := int(words[m.Start].Lo) // byte offset (unlike m.Start)
		scan.go#L194: 			next := int(words[m.End].Lo)