Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for initialTypes (0.38 sec)

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

    	p.setBracketsToType(loc, dirPair, initialTypes)
    }
    
    func (p *bracketPairer) setBracketsToType(loc bracketPair, dirPair Class, initialTypes []Class) {
    	p.codesIsolatedRun[loc.opener] = dirPair
    	p.codesIsolatedRun[loc.closer] = dirPair
    
    	for i := loc.opener + 1; i < loc.closer; i++ {
    		index := p.indexes[i]
    		if initialTypes[index] != NSM {
    			break
    		}
    		p.codesIsolatedRun[i] = dirPair
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/core.go

    		return nil, err
    	}
    
    	p := &paragraph{
    		initialTypes:   append([]Class(nil), types...),
    		embeddingLevel: levels,
    
    		pairTypes:  pairTypes,
    		pairValues: pairValues,
    
    		resultTypes: append([]Class(nil), types...),
    	}
    	p.run()
    	return p, nil
    }
    
    func (p *paragraph) Len() int { return len(p.initialTypes) }
    
    // The algorithm. Does not include line-based processing (Rules L1, L2).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/SourceSinkFactories.java

        private final byte[] initialBytes;
    
        private FileByteSinkFactory(byte @Nullable [] initialBytes) {
          this.initialBytes = initialBytes;
        }
    
        @Override
        public ByteSink createSink() throws IOException {
          File file = createFile();
          if (initialBytes != null) {
            FileOutputStream out = new FileOutputStream(file);
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

        assertEquals(-1, in.read());
      }
    
      private static class AppendableByteSource extends ByteSource {
        private byte[] bytes;
    
        public AppendableByteSource(byte[] initialBytes) {
          this.bytes = initialBytes.clone();
        }
    
        @Override
        public InputStream openStream() {
          return new In();
        }
    
        public void append(byte[] b) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top