Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,786 for zcase (0.07 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    	case REG_CR + 5:
    		return Ycr5
    	case REG_CR + 6:
    		return Ycr6
    	case REG_CR + 7:
    		return Ycr7
    	case REG_CR + 8:
    		return Ycr8
    
    	case REG_DR + 0:
    		return Ydr0
    	case REG_DR + 1:
    		return Ydr1
    	case REG_DR + 2:
    		return Ydr2
    	case REG_DR + 3:
    		return Ydr3
    	case REG_DR + 4:
    		return Ydr4
    	case REG_DR + 5:
    		return Ydr5
    	case REG_DR + 6:
    		return Ydr6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/Case.kt

    package okhttp3.internal.http2.hpackjson
    
    import okhttp3.internal.http2.Header
    import okio.ByteString
    
    /**
     * Representation of an individual case (set of headers and wire format). There are many cases for a
     * single story.  This class is used reflectively with Moshi to parse stories.
     */
    data class Case(
      val seqno: Int = 0,
      val wire: ByteString? = null,
      val headers: List<Map<String, String>>,
    ) : Cloneable {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 10:26:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/stmt.go

    	lno := ir.SetPos(sel)
    	Stmts(sel.Init())
    	for _, ncase := range sel.Cases {
    		if ncase.Comm == nil {
    			// default
    			if def != nil {
    				base.ErrorfAt(ncase.Pos(), errors.DuplicateDefault, "multiple defaults in select (first at %v)", ir.Line(def))
    			} else {
    				def = ncase
    			}
    		} else {
    			n := Stmt(ncase.Comm)
    			ncase.Comm = n
    			oselrecv2 := func(dst, recv ir.Node, def bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. src/runtime/select.go

    	for i, rc := range cases {
    		var j int
    		switch rc.dir {
    		case selectDefault:
    			dflt = i
    			continue
    		case selectSend:
    			j = nsends
    			nsends++
    		case selectRecv:
    			nrecvs++
    			j = len(cases) - nrecvs
    		}
    
    		sel[j] = scase{c: rc.ch, elem: rc.val}
    		orig[j] = i
    	}
    
    	// Only a default case.
    	if nsends+nrecvs == 0 {
    		return dflt, false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/switch.go

    	// Now generate all the case bodies
    	for i, ncase := range sw.Cases {
    		sw.Compiled.Append(ir.NewLabelStmt(ncase.Pos(), labels[i]))
    		if caseVar := ncase.Var; caseVar != nil {
    			val := s.srcName
    			if len(ncase.List) == 1 {
    				// single type. We have to downcast the input value to the target type.
    				if ncase.List[0].Op() == ir.OTYPE { // single compile-time known type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. src/unicode/letter.go

    				// is odd so we take the low bit from _case.
    				return rune(cr.Lo) + ((r-rune(cr.Lo))&^1 | rune(_case&1)), true
    			}
    			return r + delta, true
    		}
    		if r < rune(cr.Lo) {
    			hi = m
    		} else {
    			lo = m + 1
    		}
    	}
    	return r, false
    }
    
    // To maps the rune to the specified case: [UpperCase], [LowerCase], or [TitleCase].
    func To(_case int, r rune) rune {
    	r, _ = to(_case, r, CaseRanges)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/stmt.go

    		ir.OLABEL,
    		ir.OJUMPTABLE,
    		ir.OINTERFACESWITCH,
    		ir.ODCL,
    		ir.OCHECKNIL:
    		return n
    
    	case ir.OBLOCK:
    		n := n.(*ir.BlockStmt)
    		walkStmtList(n.List)
    		return n
    
    	case ir.OCASE:
    		base.Errorf("case statement out of place")
    		panic("unreachable")
    
    	case ir.ODEFER:
    		n := n.(*ir.GoDeferStmt)
    		ir.CurFunc.SetHasDefer(true)
    		ir.CurFunc.NumDefers++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/fmt.go

    		}
    		if n.Tag != nil {
    			fmt.Fprintf(s, " %v ", n.Tag)
    		}
    		fmt.Fprintf(s, " { %v }", n.Cases)
    
    	case OCASE:
    		n := n.(*CaseClause)
    		if len(n.List) != 0 {
    			fmt.Fprintf(s, "case %.v", n.List)
    		} else {
    			fmt.Fprint(s, "default")
    		}
    		fmt.Fprintf(s, ": %v", n.Body)
    
    	case OBREAK, OCONTINUE, OGOTO, OFALL:
    		n := n.(*BranchStmt)
    		if n.Label != nil {
    			fmt.Fprintf(s, "%v %v", n.Op(), n.Label)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    		return
    	}
    
    	// determine token string
    	var tok string
    	switch p.tok {
    	case _Name:
    		tok = "name " + p.lit
    	case _Semi:
    		tok = p.lit
    	case _Literal:
    		tok = "literal " + p.lit
    	case _Operator:
    		tok = p.op.String()
    	case _AssignOp:
    		tok = p.op.String() + "="
    	case _IncOp:
    		tok = p.op.String()
    		tok += tok
    	default:
    		tok = tokstring(p.tok)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. test/live.go

    	if b {
    		select { // ERROR "live at call to selectgo:( .autotmp_[0-9]+)+$" "stack object .autotmp_[0-9]+ \[4\]runtime.scase$"
    		case <-fc38():
    			printnl()
    		case fc38() <- *fi38(1): // ERROR "live at call to fc38:( .autotmp_[0-9]+)+$" "live at call to fi38:( .autotmp_[0-9]+)+$" "stack object .autotmp_[0-9]+ string$"
    			printnl()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top