Searched defs:name (Results 201 - 225 of 7863) sorted by path

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DKeyIterator.java46 /** Key name.
51 * Get the key name from a key declaration this iterator will process
54 * @return Key name
81 KeyIterator(QName name, Vector keyDeclarations) argument
86 m_name = name;
107 QName name = ki.getName();
118 // Only continue if the name on this key declaration
119 // matches the name on the iterator for this walker.
120 if (!kd.getName().equals(name))
148 new Object[] { name
[all...]
H A DKeyManager.java49 * @param name The key element name
58 XPathContext xctxt, int doc, QName name, XMLString ref, PrefixResolver nscontext)
82 if (kt.getKeyTableName().equals(name) && doc == kt.getDocKey())
84 nl = kt.getNodeSetDTMByKey(name, ref);
99 new KeyTable(doc, nscontext, name,
108 nl = kt.getNodeSetDTMByKey(name, ref);
57 getNodeSetDTMByKey( XPathContext xctxt, int doc, QName name, XMLString ref, PrefixResolver nscontext) argument
H A DKeyTable.java90 * @param name The key name
96 int doc, PrefixResolver nscontext, QName name, Vector keyDeclarations, XPathContext xctxt)
101 KeyIterator ki = new KeyIterator(name, keyDeclarations);
111 * @param name The name of the key, which must match the 'name' attribute on xsl:key.
113 * @return a set of nodes referenced by the key named <CODE>name</CODE> and the reference <CODE>ref</CODE>. If no node is referenced by this key, an empty node set is returned.
115 public XNodeSet getNodeSetDTMByKey(QName name, XMLString ref) argument
150 * @return Key name
95 KeyTable( int doc, PrefixResolver nscontext, QName name, Vector keyDeclarations, XPathContext xctxt) argument
[all...]
H A DTransformerHandlerImpl.java269 * @param name The notation name.
276 public void notationDecl(String name, String publicId, String systemId) argument
282 m_dtdHandler.notationDecl(name, publicId, systemId);
289 * @param name The entity name.
292 * @param notationName The name of the associated notation.
298 String name, String publicId, String systemId, String notationName)
304 m_dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName);
482 * @param localName The element's local name, o
297 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
606 skippedEntity(String name) argument
768 startDTD(String name, String publicId, String systemId) argument
822 startEntity(String name) argument
841 endEntity(String name) argument
935 elementDecl(String name, String model) argument
995 internalEntityDecl(String name, String value) argument
1024 externalEntityDecl( String name, String publicId, String systemId) argument
[all...]
H A DTransformerIdentityImpl.java530 * <p>Pass a qualified name as a two-part string, the namespace URI
531 * enclosed in curly braces ({}), followed by the local name. If the
532 * name has a null URL, the String only contain the local name. An
534 * character of the name is a '{' character.</p>
535 * <p>For example, if a URI and local name were obtained from an element
537 * then the qualified name would be "{http://xyz.foo.com/yada/baz.html}foo". Note that
540 * @param name The name of the parameter, which may begin with a namespace URI
546 public void setParameter(String name, Objec argument
572 getParameter(String name) argument
735 setOutputProperty(String name, String value) argument
762 getOutputProperty(String name) argument
826 notationDecl(String name, String publicId, String systemId) argument
851 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
1192 skippedEntity(String name) argument
1219 startDTD(String name, String publicId, String systemId) argument
1261 startEntity(String name) argument
1274 endEntity(String name) argument
1342 elementDecl(String name, String model) argument
1394 internalEntityDecl(String name, String value) argument
1417 externalEntityDecl(String name, String publicId, String systemId) argument
[all...]
H A DTransformerImpl.java793 * element names. The element name is the local name
795 * in braces followed immediately by the local name
816 * property name, for example:
823 * @param name The property name.
825 * @throws IllegalArgumentException if the property name is not legal.
827 public void setOutputProperty(String name, String value) argument
842 if (!OutputProperties.isLegalPropertyKey(name))
843 throw new IllegalArgumentException(XSLMessages.createMessage(XSLTErrorResources.ER_OUTPUT_PROPERTY_NOT_RECOGNIZED, new Object[]{name})); //"outpu
1380 setParameter(String name, String namespace, Object value) argument
1414 setParameter(String name, Object value) argument
1490 getParameter(String name) argument
2872 getFeature(String name) argument
3216 fireGenerateEvent( int eventType, String name, Attributes atts) argument
3225 fireGenerateEvent(int eventType, String name, String data) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
H A DSecuritySupport.java108 InputStream getResourceAsStream(ClassLoader cl, String name) { argument
111 ris = ClassLoader.getSystemResourceAsStream(name);
113 ris = cl.getResourceAsStream(name);
H A DSecuritySupport12.java112 final String name)
119 ris = ClassLoader.getSystemResourceAsStream(name);
121 ris = cl.getResourceAsStream(name);
111 getResourceAsStream(final ClassLoader cl, final String name) argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java40 * represented by and tested as integer ID values. An expanded name
42 * the URL ID, and the local-name ID. Note that the namespace URL id
44 * For consistancy, zero should not be used for a local-name index. </p>
258 * Retrieves an attribute node by local name and namespace URI
266 * @param name The local name of the attribute to
268 * @return The attribute node handle with the specified name (
273 String name);
367 * the behavior of the DOM call by the same name.
430 * Given a node handle, return an ID that represents the node's expanded name
272 getAttributeNode(int elementHandle, String namespaceURI, String name) argument
711 getUnparsedEntityURI(String name) argument
[all...]
H A DSecuritySupport.java108 InputStream getResourceAsStream(ClassLoader cl, String name) { argument
111 ris = ClassLoader.getSystemResourceAsStream(name);
113 ris = cl.getResourceAsStream(name);
H A DSecuritySupport12.java112 final String name)
119 ris = ClassLoader.getSystemResourceAsStream(name);
121 ris = cl.getResourceAsStream(name);
111 getResourceAsStream(final ClassLoader cl, final String name) argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java83 * These hold indexes to elements based on namespace and local name.
85 * name, and the last array contains the the first free element
254 * @param LocalNameID Local name ID.
379 * @param lnIndex The local name index lookup.
1039 * Retrieves an attribute node by by qualified name and namespace URI.
1044 * @param name The local name of the attribute to
1046 * @return The attribute node handle with the specified name (
1051 String name);
1316 // %OPT% Keep sorted? (By expanded-name rathe
1050 getAttributeNode(int nodeHandle, String namespaceURI, String name) argument
2082 getUnparsedEntityURI(String name) argument
[all...]
H A DDTMDocumentImpl.java52 * <li>setting application provided symbol name stringpool data structures</li>
140 // needs to be bound to the NS and local name pools. Which
234 * Set a reference pointer to the element name symbol table.
245 * Get a reference pointer to the element name symbol table.
274 * Set a reference pointer to the prefix name symbol table.
285 * Get a reference pointer to the prefix name symbol table.
463 public void skippedEntity(java.lang.String name) argument
586 public void endEntity(java.lang.String name) argument
596 public void startDTD(java.lang.String name, java.lang.String publicId, argument
602 public void startEntity(java.lang.String name) argument
1086 getAttributeNode(int nodeHandle, String namespaceURI, String name) argument
1918 getUnparsedEntityURI(String name) argument
[all...]
H A DDTMNamedNodeMap.java39 * ***** Also note that there's no fastpath for the by-name query; we search
93 * Retrieves a node specified by name.
94 * @param name The <code>nodeName</code> of a node to retrieve.
99 public Node getNamedItem(String name) argument
105 if (dtm.getNodeName(n).equals(name))
139 * that name is already present in this map, it is replaced by the new
141 * <br>As the <code>nodeName</code> attribute is used to derive the name
167 * Removes a node specified by name. When this map contains the attributes
170 * default value as well as the corresponding namespace URI, local name,
172 * @param name Th
181 removeNamedItem(String name) argument
[all...]
H A DDTMNodeProxy.java447 * @param name
451 public boolean hasAttribute(String name) argument
453 return DTM.NULL != dtm.getAttributeNode(node,null,name);
709 * @param name
716 public final Attr createAttribute(String name) throws DOMException argument
723 * @param name
730 public final EntityReference createEntityReference(String name) argument
779 * Private method to be used for recursive iterations to obtain elements by tag name.
905 * Private method to be used for recursive iterations to obtain elements by tag name
1087 * @param name
1092 getAttribute(String name) argument
1108 setAttribute(String name, String value) argument
1121 removeAttribute(String name) argument
1133 getAttributeNode(String name) argument
1990 renameNode(Node n, String namespaceURI, String name) argument
2160 setIdAttribute(String name, boolean makeId) argument
[all...]
H A DIncrementalSAXSource_Filter.java298 public void skippedEntity(java.lang.String name) argument
307 clientContentHandler.skippedEntity(name);
375 public void endEntity(java.lang.String name) argument
379 clientLexicalHandler.endEntity(name);
387 public void startDTD(java.lang.String name, java.lang.String publicId, argument
392 clientLexicalHandler. startDTD(name, publicId, systemId);
394 public void startEntity(java.lang.String name) argument
398 clientLexicalHandler.startEntity(name);
H A DSecuritySupport.java108 InputStream getResourceAsStream(ClassLoader cl, String name) { argument
111 ris = ClassLoader.getSystemResourceAsStream(name);
113 ris = cl.getResourceAsStream(name);
H A DSecuritySupport12.java112 final String name)
119 ris = ClassLoader.getSystemResourceAsStream(name);
121 ris = cl.getResourceAsStream(name);
111 getResourceAsStream(final ClassLoader cl, final String name) argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTM.java224 // rather than the node name.
238 String name = node.getNodeName();
240 if (name.startsWith("xmlns:") || name.equals("xmlns"))
265 // definitions of local name. (The former says PIs don't have
282 // successfully by name. Since the DOM makes no promise that
740 * Retrieves an attribute node by by qualified name and namespace URI.
745 * @param name The local name of the attribute to
747 * @return The attribute node handle with the specified name (
751 getAttributeNode(int nodeHandle, String namespaceURI, String name) argument
1413 getUnparsedEntityURI(String name) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java139 /** Data or qualified name values, one array element for each node. */
162 * publicId, systemID, notationName, and name.
172 /** m_entities notation name offset. */
175 /** m_entities name offset. */
303 * Get the data or qualified name for the given node identity.
307 * @return The data or qualified name, or DTM.NULL.
583 * Given a node handle, return its DOM-style node name. This will
600 // Don't retrieve name until/unless needed
601 // String name = m_expandedNameTable.getLocalName(expandedTypeID);
633 * Given a node handle, return the XPath node name
1079 getUnparsedEntityURI(String name) argument
1185 getAttributeNode(int nodeHandle, String namespaceURI, String name) argument
1601 notationDecl(String name, String publicId, String systemId) argument
1626 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
2157 skippedEntity(String name) argument
2247 elementDecl(String name, String model) argument
2293 internalEntityDecl(String name, String value) argument
2315 externalEntityDecl( String name, String publicId, String systemId) argument
2347 startDTD(String name, String publicId, String systemId) argument
2388 startEntity(String name) argument
2401 endEntity(String name) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DCharInfo.java59 * The name of the HTML entities file.
66 * The name of the XML entities file.
201 String name = (String) keys.nextElement();
202 String value = entities.getString(name);
204 boolean extra = defineEntity(name, (char) code);
277 String name = line.substring(0, index);
291 boolean extra = defineEntity(name, (char) code);
347 * Defines a new character reference. The reference's name and value are
354 * @param name The entity's name
364 defineEntity(String name, char value) argument
[all...]
H A DElemDesc.java150 * Set an attribute name and it's bit properties.
153 * @param name non-null name of attribute, in upper case.
156 void setAttr(String name, int flags) argument
162 m_attrs.put(name, flags);
168 * @param name non-null reference to attribute name, in any case.
173 public boolean isAttrFlagSet(String name, int flags) argument
176 ? ((m_attrs.getIgnoreCase(name) & flags) != 0)
H A DEncodingInfo.java25 * Holds information about a given encoding, which is the Java name for the
26 * encoding, the equivalent ISO name.
79 * The ISO encoding name.
81 final String name; field in class:EncodingInfo
84 * The name used by the Java convertor.
138 * Create an EncodingInfo object based on the ISO name and Java name.
143 * @param name reference to the ISO name.
144 * @param javaName reference to the Java encoding name
149 EncodingInfo(String name, String javaName, char highChar) argument
[all...]
H A DExtendedContentHandler.java51 * @param uri the namespace URI of the attribute name
52 * @param localName the local name of the attribute (without prefix)
53 * @param rawName the qualified name of the attribute
76 * attribute will be calculated from the prefix of qName. The local name
105 * the localName from the qualified name and derive the namespaceURI from
107 * @param elemName the fully qualified element name.
120 * @param localName the local name (without prefix) of the element
121 * @param qName the qualified name of the element
130 * @param qName the fully qualified name of the element
175 * @param entityName the name o
204 getNamespaceURI(String name, boolean isElement) argument
[all...]
H A DSecuritySupport.java106 InputStream getResourceAsStream(ClassLoader cl, String name) { argument
109 ris = ClassLoader.getSystemResourceAsStream(name);
111 ris = cl.getResourceAsStream(name);

Completed in 1452 milliseconds

1234567891011>>