Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for ofsr (0.12 sec)

  1. src/cmd/compile/internal/typecheck/stmt.go

    func tcCheckNil(n *ir.UnaryExpr) ir.Node {
    	n.X = Expr(n.X)
    	if !n.X.Type().IsPtrShaped() {
    		base.FatalfAt(n.Pos(), "%L is not pointer shaped", n.X)
    	}
    	return n
    }
    
    // tcFor typechecks an OFOR node.
    func tcFor(n *ir.ForStmt) ir.Node {
    	Stmts(n.Init())
    	n.Cond = Expr(n.Cond)
    	n.Cond = DefaultLit(n.Cond, nil)
    	if n.Cond != nil {
    		t := n.Cond.Type()
    		if t != nil && !t.IsBoolean() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/typecheck.go

    			n = ir.NewBlockStmt(n.Pos(), nil)
    		}
    		return n
    
    	case ir.ODEFER, ir.OGO:
    		n := n.(*ir.GoDeferStmt)
    		n.Call = typecheck(n.Call, ctxStmt|ctxExpr)
    		tcGoDefer(n)
    		return n
    
    	case ir.OFOR:
    		n := n.(*ir.ForStmt)
    		return tcFor(n)
    
    	case ir.OIF:
    		n := n.(*ir.IfStmt)
    		return tcIf(n)
    
    	case ir.ORETURN:
    		n := n.(*ir.ReturnStmt)
    		return tcReturn(n)
    
    	case ir.OTAILCALL:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/order.go

    		o.out = append(o.out, n)
    		o.popTemp(t)
    
    	// Clean temporaries from condition evaluation at
    	// beginning of loop body and after for statement.
    	case ir.OFOR:
    		n := n.(*ir.ForStmt)
    		t := o.markTemp()
    		n.Cond = o.exprInPlace(n.Cond)
    		orderBlock(&n.Body, o.free)
    		n.Post = orderStmtInPlace(n.Post, o.free)
    		o.out = append(o.out, n)
    		o.popTemp(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    			case ir.OBREAK:
    				to = lab.breakTarget
    			}
    		}
    
    		b := s.endBlock()
    		b.Pos = s.lastPos.WithIsStmt() // Do this even if b is an empty block.
    		b.AddEdgeTo(to)
    
    	case ir.OFOR:
    		// OFOR: for Ninit; Left; Right { Nbody }
    		// cond (Left); body (Nbody); incr (Right)
    		n := n.(*ir.ForStmt)
    		base.Assert(!n.DistinctVars) // Should all be rewritten before escape analysis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    *.devcdnaccesso.com
    
    // Acorn Labs : https://acorn.io
    // Submitted by Craig Jellick <******@****.***>
    *.on-acorn.io
    
    // ActiveTrail: https://www.activetrail.biz/
    // Submitted by Ofer Kalaora <******@****.***>
    activetrail.biz
    
    // Adobe : https://www.adobe.com/
    // Submitted by Ian Boston <******@****.***> and Lars Trieloff <******@****.***>
    adobeaemcloud.com
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top