Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 265 for p$ (0.03 sec)

  1. src/go/printer/testdata/parser.go

    	p.openScope()
    	p.pkgScope = p.topScope
    
    	// for the same reason, set up a label scope
    	p.openLabelScope()
    }
    
    // ----------------------------------------------------------------------------
    // Scoping support
    
    func (p *parser) openScope() {
    	p.topScope = ast.NewScope(p.topScope)
    }
    
    func (p *parser) closeScope() {
    	p.topScope = p.topScope.Outer
    }
    
    func (p *parser) openLabelScope() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    		case p.tok.IsLiteral():
    			p.printTrace(s, p.lit)
    		case p.tok.IsOperator(), p.tok.IsKeyword():
    			p.printTrace("\"" + s + "\"")
    		default:
    			p.printTrace(s)
    		}
    	}
    
    	for {
    		p.pos, p.tok, p.lit = p.scanner.Scan()
    		if p.tok == token.COMMENT {
    			if p.top && strings.HasPrefix(p.lit, "//go:build") {
    				if x, err := constraint.Parse(p.lit); err == nil {
    					p.goVersion = constraint.GoVersion(x)
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. src/go/printer/nodes.go

    			p.setPos(x.Rparen)
    			p.print(token.RPAREN)
    		}
    
    	case *ast.SelectorExpr:
    		p.selectorExpr(x, depth, false)
    
    	case *ast.TypeAssertExpr:
    		p.expr1(x.X, token.HighestPrec, depth)
    		p.print(token.PERIOD)
    		p.setPos(x.Lparen)
    		p.print(token.LPAREN)
    		if x.Type != nil {
    			p.expr(x.Type)
    		} else {
    			p.print(token.TYPE)
    		}
    		p.setPos(x.Rparen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    //	------------------------------------
    //	P*[]int     T/F      P       *[]int
    //	P*E         T        P       *E
    //	P*E         F        nil     P*E
    //	P([]int)    T/F      P       []int
    //	P(E)        T        P       E
    //	P(E)        F        nil     P(E)
    //	P*E|F|~G    T/F      P       *E|F|~G
    //	P*E|F|G     T        P       *E|F|G
    //	P*E|F|G     F        nil     P*E|F|G
    func extractName(x Expr, force bool) (*Name, Expr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    			p.As = AORI
    		case AXOR:
    			p.As = AXORI
    		case ASLL:
    			p.As = ASLLI
    		case ASRL:
    			p.As = ASRLI
    		case ASRA:
    			p.As = ASRAI
    		case AADDW:
    			p.As = AADDIW
    		case ASUBW:
    			p.As, p.From.Offset = AADDIW, -p.From.Offset
    		case ASLLW:
    			p.As = ASLLIW
    		case ASRLW:
    			p.As = ASRLIW
    		case ASRAW:
    			p.As = ASRAIW
    		case AROR:
    			p.As = ARORI
    		case ARORW:
    			p.As = ARORIW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    		p.From.Reg = r2
    		p.Reg = r1
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = r
    
    	case ssa.OpPPC64ADDZE:
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = v.Args[0].Reg()
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg0()
    
    	case ssa.OpPPC64ADDZEzero, ssa.OpPPC64SUBZEzero:
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = ppc64.REG_R0
    		p.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    // parseRightParen handles a ) in the input.
    func (p *parser) parseRightParen() error {
    	p.concat()
    	if p.swapVerticalBar() {
    		// pop vertical bar
    		p.stack = p.stack[:len(p.stack)-1]
    	}
    	p.alternate()
    
    	n := len(p.stack)
    	if n < 2 {
    		return &Error{ErrUnexpectedParen, p.wholeRegexp}
    	}
    	re1 := p.stack[n-1]
    	re2 := p.stack[n-2]
    	p.stack = p.stack[:n-2]
    	if re2.Op != opLeftParen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/asm.go

    			r = int(p.To.Reg)
    		}
    		o2 = OP_RRR(c.oprrr(p.As), uint32(REGTMP), uint32(r), uint32(p.To.Reg))
    
    	case 11: // jmp lbra
    		v := int32(0)
    		if p.To.Target() != nil {
    			v = int32(p.To.Target().Pc-p.Pc) >> 2
    		}
    		o1 = OP_B_BL(c.opirr(p.As), uint32(v))
    		if p.To.Sym == nil {
    			if p.As == AJMP {
    				break
    			}
    			p.To.Sym = c.cursym.Func().Text.From.Sym
    			p.To.Offset = p.To.Target().Pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/asm5.go

    	 */
    
    	p = c.cursym.Func().Text
    	c.autosize = p.To.Offset + 4
    	c.cursym.Grow(c.cursym.Size)
    
    	bp := c.cursym.P
    	pc = int32(p.Pc) // even p->link might need extra padding
    	var v int
    	for p = p.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    		o = c.oplook(p)
    		opc = int32(p.Pc)
    		c.asmout(p, o, out[:])
    		m = int(o.size)
    
    		if m%4 != 0 || p.Pc%4 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    	for _, pInfo := range p.unschedulablePods.podInfoMap {
    		result = append(result, pInfo.Pod)
    	}
    	return result, fmt.Sprintf(pendingPodsSummary, p.activeQ.Len(), p.podBackoffQ.Len(), len(p.unschedulablePods.podInfoMap))
    }
    
    // Close closes the priority queue.
    func (p *PriorityQueue) Close() {
    	p.lock.Lock()
    	defer p.lock.Unlock()
    	close(p.stop)
    	p.closed = true
    	p.cond.Broadcast()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top