type github.com/google/licensecheck/internal/match.phrase

20 uses

	github.com/google/licensecheck/internal/match (current package)
		regexp.go#L107: 	start map[phrase]struct{}
		regexp.go#L113: type phrase [2]WordID
		regexp.go#L135: 	start := make(map[phrase]struct{})
		regexp.go#L197: 	p := phrase{BadWord, BadWord}
		resyntax.go#L495: func (re *reSyntax) leadingPhrases() []phrase {
		resyntax.go#L501: 		return []phrase{{BadWord, BadWord}, {AnyWord, BadWord}, {AnyWord, AnyWord}}
		resyntax.go#L504: 		return []phrase{{BadWord, BadWord}}
		resyntax.go#L508: 		var p phrase
		resyntax.go#L510: 			p = phrase{BadWord, BadWord}
		resyntax.go#L512: 			p = phrase{w[0], BadWord}
		resyntax.go#L514: 			p = phrase{w[0], w[1]}
		resyntax.go#L516: 		return []phrase{p}
		resyntax.go#L525: 		list = append(list, phrase{BadWord, BadWord})
		resyntax.go#L529: 		var list []phrase
		resyntax.go#L530: 		have := make(map[phrase]bool)
		resyntax.go#L542: 		xs := []phrase{{BadWord, BadWord}}
		resyntax.go#L554: 			have := make(map[phrase]bool)
		resyntax.go#L555: 			var xys []phrase
		resyntax.go#L565: 					var xy phrase
		resyntax.go#L569: 						xy = phrase{x[0], y[0]}