Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for whitespaces (0.22 sec)

  1. src/cmd/asm/internal/lex/tokenizer.go

    }
    
    func NewTokenizer(name string, r io.Reader, file *os.File) *Tokenizer {
    	var s scanner.Scanner
    	s.Init(r)
    	// Newline is like a semicolon; other space characters are fine.
    	s.Whitespace = 1<<'\t' | 1<<'\r' | 1<<' '
    	// Don't skip comments: we need to count newlines.
    	s.Mode = scanner.ScanChars |
    		scanner.ScanFloats |
    		scanner.ScanIdents |
    		scanner.ScanInts |
    		scanner.ScanStrings |
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 04 20:35:21 GMT 2022
    - 3K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    // during the initial build as defaultCC.
    // defaultCC is defined in zdefaultcc.go, written by cmd/dist.
    //
    // The compiler command line is split into arguments on whitespace. Quotes
    // are understood, so arguments may contain whitespace.
    //
    // checkGCCBaseCmd confirms that the compiler exists in PATH, returning
    // an error if it does not.
    func checkGCCBaseCmd() ([]string, error) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg text/scanner, type Scanner struct, Error func(*Scanner, string)
    pkg text/scanner, type Scanner struct, ErrorCount int
    pkg text/scanner, type Scanner struct, Mode uint
    pkg text/scanner, type Scanner struct, Whitespace uint64
    pkg text/scanner, type Scanner struct, embedded Position
    pkg text/tabwriter, const AlignRight uint
    pkg text/tabwriter, const Debug uint
    pkg text/tabwriter, const DiscardEmptyColumns uint
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top