Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for maxRune (0.43 sec)

  1. src/regexp/syntax/regexp.go

    			break
    		}
    		b.WriteRune('[')
    		if len(re.Rune) == 0 {
    			b.WriteString(`^\x00-\x{10FFFF}`)
    		} else if re.Rune[0] == 0 && re.Rune[len(re.Rune)-1] == unicode.MaxRune && len(re.Rune) > 2 {
    			// Contains 0 and MaxRune. Probably a negated class.
    			// Print the gaps.
    			b.WriteRune('^')
    			for i := 1; i < len(re.Rune)-1; i += 2 {
    				lo, hi := re.Rune[i]+1, re.Rune[i+1]-1
    				escape(b, lo, lo == '-')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/punycode.go

    			}
    		}
    		if len(output) >= 1024 {
    			return "", punyError(encoded)
    		}
    		x := int32(len(output) + 1)
    		bias = adapt(i-oldI, x, oldI == 0)
    		n += i / x
    		i %= x
    		if n < 0 || n > utf8.MaxRune {
    			return "", punyError(encoded)
    		}
    		output = append(output, 0)
    		copy(output[i+1:], output[i:])
    		output[i] = n
    		i++
    	}
    	return string(output), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:36 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  3. src/regexp/onepass.go

    			// A:BC + B:DC => A:DC + B:DC
    			if *p_A_Other == *p_B_Alt {
    				*p_A_Alt = *p_B_Other
    			}
    		}
    	}
    	return p
    }
    
    var anyRuneNotNL = []rune{0, '\n' - 1, '\n' + 1, unicode.MaxRune}
    var anyRune = []rune{0, unicode.MaxRune}
    
    // makeOnePass creates a onepass Prog, if possible. It is possible if at any alt,
    // the match engine can always tell which branch to take. The routine may modify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/html/template/css.go

    			// https://www.w3.org/TR/css3-syntax/#SUBTOK-unicode
    			//   unicode ::= '\' [0-9a-fA-F]{1,6} wc?
    			j := 2
    			for j < len(s) && j < 7 && isHex(s[j]) {
    				j++
    			}
    			r := hexDecode(s[1:j])
    			if r > unicode.MaxRune {
    				r, j = r/16, j-1
    			}
    			n := utf8.EncodeRune(b[len(b):cap(b)], r)
    			// The optional space at the end allows a hex
    			// sequence to be followed by a literal hex.
    			// string(decodeCSS([]byte(`\A B`))) == "\nB"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. src/testing/match_test.go

    	"regexp"
    	"strings"
    	"unicode"
    )
    
    func init() {
    	testingTesting = true
    }
    
    // Verify that our IsSpace agrees with unicode.IsSpace.
    func TestIsSpace(t *T) {
    	n := 0
    	for r := rune(0); r <= unicode.MaxRune; r++ {
    		if isSpace(r) != unicode.IsSpace(r) {
    			t.Errorf("IsSpace(%U)=%t incorrect", r, isSpace(r))
    			n++
    			if n > 10 {
    				return
    			}
    		}
    	}
    }
    
    func TestSplitRegexp(t *T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/scanner.go

    		n, base, max = 3, 8, 255
    	case 'x':
    		s.nextch()
    		n, base, max = 2, 16, 255
    	case 'u':
    		s.nextch()
    		n, base, max = 4, 16, unicode.MaxRune
    	case 'U':
    		s.nextch()
    		n, base, max = 8, 16, unicode.MaxRune
    	default:
    		if s.ch < 0 {
    			return true // complain in caller about EOF
    		}
    		s.errorf("unknown escape")
    		return false
    	}
    
    	var x uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  7. src/strings/builder_test.go

    		}
    	}
    }
    
    func TestBuilderWriteInvalidRune(t *testing.T) {
    	// Invalid runes, including negative ones, should be written as
    	// utf8.RuneError.
    	for _, r := range []rune{-1, utf8.MaxRune + 1} {
    		var b Builder
    		b.WriteRune(r)
    		check(t, &b, "\uFFFD")
    	}
    }
    
    var someBytes = []byte("some bytes sdljlk jsklj3lkjlk djlkjw")
    
    var sinkS string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/go/internal/gccgoimporter/testdata/unicode.gox

    var Malayalam <type 1>;
    var Mandaic <type 1>;
    var Manichaean <type 1>;
    var Marchen <type 1>;
    var Mark <type 1>;
    const MaxASCII = 127' ;
    const MaxCase = 3 ;
    const MaxLatin1 = 255' ;
    const MaxRune = 1114111' ;
    var Mc <type 1>;
    var Me <type 1>;
    var Meetei_Mayek <type 1>;
    var Mende_Kikakui <type 1>;
    var Meroitic_Cursive <type 1>;
    var Meroitic_Hieroglyphs <type 1>;
    var Miao <type 1>;
    var Mn <type 1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  9. src/go/types/conversions.go

    			// nothing to do
    		case representableConst(x.val, check, t, val):
    			return true
    		case isInteger(x.typ) && isString(t):
    			codepoint := unicode.ReplacementChar
    			if i, ok := constant.Uint64Val(x.val); ok && i <= unicode.MaxRune {
    				codepoint = rune(i)
    			}
    			if val != nil {
    				*val = constant.MakeString(string(codepoint))
    			}
    			return true
    		}
    		return false
    	}
    
    	var ok bool
    	var cause string
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/conversions.go

    			// nothing to do
    		case representableConst(x.val, check, t, val):
    			return true
    		case isInteger(x.typ) && isString(t):
    			codepoint := unicode.ReplacementChar
    			if i, ok := constant.Uint64Val(x.val); ok && i <= unicode.MaxRune {
    				codepoint = rune(i)
    			}
    			if val != nil {
    				*val = constant.MakeString(string(codepoint))
    			}
    			return true
    		}
    		return false
    	}
    
    	var ok bool
    	var cause string
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top