github.com/google/licensecheck/internal/match.reInst.arg (field)

26 uses

	github.com/google/licensecheck/internal/match (current package)
		rematch.go#L213: 	arg int32
		rematch.go#L239: 			fmt.Fprintf(&b, "word %s\n", words[inst.arg])
		rematch.go#L243: 			fmt.Fprintf(&b, "alt %d\n", i+1+int(inst.arg))
		rematch.go#L245: 			fmt.Fprintf(&b, "jump %d\n", i+1+int(inst.arg))
		rematch.go#L247: 			fmt.Fprintf(&b, "match %d\n", int(inst.arg))
		rematch.go#L251: 			targ := i + 1 + int(inst.arg)
		rematch.go#L252: 			fmt.Fprintf(&b, "cut [%d, %d]\n", targ, targ+1+int(p[targ].arg))
		rematch.go#L278: 	return append(c.prog, reInst{op: instMatch, arg: m}), c.err
		rematch.go#L292: 			c.prog = append(c.prog, reInst{op: instWord, arg: int32(w)})
		rematch.go#L321: 		c.prog[alt].arg = int32(len(c.prog) - (alt + 1))
		rematch.go#L346: 			c.prog[a].arg = int32((jumps[i] + 1) - (a + 1))
		rematch.go#L352: 			c.prog[j].arg = int32(end - (j + 1))
		rematch.go#L367: 			c.prog = append(c.prog, reInst{op: instAlt, arg: int32(end - (len(c.prog) + 1))})
		rematch.go#L387: 	c.prog = append(c.prog, reInst{op: instCut, arg: int32(cut.start - (len(c.prog) + 1))})
		rematch.go#L476: 				prog = append(prog, reInst{op: instMatch, arg: int32(i)})
		rematch.go#L483: 			prog[alt].arg = int32(len(prog) - (alt + 1))
		rematch.go#L525: 		s.add(prog, pc+1+prog[pc].arg)
		rematch.go#L527: 		s.add(prog, pc+1+prog[pc].arg)
		rematch.go#L542: 			cuts = append(cuts, pc+1+prog[pc].arg)
		rematch.go#L553: 			for len(cuts) > 0 && pc > cuts[0]+1+prog[cuts[0]].arg {
		rematch.go#L556: 			if len(cuts) > 0 && cuts[0] <= pc && pc <= cuts[0]+1+prog[cuts[0]].arg {
		rematch.go#L575: 			if w == WordID(inst.arg) {
		rematch.go#L592: 			if match == -1 || match > inst.arg {
		rematch.go#L593: 				match = inst.arg
		rematch.go#L622: 				if w == WordID(inst.arg) {
		rematch.go#L626: 			words = append(words, WordID(inst.arg))