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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/Assembler/
2005-01-03-FPConstantDisassembly.ll 6 ret double 1.0 ;; This should not require hex notation
  /libcore/luni/src/main/java/org/w3c/dom/
Notation.java 16 * This interface represents a notation declared in the DTD. A notation either
20 * to the declared name of the notation.
21 * <p>The DOM Core does not support editing <code>Notation</code> nodes; they
23 * <p>A <code>Notation</code> node does not have any parent.
26 public interface Notation extends Node {
28 * The public identifier of this notation. If the public identifier was
34 * The system identifier of this notation. If the system identifier was
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
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...]
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);
documentimportnode22.java 82 Notation notation1;
83 Notation notation2;
84 Notation notationImp1;
85 Notation notationImp2;
86 Notation notationImpNew1;
87 Notation notationImpNew2;
104 notation1 = (Notation) nodeMap.getNamedItem("notation1");
105 notation2 = (Notation) nodeMap.getNamedItem("notation2");
106 notationImp1 = (Notation) doc.importNode(notation1, true);
107 notationImp2 = (Notation) doc.importNode(notation2, 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);
  /external/clang/test/CodeGen/
2002-02-16-RenamingTest.c 3 /* test that locals are renamed with . notation */
  /external/libxml2/test/c14n/1-1-without-comments/
example-5.xml 6 <!NOTATION gif SYSTEM "viewgif.exe">
  /external/libxml2/test/c14n/with-comments/
example-5.xml 6 <!NOTATION gif SYSTEM "viewgif.exe">
  /external/libxml2/test/c14n/without-comments/
example-5.xml 6 <!NOTATION gif SYSTEM "viewgif.exe">
  /libcore/luni/src/main/java/org/xml/sax/
DTDHandler.java 22 * instance to report notation and unparsed entity declarations to
27 * notation and unparsed entity declarations.</p>
40 * If the application encounters attributes of type "NOTATION",
43 * notation corresponding with the attribute value.</p>
54 * Receive notification of a notation declaration event.
56 * <p>It is up to the application to record the notation for later
67 * <p>There is no guarantee that the notation declaration will be
70 * @param name The notation name.
71 * @param publicId The notation's public identifier, or null if
73 * @param systemId The notation's system identifier, or null i
    [all...]
  /external/javassist/src/main/javassist/runtime/
DotClass.java 19 * A support class for implementing <code>.class</code> notation.
21 * only if <code>.class</code> notation is used in source code given
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
notationgetpublicidnull.java 31 * The "getPublicId()" method of a Notation node contains
32 * the public identifier associated with the notation, if
35 * Retrieve the notation named "notation2" and access its
37 * specified for this notation, the "getPublicId()" method
68 Notation notationNode;
75 notationNode = (Notation) notations.getNamedItem("notation2");
nodenotationnodetype.java 31 * The "getNodeType()" method for an Notation Node
33 * Retrieve the Notation declaration in the DocumentType
65 Notation notationNode;
72 notationNode = (Notation) notations.getNamedItem("notation1");
notationgetsystemidnull.java 31 * Retrieve the notation named "notation1" and access its
33 * specified for this notation, the "getSystemId()" method
64 Notation notationNode;
71 notationNode = (Notation) notations.getNamedItem("notation1");
notationgetsystemid.java 31 * The "getSystemId()" method of a Notation node contains
32 * the system identifier associated with the notation, if
35 * Retrieve the notation named "notation2" and access its
67 Notation notationNode;
75 notationNode = (Notation) notations.getNamedItem("notation2");
nodenotationnodeattributes.java 31 * The "getAttributes()" method invoked on a Notation
33 * Retrieve the Notation declaration inside the DocumentType
35 * Notation Node. It should return null.
notationgetpublicid.java 31 * Retrieve the notation named "notation1" and access its
63 Notation notationNode;
70 notationNode = (Notation) notations.getNamedItem("notation1");
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
TraceAbstractVisitor.java 44 * type names in bytecode notation.
50 * descriptors, formatted in bytecode notation
56 * signatures, formatted in bytecode notation
62 * descriptors, formatted in bytecode notation
68 * signatures, formatted in bytecode notation
74 * signatures, formatted in bytecode notation
80 * method return value signatures, formatted in default Java notation
87 * signatures, formatted in default Java notation (non-bytecode)
93 * parameter signatures, formatted in default Java notation (non-bytecode)
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NotationImpl.java 20 import org.w3c.dom.Notation;
32 public class NotationImpl extends LeafNodeImpl implements Notation {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetNamedItemNS.java 107 // Notation notation;
114 // notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
115 // assertNotNull("notationNull", notation);
  /external/iptables/extensions/
libxt_string.man 18 Matches the given pattern in hex notation.
  /external/ppp/pppd/plugins/radius/
ip_util.c 23 * Purpose: return an IP address in host long notation from a host
24 * name or address in dot notation.
48 * Purpose: check for valid IP address in standard dot notation.
98 * Purpose: Return a printable host name (or IP address in dot notation)

Completed in 1623 milliseconds

1 2 3 4 5 6 7 8 91011>>