Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 469 for ESCAPE (0.11 sec)

  1. src/go/printer/gobuild.go

    	// begins and ends with a tabwriter.Escape byte.
    	// And some newlines have turned into \f bytes.
    	insert := 0
    	for pos := 0; ; {
    		// Skip leading space at beginning of line.
    		blank := true
    		for pos < len(p.output) && (p.output[pos] == ' ' || p.output[pos] == '\t') {
    			pos++
    		}
    		// Skip over // comment if any.
    		if pos+3 < len(p.output) && p.output[pos] == tabwriter.Escape && p.output[pos+1] == '/' && p.output[pos+2] == '/' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. test/escape5.go

    	y := t.x[:]
    	for i := range t.x[:] {
    		y = t.x[:]
    		y[i] = 1
    	}
    
    	var z *byte
    	for i := range t.x[:] {
    		z = &t.x[i]
    		*z = 2
    	}
    }
    
    // Issue 15730: copy causes unnecessary escape
    
    var sink []byte
    var sink2 []int
    var sink3 []*int
    
    func f15730a(args ...interface{}) { // ERROR "args does not escape"
    	for _, arg := range args {
    		switch a := arg.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. test/escape_goto.go

    // errorcheck -0 -m -l
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test escape analysis for goto statements.
    
    package escape
    
    var x bool
    
    func f1() {
    	var p *int
    loop:
    	if x {
    		goto loop
    	}
    	// BAD: We should be able to recognize that there
    	// aren't any more "goto loop" after here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 677 bytes
    - Viewed (0)
  4. guava/src/com/google/common/escape/CharEscaper.java

       * not throw any exceptions.
       *
       * @param c the character to escape if necessary
       * @return the replacement characters, or {@code null} if no escaping was needed
       */
      @CheckForNull
      protected abstract char[] escape(char c);
    
      /**
       * Returns the escaped form of a given literal string, starting at the given index. This method is
       * called by the {@link #escape(String)} method when it discovers that escaping is required. It is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/escape/CharEscaper.java

       * not throw any exceptions.
       *
       * @param c the character to escape if necessary
       * @return the replacement characters, or {@code null} if no escaping was needed
       */
      @CheckForNull
      protected abstract char[] escape(char c);
    
      /**
       * Returns the escaped form of a given literal string, starting at the given index. This method is
       * called by the {@link #escape(String)} method when it discovers that escaping is required. It is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  6. src/go/doc/comment/html.go

    func (p *htmlPrinter) text(out *bytes.Buffer, x []Text) {
    	for _, t := range x {
    		switch t := t.(type) {
    		case Plain:
    			p.escape(out, string(t))
    		case Italic:
    			out.WriteString("<i>")
    			p.escape(out, string(t))
    			out.WriteString("</i>")
    		case *Link:
    			out.WriteString(`<a href="`)
    			p.escape(out, t.URL)
    			out.WriteString(`">`)
    			p.text(out, t.Text)
    			out.WriteString("</a>")
    		case *DocLink:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/escape/Escapers.java

          @Override
          @CheckForNull
          protected char[] escape(int cp) {
            // If a code point maps to a single character, just escape that.
            if (cp < Character.MIN_SUPPLEMENTARY_CODE_POINT) {
              return escaper.escape((char) cp);
            }
            // Convert the code point to a surrogate pair and escape them both.
            // Note: This code path is horribly slow and typically allocates 4 new
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

        }
    
        public QueryStringBuilder sortField(final String sortField) {
            this.sortField = sortField;
            return this;
        }
    
        public QueryStringBuilder escape(final boolean escape) {
            this.escape = escape;
            return this;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/escape/Escapers.java

          @Override
          @CheckForNull
          protected char[] escape(int cp) {
            // If a code point maps to a single character, just escape that.
            if (cp < Character.MIN_SUPPLEMENTARY_CODE_POINT) {
              return escaper.escape((char) cp);
            }
            // Convert the code point to a surrogate pair and escape them both.
            // Note: This code path is horribly slow and typically allocates 4 new
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. internal/s3select/sql/stringfuncs.go

    	prev := runeZero
    	hasLeadingPercent := false
    	patLen := len([]rune(pattern))
    	for i, r := range pattern {
    		if i > 0 && prev == escape {
    			switch r {
    			case percent, escape, underscore:
    				s = append(s, r)
    				prev = r
    				if r == escape {
    					prev = runeZero
    				}
    			default:
    				return false, errMalformedEscapeSequence
    			}
    			continue
    		}
    
    		prev = r
    
    		var ok bool
    		switch r {
    		case percent:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 4.2K bytes
    - Viewed (0)
Back to top