Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for RuneSelf (0.15 sec)

  1. src/encoding/asn1/asn1.go

    // parseIA5String parses an ASN.1 IA5String (ASCII string) from the given
    // byte slice and returns it.
    func parseIA5String(bytes []byte) (ret string, err error) {
    	for _, b := range bytes {
    		if b >= utf8.RuneSelf {
    			err = SyntaxError{"IA5String contains invalid character"}
    			return
    		}
    	}
    	ret = string(bytes)
    	return
    }
    
    // T61String
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  2. src/fmt/scan.go

    	if r.peekRune >= 0 {
    		rr = r.peekRune
    		r.peekRune = ^r.peekRune
    		size = utf8.RuneLen(rr)
    		return
    	}
    	r.buf[0], err = r.readByte()
    	if err != nil {
    		return
    	}
    	if r.buf[0] < utf8.RuneSelf { // fast check for common ASCII case
    		rr = rune(r.buf[0])
    		size = 1 // Known to be 1.
    		// Flip the bits of the rune so it's available to UnreadRune.
    		r.peekRune = ^rr
    		return
    	}
    	var n int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  3. src/fmt/print.go

    			argNum, i, afterIndex = p.argNumber(argNum, format, i, len(a))
    		}
    
    		if i >= end {
    			p.buf.writeString(noVerbString)
    			break
    		}
    
    		verb, size := rune(format[i]), 1
    		if verb >= utf8.RuneSelf {
    			verb, size = utf8.DecodeRuneInString(format[i:])
    		}
    		i += size
    
    		switch {
    		case verb == '%': // Percent does not absorb operands and ignores f.wid and f.prec.
    			p.buf.writeByte('%')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  4. src/go/doc/comment/parse.go

    // The caller should skip over the first len(id) bytes of s
    // before further processing.
    func ident(s string) (id string, ok bool) {
    	// Scan [\pL_][\pL_0-9]*
    	n := 0
    	for n < len(s) {
    		if c := s[n]; c < utf8.RuneSelf {
    			if isIdentASCII(c) && (n > 0 || c < '0' || c > '9') {
    				n++
    				continue
    			}
    			break
    		}
    		r, nr := utf8.DecodeRuneInString(s[n:])
    		if unicode.IsLetter(r) {
    			n += nr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  5. src/encoding/json/encode.go

    }
    
    func appendString[Bytes []byte | string](dst []byte, src Bytes, escapeHTML bool) []byte {
    	dst = append(dst, '"')
    	start := 0
    	for i := 0; i < len(src); {
    		if b := src[i]; b < utf8.RuneSelf {
    			if htmlSafeSet[b] || (!escapeHTML && safeSet[b]) {
    				i++
    				continue
    			}
    			dst = append(dst, src[start:i]...)
    			switch b {
    			case '\\', '"':
    				dst = append(dst, '\\', b)
    			case '\b':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse.go

    	if t == "" {
    		return 0, "", &Error{ErrTrailingBackslash, ""}
    	}
    	c, t, err := nextRune(t)
    	if err != nil {
    		return 0, "", err
    	}
    
    Switch:
    	switch c {
    	default:
    		if c < utf8.RuneSelf && !isalnum(c) {
    			// Escaped non-word characters are always themselves.
    			// PCRE is not quite so rigorous: it accepts things like
    			// \q, but we don't. We once rejected \_, but too many
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. src/go/build/build.go

    func safeCgoName(s string) bool {
    	if s == "" {
    		return false
    	}
    	for i := 0; i < len(s); i++ {
    		if c := s[i]; c < utf8.RuneSelf && strings.IndexByte(safeString, c) < 0 {
    			return false
    		}
    	}
    	return true
    }
    
    // splitQuoted splits the string s around each instance of one or more consecutive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/testing/testing.go

    		// Drop unusual characters (such as path separators or
    		// characters interacting with globs) from the directory name to
    		// avoid surprising os.MkdirTemp behavior.
    		mapper := func(r rune) rune {
    			if r < utf8.RuneSelf {
    				const allowed = "!#$%&()+,-.=@^_{}~ "
    				if '0' <= r && r <= '9' ||
    					'a' <= r && r <= 'z' ||
    					'A' <= r && r <= 'Z' {
    					return r
    				}
    				if strings.ContainsRune(allowed, r) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/reflect/type.go

    	u uncommonType
    }
    
    // isLetter reports whether a given 'rune' is classified as a Letter.
    func isLetter(ch rune) bool {
    	return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)
    }
    
    // isValidFieldName checks if a string is a valid (struct) field name or not.
    //
    // According to the language spec, a field name should be an identifier.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    func SafeArg(name string) bool {
    	if name == "" {
    		return false
    	}
    	c := name[0]
    	return '0' <= c && c <= '9' || 'A' <= c && c <= 'Z' || 'a' <= c && c <= 'z' || c == '.' || c == '_' || c == '/' || c >= utf8.RuneSelf
    }
    
    // LinkerDeps returns the list of linker-induced dependencies for main package p.
    func LinkerDeps(p *Package) ([]string, error) {
    	// Everything links runtime.
    	deps := []string{"runtime"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top