Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tweens (1.13 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    }
    
    // Subtag returns the subtag for which the error occurred.
    func (e ValueError) Subtag() string {
    	return string(e.tag())
    }
    
    // scanner is used to scan BCP 47 tokens, which are separated by _ or -.
    type scanner struct {
    	b     []byte
    	bytes [max99thPercentileSize]byte
    	token []byte
    	start int // start position of the current token
    	end   int // end position of the current token
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/parse.go

    	}
    }
    
    // have reports whether the remaining tokens (including the current one) contain the specified token.
    func (p *Parser) have(token lex.ScanToken) bool {
    	for i := p.inputPos; i < len(p.input); i++ {
    		if p.input[i].ScanToken == token {
    			return true
    		}
    	}
    	return false
    }
    
    // at reports whether the next tokens are as requested.
    func (p *Parser) at(next ...lex.ScanToken) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top