HomeSort by relevance Sort by last modified time
    Searched refs:notation (Results 1 - 25 of 131) sorted by null

1 2 3 4 5 6

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documenttypegetnotationstype.java 32 * method implements the Notation interface.
66 Node notation; local
74 notation = (Node) notationList.item(indexN10049);
75 notationType = (int) notation.getNodeType();
documenttypegetnotations.java 67 Node notation; local
81 notation = (Node) notationList.item(indexN1005B);
82 notationName = notation.getNodeName();
entitygetpublicid.java 72 String notation; local
83 notation = entityNode.getNotationName();
84 assertEquals("notation", "notation1", notation);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getNamedItemNS04.java 34 * Notation nodes are not namespaced and should not be retrievable using
66 Notation notation; local
73 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
74 assertNull("notationNull", notation);
importNode13.java 36 * The importedNode is of type Notation.
38 * Retrieve notation named "notation1" from document staffNS.xml.
40 * contains the retrieved notation and deep is false. Method should
41 * return a node of type notation whose name is "notation1".
74 Notation notation; local
75 Notation aNode;
85 notation = (Notation) notationList.getNamedItem("notation1");
86 aNode = (Notation) doc.importNode(notation, false)
    [all...]
namednodemapgetnameditemns01.java 34 * Using the method getNamedItemNS, retreive the entity "ent1" and notation "notation1"
77 Notation notation; local
90 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
91 assertNull("notationNull", notation);
namednodemapsetnameditemns11.java 37 * Attempt to add a notation node to a NamedNodeMap of attribute nodes,
77 Notation notation; local
87 notation = (Notation) notations.getNamedItem("notation1");
95 newNode = attributes.setNamedItemNS(notation);
namednodemapsetnameditemns05.java 34 * Retreive an entity and notation node and add the first notation to the
35 * notation node map and first entity node to the entity map. Since both these
77 Notation notation; local
88 notation = (Notation) notations.getNamedItem("notation1");
103 newNode = notations.setNamedItemNS(notation);
namednodemapsetnameditemns10.java 78 Notation notation; local
  /prebuilts/go/darwin-x86/src/hash/crc32/
example_test.go 13 // In this package, the CRC polynomial is represented in reversed notation,
22 // has the reversed notation 0b11010101100000101000001010000001, so the value
  /prebuilts/go/linux-x86/src/hash/crc32/
example_test.go 13 // In this package, the CRC polynomial is represented in reversed notation,
22 // has the reversed notation 0b11010101100000101000001010000001, so the value
  /prebuilts/go/darwin-x86/src/fmt/
doc.go 34 %b decimalless scientific notation with exponent a power of two,
37 %e scientific notation, e.g. -1.234456e+78
38 %E scientific notation, e.g. -1.234456E+78
49 %p base 16 notation, with leading 0x
184 However, the notation [n] immediately before the verb indicates that the
185 nth one-indexed argument is to be formatted instead. The same notation
197 this notation can be used to print the same values multiple times
  /prebuilts/go/linux-x86/src/fmt/
doc.go 34 %b decimalless scientific notation with exponent a power of two,
37 %e scientific notation, e.g. -1.234456e+78
38 %E scientific notation, e.g. -1.234456E+78
49 %p base 16 notation, with leading 0x
184 However, the notation [n] immediately before the verb indicates that the
185 nth one-indexed argument is to be formatted instead. The same notation
197 this notation can be used to print the same values multiple times
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msasn1.h 369 ASN1open_t notation; member in union:tagASN1external_t::ASN1external_data_value_s::__anon59395
407 ASN1open_t notation; member in union:tagASN1embeddedpdv_t::ASN1embeddedpdv_data_value_s::__anon59397
446 ASN1open_t notation; member in union:tagASN1characterstring_t::ASN1characterstring_data_value_s::__anon59399
  /prebuilts/go/darwin-x86/src/encoding/json/
encode_test.go 637 re(`p`), // no binary exponential notation
643 re(`^-?(0|[0-9]{2,})\..*e`), // exponential notation must have normalized mantissa
646 re(`e-[1-6]$`), // not tiny enough for exponential notation
647 re(`e+(.|1.|20)$`), // not big enough for exponential notation
648 re(`^-?0\.0000000`), // too tiny, should use exponential notation
649 re(`^-?[0-9]{22}`), // too big, should use exponential notation
  /prebuilts/go/linux-x86/src/encoding/json/
