Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InstAltMatch (0.92 sec)

  1. src/regexp/onepass.go

    }
    
    // onePassNext selects the next actionable state of the prog, based on the input character.
    // It should only be called when i.Op == InstAlt or InstAltMatch, and from the one-pass machine.
    // One of the alternates may ultimately lead without input to end of line. If the instruction
    // is InstAltMatch the path to the InstMatch is in i.Out, the normal node in i.Next.
    func onePassNext(i *onePassInst, r rune) uint32 {
    	next := i.MatchRunePos(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/regexp/syntax/prog.go

    }
    
    // An InstOp is an instruction opcode.
    type InstOp uint8
    
    const (
    	InstAlt InstOp = iota
    	InstAltMatch
    	InstCapture
    	InstEmptyWidth
    	InstMatch
    	InstFail
    	InstNop
    	InstRune
    	InstRune1
    	InstRuneAny
    	InstRuneAnyNotNL
    )
    
    var instOpNames = []string{
    	"InstAlt",
    	"InstAltMatch",
    	"InstCapture",
    	"InstEmptyWidth",
    	"InstMatch",
    	"InstFail",
    	"InstNop",
    	"InstRune",
    	"InstRune1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"FoldCase", Const, 0},
    		{"Inst", Type, 0},
    		{"Inst.Arg", Field, 0},
    		{"Inst.Op", Field, 0},
    		{"Inst.Out", Field, 0},
    		{"Inst.Rune", Field, 0},
    		{"InstAlt", Const, 0},
    		{"InstAltMatch", Const, 0},
    		{"InstCapture", Const, 0},
    		{"InstEmptyWidth", Const, 0},
    		{"InstFail", Const, 0},
    		{"InstMatch", Const, 0},
    		{"InstNop", Const, 0},
    		{"InstOp", Type, 0},
    		{"InstRune", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top