Lines Matching full:re2
159 re2 := p.stack[n-2]
160 if re1.Op != OpLiteral || re2.Op != OpLiteral || re1.Flags&FoldCase != re2.Flags&FoldCase {
164 // Push re1 into re2.
165 re2.Rune = append(re2.Rune, re1.Rune...)
1194 re2 := p.stack[n-2]
1195 if re2.Op == opVerticalBar {
1202 p.stack[n-1] = re2
1223 re2 := p.stack[n-2]
1225 if re2.Op != opLeftParen {
1229 p.flags = re2.Flags
1230 if re2.Cap == 0 {
1234 re2.Op = OpCapture
1235 re2.Sub = re2.Sub0[:1]
1236 re2.Sub[0] = re1
1237 p.push(re2)