encode_test.go 637 re(`p`), // no binary exponential notation
643 re(`^-?(0|[0-9]{2,})\..*e`), // exponential notation must have normalized mantissa
646 re(`e-[1-6]$`), // not tiny enough for exponential notation
647 re(`e+(.|1.|20)$`), // not big enough for exponential notation
648 re(`^-?0\.0000000`), // too tiny, should use exponential notation
649 re(`^-?[0-9]{22}`), // too big, should use exponential notation
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
expatbuilder.py 12 # no way to create Entity and Notation nodes via the DOM Level 2
666 notation = doctype.notations.item(i)
669 s = "%s<!NOTATION %s" % (s, notation.nodeName)
670 if notation.publicId:
672 % (s, notation.publicId, notation.systemId)
674 s = '%s SYSTEM "%s">' % (s, notation.systemId)
688 s = "%s NOTATION %s" % (s, entity.notationName)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
expatbuilder.py 12 # no way to create Entity and Notation nodes via the DOM Level 2
666 notation = doctype.notations.item(i)
669 s = "%s<!NOTATION %s" % (s, notation.nodeName)
670 if notation.publicId:
672 % (s, notation.publicId, notation.systemId)
674 s = '%s SYSTEM "%s">' % (s, notation.systemId)
688 s = "%s NOTATION %s" % (s, entity.notationName)
    [all...]
  /external/python/cpython2/Lib/xml/dom/
expatbuilder.py 12 # no way to create Entity and Notation nodes via the DOM Level 2
666 notation = doctype.notations.item(i)
669 s = "%s<!NOTATION %s" % (s, notation.nodeName)
670 if notation.publicId:
672 % (s, notation.publicId, notation.systemId)
674 s = '%s SYSTEM "%s">' % (s, notation.systemId)
688 s = "%s NOTATION %s" % (s, entity.notationName)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
expatbuilder.py 12 # no way to create Entity and Notation nodes via the DOM Level 2
666 notation = doctype.notations.item(i)
669 s = "%s<!NOTATION %s" % (s, notation.nodeName)
670 if notation.publicId:
672 % (s, notation.publicId, notation.systemId)
674 s = '%s SYSTEM "%s">' % (s, notation.systemId)
688 s = "%s NOTATION %s" % (s, entity.notationName)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
expatbuilder.py 12 # no way to create Entity and Notation nodes via the DOM Level 2
666 notation = doctype.notations.item(i)
669 s = "%s<!NOTATION %s" % (s, notation.nodeName)
670 if notation.publicId:
672 % (s, notation.publicId, notation.systemId)
674 s = '%s SYSTEM "%s">' % (s, notation.systemId)
688 s = "%s NOTATION %s" % (s, entity.notationName)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
expatbuilder.py 12 # no way to create Entity and Notation nodes via the DOM Level 2
666 notation = doctype.notations.item(i)
669 s = "%s<!NOTATION %s" % (s, notation.nodeName)
670 if notation.publicId:
672 % (s, notation.publicId, notation.systemId)
674 s = '%s SYSTEM "%s">' % (s, notation.systemId)
688 s = "%s NOTATION %s" % (s, entity.notationName)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
expatbuilder.py 12 # no way to create Entity and Notation nodes via the DOM Level 2
666 notation = doctype.notations.item(i)
669 s = "%s<!NOTATION %s" % (s, notation.nodeName)
670 if notation.publicId:
672 % (s, notation.publicId, notation.systemId)
674 s = '%s SYSTEM "%s">' % (s, notation.systemId)
688 s = "%s NOTATION %s" % (s, entity.notationName)
    [all...]
  /external/chromium-trace/catapult/common/eslint/rules/
catapult-camelcase.js 44 // contains reported nodes to avoid reporting twice on destructuring with shorthand notation
  /prebuilts/go/darwin-x86/src/net/
hosts.go 42 // We don't support old-classful IP address notation.

Completed in 1468 milliseconds

1 2 3 4 5 6