Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for whitespace (0.31 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 May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  4. api/go1.1.txt

    pkg text/scanner, const Char = -5
    pkg text/scanner, const Comment = -8
    pkg text/scanner, const EOF = -1
    pkg text/scanner, const Float = -4
    pkg text/scanner, const GoTokens = 1012
    pkg text/scanner, const GoWhitespace = 4294977024
    pkg text/scanner, const Ident = -2
    pkg text/scanner, const Int = -3
    pkg text/scanner, const RawString = -7
    pkg text/scanner, const ScanChars = 32
    pkg text/scanner, const ScanComments = 256
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top