Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for zwnj (0.03 sec)

  1. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    		return &labelError{s, "V5"}
    	}
    	// Quickly return in the absence of zero-width (non) joiners.
    	if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 {
    		return nil
    	}
    	st := stateStart
    	for i := 0; ; {
    		jt := x.joinType()
    		if s[i:i+sz] == zwj {
    			jt = joinZWJ
    		} else if s[i:i+sz] == zwnj {
    			jt = joinZWNJ
    		}
    		st = joinStates[st][jt]
    		if x.isViramaModifier() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    		return &labelError{s, "V5"}
    	}
    	// Quickly return in the absence of zero-width (non) joiners.
    	if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 {
    		return nil
    	}
    	st := stateStart
    	for i := 0; ; {
    		jt := x.joinType()
    		if s[i:i+sz] == zwj {
    			jt = joinZWJ
    		} else if s[i:i+sz] == zwnj {
    			jt = joinZWNJ
    		}
    		st = joinStates[st][jt]
    		if x.isViramaModifier() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. src/mdo/reader-stax.vm

            entities.put("tilde", "\u02dc");
            entities.put("ensp", "\u2002");
            entities.put("emsp", "\u2003");
            entities.put("thinsp", "\u2009");
            entities.put("zwnj", "\u200c");
            entities.put("zwj", "\u200d");
            entities.put("lrm", "\u200e");
            entities.put("rlm", "\u200f");
            entities.put("ndash", "\u2013");
            entities.put("mdash", "\u2014");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  4. src/mdo/reader.vm

            entities.put("tilde", "\u02dc");
            entities.put("ensp", "\u2002");
            entities.put("emsp", "\u2003");
            entities.put("thinsp", "\u2009");
            entities.put("zwnj", "\u200c");
            entities.put("zwj", "\u200d");
            entities.put("lrm", "\u200e");
            entities.put("rlm", "\u200f");
            entities.put("ndash", "\u2013");
            entities.put("mdash", "\u2014");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  5. src/encoding/xml/xml.go

    	"Scaron":   "\u0160",
    	"scaron":   "\u0161",
    	"Yuml":     "\u0178",
    	"circ":     "\u02C6",
    	"tilde":    "\u02DC",
    	"ensp":     "\u2002",
    	"emsp":     "\u2003",
    	"thinsp":   "\u2009",
    	"zwnj":     "\u200C",
    	"zwj":      "\u200D",
    	"lrm":      "\u200E",
    	"rlm":      "\u200F",
    	"ndash":    "\u2013",
    	"mdash":    "\u2014",
    	"lsquo":    "\u2018",
    	"rsquo":    "\u2019",
    	"sbquo":    "\u201A",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top