Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 60 for SetPos (0.24 sec)

  1. src/cmd/go/internal/load/pkg.go

    			}
    			p.Incomplete = true
    			p.Error.setPos(importPos)
    		}
    	}
    
    	// Checked on every import because the rules depend on the code doing the importing.
    	if perr := disallowInternal(ctx, srcDir, parent, parentPath, p, stk); perr != nil {
    		perr.setPos(importPos)
    		return p, perr
    	}
    	if mode&ResolveImport != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/test.go

    	if err != nil {
    		ptestErr = &PackageError{
    			ImportStack: stk.Copy(),
    			Err:         err,
    		}
    		incomplete = true
    		embedErr := err.(*EmbedError)
    		ptestErr.setPos(p.Internal.Build.TestEmbedPatternPos[embedErr.Pattern])
    	}
    	stk.Pop()
    
    	stk.Push(p.ImportPath + "_test")
    	pxtestNeedsPtest := false
    	var pxtestIncomplete bool
    	rawXTestImports := str.StringList(p.XTestImports)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. src/html/template/escape.go

    					// {{ _eval_args_ arg1 arg2 ... argN | esc }}, so that esc can be easily
    					// merged with the escapers in s.
    					lastCmd.Args[0] = parse.NewIdentifier("_eval_args_").SetTree(nil).SetPos(lastCmd.Args[0].Position())
    					p.Cmds = appendCmd(p.Cmds, newIdentCmd(esc, p.Position()))
    					pipelineLen++
    				}
    				// If any of the commands in s that we are about to insert is equivalent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  4. src/text/template/parse/parse.go

    	case itemIdentifier:
    		checkFunc := t.Mode&SkipFuncCheck == 0
    		if checkFunc && !t.hasFunction(token.val) {
    			t.errorf("function %q not defined", token.val)
    		}
    		return NewIdentifier(token.val).SetTree(t).SetPos(token.pos)
    	case itemDot:
    		return t.newDot(token.pos)
    	case itemNil:
    		return t.newNil(token.pos)
    	case itemVariable:
    		return t.useVar(token.pos, token.val)
    	case itemField:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteS390X.go

    		if !(p.Op != OpSB && x.Uses == 1 && is20Bit(int64(i)-8) && setPos(v, x.Pos) && clobber(x)) {
    			break
    		}
    		v.reset(OpS390XSTMG2)
    		v.AuxInt = int32ToAuxInt(i - 8)
    		v.Aux = symToAux(s)
    		v.AddArg4(p, w0, w1, mem)
    		return true
    	}
    	// match: (MOVDstore [i] {s} p w2 x:(STMG2 [i-16] {s} p w0 w1 mem))
    	// cond: x.Uses == 1 && is20Bit(int64(i)-16) && setPos(v, x.Pos) && clobber(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/expr.go

    		// and would lose the init list.
    		base.Fatalf("walkExpr init == &n->ninit")
    	}
    
    	if len(n.Init()) != 0 {
    		walkStmtList(n.Init())
    		init.Append(ir.TakeInit(n)...)
    	}
    
    	lno := ir.SetPos(n)
    
    	if base.Flag.LowerW > 1 {
    		ir.Dump("before walk expr", n)
    	}
    
    	if n.Typecheck() != 1 {
    		base.Fatalf("missed typecheck: %+v", n)
    	}
    
    	if n.Type().IsUntyped() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		p.Pos = p.Pos.WithNotStmt()
    	}
    	return p
    }
    
    // Pc returns the current Prog.
    func (s *State) Pc() *obj.Prog {
    	return s.pp.Next
    }
    
    // SetPos sets the current source position.
    func (s *State) SetPos(pos src.XPos) {
    	s.pp.Pos = pos
    }
    
    // Br emits a single branch instruction and returns the instruction.
    // Not all architectures need the returned instruction, but otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    	if v < 0 {
    		return false
    	}
    	if (v & 0xFFF) == 0 {
    		v >>= 12
    	}
    	return v <= 0xFFF
    }
    
    // setPos sets the position of v to pos, then returns true.
    // Useful for setting the result of a rewrite's position to
    // something other than the default.
    func setPos(v *Value, pos src.XPos) bool {
    	v.Pos = pos
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. src/go/printer/printer.go

    	case token.QUO:
    		b = next == '*' // /*
    	case token.LSS:
    		b = next == '-' || next == '<' // <- or <<
    	case token.AND:
    		b = next == '&' || next == '^' // && or &^
    	}
    	return
    }
    
    func (p *printer) setPos(pos token.Pos) {
    	if pos.IsValid() {
    		p.pos = p.posFor(pos) // accurate position of next item
    	}
    }
    
    // print prints a list of "items" (roughly corresponding to syntactic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64.rules

      && a.Val() == 0
      && c.Val() == 0
      && setPos(v, x.Pos)
      && clobber(x)
      => (MOVOstoreconst [makeValAndOff(0,a.Off())] {s} p0 mem)
    (MOVQstoreconst [a] {s} p0 x:(MOVQstoreconst [c] {s} p1 mem))
      && config.useSSE
      && x.Uses == 1
      && sequentialAddresses(p0, p1, int64(a.Off()+8-c.Off()))
      && a.Val() == 0
      && c.Val() == 0
      && setPos(v, x.Pos)
      && clobber(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top