Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for parare (1.05 sec)

  1. src/cmd/asm/internal/asm/parse.go

    	return tok
    }
    
    func (p *Parser) back() {
    	if p.inputPos == 0 {
    		p.errorf("internal error: backing up before BOL")
    	} else {
    		p.inputPos--
    	}
    }
    
    func (p *Parser) peek() lex.ScanToken {
    	if p.more() {
    		return p.input[p.inputPos].ScanToken
    	}
    	return scanner.EOF
    }
    
    func (p *Parser) more() bool {
    	return p.inputPos < len(p.input)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/ast.go

    // license that can be found in the LICENSE file.
    
    // Parse input AST and prepare Prog structure.
    
    package main
    
    import (
    	"fmt"
    	"go/ast"
    	"go/format"
    	"go/parser"
    	"go/scanner"
    	"go/token"
    	"os"
    	"strings"
    )
    
    func parse(name string, src []byte, flags parser.Mode) *ast.File {
    	ast1, err := parser.ParseFile(fset, name, src, flags)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/abi.go

    	fn.Pragma |= ir.Nosplit
    
    	// Generate call. Use tail call if no params and no returns,
    	// but a regular call otherwise.
    	//
    	// Note: ideally we would be using a tail call in cases where
    	// there are params but no returns for ABI0->ABIInternal wrappers,
    	// provided that all params fit into registers (e.g. we don't have
    	// to allocate any stack space). Doing this will require some
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/build_read.go

    	// we are sure we don't change the errors that go/parser returns.
    	if r.err == errSyntax {
    		r.err = nil
    		for r.err == nil && !r.eof {
    			r.readByte()
    		}
    		info.header = r.buf
    	}
    	if r.err != nil {
    		return r.err
    	}
    
    	if info.fset == nil {
    		return nil
    	}
    
    	// Parse file header & record imports.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. api/go1.19.txt

    pkg go/doc/comment, type Paragraph struct, Text []Text #51082
    pkg go/doc/comment, type Parser struct #51082
    pkg go/doc/comment, type Parser struct, LookupPackage func(string) (string, bool) #51082
    pkg go/doc/comment, type Parser struct, LookupSym func(string, string) bool #51082
    pkg go/doc/comment, type Parser struct, Words map[string]string #51082
    pkg go/doc/comment, type Plain string #51082
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/operand_test.go

    	parser.allowABI = true
    	testOperandParser(t, parser, amd64RuntimeOperandTests)
    	testBadOperandParser(t, parser, amd64BadOperandRuntimeTests)
    }
    
    func Test386OperandParser(t *testing.T) {
    	parser := newParser("386")
    	testOperandParser(t, parser, x86OperandTests)
    }
    
    func TestARMOperandParser(t *testing.T) {
    	parser := newParser("arm")
    	testOperandParser(t, parser, armOperandTests)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/fmt.go

    }
    
    func formatParams(b *bytes.Buffer, params []*Field, mode fmtMode, visited map[*Type]int) {
    	b.WriteByte('(')
    	fieldVerb := 'v'
    	switch mode {
    	case fmtTypeID, fmtTypeIDName, fmtGo:
    		// no argument names on function signature, and no "noescape"/"nosplit" tags
    		fieldVerb = 'S'
    	}
    	for i, param := range params {
    		if i != 0 {
    			b.WriteString(", ")
    		}
    		fldconv(b, param, fieldVerb, mode, visited, true)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. src/cmd/gofmt/gofmt.go

    var fdSem = make(chan bool, 200)
    
    var (
    	rewrite    func(*token.FileSet, *ast.File) *ast.File
    	parserMode parser.Mode
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: gofmt [flags] [path ...]\n")
    	flag.PrintDefaults()
    }
    
    func initParserMode() {
    	parserMode = parser.ParseComments
    	if *allErrors {
    		parserMode |= parser.AllErrors
    	}
    	// It's only -r that makes use of go/ast's object resolution,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/link.go

    	// directive.
    	Module string
    	// Name holds the WASM imported function name specified by the
    	// //go:wasmimport directive.
    	Name string
    	// Params holds the imported function parameter fields.
    	Params []WasmField
    	// Results holds the imported function result fields.
    	Results []WasmField
    }
    
    func (wi *WasmImport) CreateSym(ctxt *Link) *LSym {
    	var sym LSym
    
    	var b [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    		t.Errorf("testcase %q: Results mismatch for %q: got:\n%swant:\n%s",
    			tc, dfn, rgot, rwant)
    	}
    	// Compare receiver + params.
    	pgot := propBitsToString[ParamPropBits](dfp.ParamFlags)
    	pwant := propBitsToString[ParamPropBits](efp.ParamFlags)
    	if pgot != pwant {
    		t.Errorf("testcase %q: Params mismatch for %q: got:\n%swant:\n%s",
    			tc, dfn, pgot, pwant)
    	}
    	// Compare call sites.
    	for k, ve := range ecsites {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top