Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for lccc (0.06 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	return int(p.size)
    }
    
    // CCC returns the canonical combining class of the underlying rune.
    func (p Properties) CCC() uint8 {
    	if p.index >= firstCCCZeroExcept {
    		return 0
    	}
    	return ccc[p.ccc]
    }
    
    // LeadCCC returns the CCC of the first rune in the decomposition.
    // If there is no decomposition, LeadCCC equals CCC.
    func (p Properties) LeadCCC() uint8 {
    	return ccc[p.ccc]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	return int(p.size)
    }
    
    // CCC returns the canonical combining class of the underlying rune.
    func (p Properties) CCC() uint8 {
    	if p.index >= firstCCCZeroExcept {
    		return 0
    	}
    	return ccc[p.ccc]
    }
    
    // LeadCCC returns the CCC of the first rune in the decomposition.
    // If there is no decomposition, LeadCCC equals CCC.
    func (p Properties) LeadCCC() uint8 {
    	return ccc[p.ccc]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/test/resources/org/codelibs/core/net/ccc.gif

    ccc.gif...
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Sun Dec 28 09:01:06 UTC 2014
    - 67 bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

            value = FessFunctions.maskEmail("aaa bbb ccc");
            assertEquals("aaa bbb ccc", value);
    
            value = FessFunctions.maskEmail("aaa@bbb.ccc");
            assertEquals("******@****.***", value);
    
            value = FessFunctions.maskEmail("111.aaa@bbb.ccc");
            assertEquals("******@****.***", value);
    
            value = FessFunctions.maskEmail("111 aaa+@bbb.ccc 222");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/io/LineIteratorTest.java

            final StringReader reader = new StringReader("aaa\nbbb\nccc\n");
            final LineIterator it = new LineIterator(reader);
            assertThat(it.hasNext(), is(true));
            assertThat(it.next(), is("aaa"));
            assertThat(it.hasNext(), is(true));
            assertThat(it.next(), is("bbb"));
            assertThat(it.hasNext(), is(true));
            assertThat(it.next(), is("ccc"));
            assertThat(it.hasNext(), is(not(true)));
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/collection/IndexedIteratorTest.java

            assertThat(indexed3.getElement(), is("ccc"));
    
            assertThat(it.hasNext(), is(not(true)));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testForEach() throws Exception {
            final List<String> list = newArrayList();
            list.add("aaa");
            list.add("bbb");
            list.add("ccc");
            for (final Indexed<String> indexed : indexed(list)) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    		// expensive than using the filter. Using combinesBackward()
    		// is safe.
    		if ii.combinesBackward() {
    			cccB := b[k-1].ccc
    			cccC := ii.ccc
    			blocked := false // b[i] blocked by starter or greater or equal CCC?
    			if cccB == 0 {
    				s = k - 1
    			} else {
    				blocked = s != k-1 && cccB >= cccC
    			}
    			if !blocked {
    				combined := combine(rb.runeAt(s), rb.runeAt(i))
    				if combined != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/norm/composition.go

    		// expensive than using the filter. Using combinesBackward()
    		// is safe.
    		if ii.combinesBackward() {
    			cccB := b[k-1].ccc
    			cccC := ii.ccc
    			blocked := false // b[i] blocked by starter or greater or equal CCC?
    			if cccB == 0 {
    				s = k - 1
    			} else {
    				blocked = s != k-1 && cccB >= cccC
    			}
    			if !blocked {
    				combined := combine(rb.runeAt(s), rb.runeAt(i))
    				if combined != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/norm/iter.go

    			outp = p
    			i.p += sz
    		}
    		if i.p >= i.rb.nsrc {
    			i.setDone()
    			break
    		}
    		prevCC := i.info.tccc
    		i.info = i.rb.f.info(i.rb.src, i.p)
    		if v := i.rb.ss.next(i.info); v == ssStarter {
    			break
    		} else if v == ssOverflow {
    			i.next = nextCGJDecompose
    			break
    		}
    		if i.info.ccc < prevCC {
    			goto doNorm
    		}
    	}
    	if outCopyStart == 0 {
    		return i.returnSlice(inCopyStart, i.p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    			outp = p
    			i.p += sz
    		}
    		if i.p >= i.rb.nsrc {
    			i.setDone()
    			break
    		}
    		prevCC := i.info.tccc
    		i.info = i.rb.f.info(i.rb.src, i.p)
    		if v := i.rb.ss.next(i.info); v == ssStarter {
    			break
    		} else if v == ssOverflow {
    			i.next = nextCGJDecompose
    			break
    		}
    		if i.info.ccc < prevCC {
    			goto doNorm
    		}
    	}
    	if outCopyStart == 0 {
    		return i.returnSlice(inCopyStart, i.p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top