Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Eccpos (0.12 sec)

  1. src/compress/flate/dict_decoder.go

    	// Thus, a backwards copy is performed here; that is, the exact bytes in
    	// the source prior to the copy is placed in the destination.
    	if srcPos < 0 {
    		srcPos += len(dd.hist)
    		dstPos += copy(dd.hist[dstPos:endPos], dd.hist[srcPos:])
    		srcPos = 0
    	}
    
    	// Copy possibly overlapping section before destination position.
    	//
    	// This section can overlap if the copy length for this section is larger
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocScanner.java

         */
        public void find(char c) {
            int cpos = pos;
            while (cpos < input.length()) {
                if (input.charAt(cpos) == c) {
                    break;
                }
                cpos++;
            }
            pos = cpos;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  3. src/go/ast/import.go

    		return false
    	}
    	return prev.(*ImportSpec).Comment == nil
    }
    
    type posSpan struct {
    	Start token.Pos
    	End   token.Pos
    }
    
    type cgPos struct {
    	left bool // true if comment is to the left of the spec, false otherwise.
    	cg   *CommentGroup
    }
    
    func sortSpecs(fset *token.FileSet, f *File, specs []Spec) []Spec {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top