Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for bidiIndex (0.11 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/prop.go

    		if len(s) < 2 {
    			return Properties{}, 0
    		}
    		i := bidiIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return Properties{}, 1
    		}
    		return Properties{entry: trie.lookupValue(uint32(i), c1)}, 2
    	case c0 < 0xF0: // 3-byte UTF-8
    		if len(s) < 3 {
    			return Properties{}, 0
    		}
    		i := bidiIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return Properties{}, 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/compact/tags.go

    	Hungarian            Tag = Tag{language: huIndex, locale: huIndex}
    	Armenian             Tag = Tag{language: hyIndex, locale: hyIndex}
    	Indonesian           Tag = Tag{language: idIndex, locale: idIndex}
    	Icelandic            Tag = Tag{language: isIndex, locale: isIndex}
    	Italian              Tag = Tag{language: itIndex, locale: itIndex}
    	Japanese             Tag = Tag{language: jaIndex, locale: jaIndex}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/QuantilesAlgorithm.java

              swap(array, from, to);
            }
            return array[k];
          } else {
            int midIndex = (from + to) >>> 1;
            // Choose the median of the elements at the from, to and mid indexes,
            // and rearrange so that array[from]<=array[from+1], and
            // array[to] => array[from + 1].
    
            swap(array, midIndex, from + 1);
    
            if (array[from] > array[to]) {
              swap(array, from, to);
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  4. src/cmd/internal/gcprog/gcprog.go

    // It also enables debugging checks during the encoding.
    func (w *Writer) Debug(out io.Writer) {
    	w.debug = out
    }
    
    // BitIndex returns the number of bits written to the bit stream so far.
    func (w *Writer) BitIndex() int64 {
    	return w.index
    }
    
    // byte writes the byte x to the output.
    func (w *Writer) byte(x byte) {
    	if w.debug != nil {
    		w.debugBuf = append(w.debugBuf, x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top