Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for uuml (0.11 sec)

  1. src/mdo/reader-stax.vm

            entities.put("Uuml", "\u00dc");
            entities.put("Yacute", "\u00dd");
            entities.put("THORN", "\u00de");
            entities.put("szlig", "\u00df");
            entities.put("agrave", "\u00e0");
            entities.put("aacute", "\u00e1");
            entities.put("acirc", "\u00e2");
            entities.put("atilde", "\u00e3");
            entities.put("auml", "\u00e4");
            entities.put("aring", "\u00e5");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. src/encoding/xml/xml.go

    	"otilde":   "\u00F5",
    	"ouml":     "\u00F6",
    	"divide":   "\u00F7",
    	"oslash":   "\u00F8",
    	"ugrave":   "\u00F9",
    	"uacute":   "\u00FA",
    	"ucirc":    "\u00FB",
    	"uuml":     "\u00FC",
    	"yacute":   "\u00FD",
    	"thorn":    "\u00FE",
    	"yuml":     "\u00FF",
    	"fnof":     "\u0192",
    	"Alpha":    "\u0391",
    	"Beta":     "\u0392",
    	"Gamma":    "\u0393",
    	"Delta":    "\u0394",
    	"Epsilon":  "\u0395",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  3. src/math/big/float.go

    }
    
    // z = x * y, ignoring signs of x and y for the multiplication
    // but using the sign of z for rounding the result.
    // x and y must have a non-empty mantissa and valid exponent.
    func (z *Float) umul(x, y *Float) {
    	if debugFloat {
    		validateBinaryOperands(x, y)
    	}
    
    	// Note: This is doing too much work if the precision
    	// of z is less than the sum of the precisions of x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top