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

1 2 3 4 5 6 7 8 91011

  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
ExtendedType.java 31 private String localName;
40 * @param localName Local name of the node
42 public ExtendedType (int nodetype, String namespace, String localName)
46 this.localName = localName;
47 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
56 * @param localName Local name of the node
59 public ExtendedType (int nodetype, String namespace, String localName, int hash)
63 this.localName = localName;
    [all...]
  /external/webkit/WebCore/dom/
TagNodeList.h 35 static PassRefPtr<TagNodeList> create(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList::Caches* caches)
37 return adoptRef(new TagNodeList(rootNode, namespaceURI, localName, caches));
41 TagNodeList(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList::Caches* caches);
TagNodeList.cpp 32 TagNodeList::TagNodeList(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList::Caches* caches)
35 , m_localName(localName)
45 return m_localName == starAtom || m_localName == testNode->localName();
QualifiedName.h 39 static PassRefPtr<QualifiedNameImpl> create(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI)
41 return adoptRef(new QualifiedNameImpl(prefix, localName, namespaceURI));
50 QualifiedNameImpl(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI)
52 , m_localName(localName)
59 QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI);
60 QualifiedName(const AtomicString& prefix, const char* localName, const AtomicString& namespaceURI);
72 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); }
75 void setPrefix(const AtomicString& prefix) { *this = QualifiedName(prefix, localName(), namespaceURI()); }
78 const AtomicString& localName() const { return m_impl->m_localName;
    [all...]
  /frameworks/base/sax/java/android/sax/
Children.java 30 Element getOrCreate(Element parent, String uri, String localName) {
31 int hash = uri.hashCode() * 31 + localName.hashCode();
37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
46 && current.localName.compareTo(localName) == 0) {
56 current = new Child(parent, uri, localName, parent.depth + 1, hash);
65 Element get(String uri, String localName) {
66 int hash = uri.hashCode() * 31 + localName.hashCode();
76 && current.localName.compareTo(localName) == 0)
    [all...]
Element.java 35 final String localName;
48 Element(Element parent, String uri, String localName, int depth) {
51 this.localName = localName;
59 public Element getChild(String localName) {
60 return getChild("", localName);
66 public Element getChild(String uri, String localName) {
76 return children.getOrCreate(this, uri, localName);
85 public Element requireChild(String localName) {
86 return requireChild("", localName);
    [all...]
RootElement.java 74 * @param localName the local name
76 public RootElement(String uri, String localName) {
77 super(null, uri, localName, 0);
84 * @param localName the local name
86 public RootElement(String localName) {
87 this("", localName);
110 public void startElement(String uri, String localName, String qName,
116 startRoot(uri, localName, attributes);
132 Element child = children.get(uri, localName);
140 void startRoot(String uri, String localName, Attributes attributes
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/picasa/
PhotoEntry.java 201 public void setPropertyFromXml(String uri, String localName, Attributes attrs, String content) {
203 char localNameChar = localName.charAt(0);
207 if (localName.equals("id")) {
212 if (localName.equals("albumid")) {
217 if (localName.equals("timestamp")) {
222 if (localName.equals("commentCount")) {
227 if (localName.equals("width")) {
232 if (localName.equals("height")) {
237 if (localName.equals("rotation")) {
242 if (localName.equals("size"))
    [all...]
AlbumEntry.java 160 public void setPropertyFromXml(String uri, String localName, Attributes attrs, String content) {
161 char localNameChar = localName.charAt(0);
165 if (localName.equals("id")) {
170 if (localName.equals("user")) {
175 if (localName.equals("numphotos")) {
180 if (localName.equals("bytesUsed")) {
188 if (localName.equals("title")) {
193 if (localName.equals("summary")) {
198 if (localName.equals("published")) {
203 if (localName.equals("updated"))
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2.java 82 * @param localName The attribute's local name.
88 public boolean isDeclared (String uri, String localName);
113 * @param localName The attribute's local name.
119 public boolean isSpecified (String uri, String localName);
  /libcore/luni/src/main/java/org/xml/sax/
Attributes.java 182 * @param localName The attribute's local name.
186 public int getIndex (String uri, String localName);
207 * @param localName The local name of the attribute.
212 public abstract String getType (String uri, String localName);
237 * @param localName The local name of the attribute.
241 public abstract String getValue (String uri, String localName);
  /external/jdiff/src/jdiff/
APIHandler.java 72 public void startElement(java.lang.String uri, java.lang.String localName,
75 if (localName.equals(""))
76 localName = qName;
77 if (localName.compareTo("api") == 0) {
81 } else if (localName.compareTo("package") == 0) {
82 currentElement = localName;
85 } else if (localName.compareTo("class") == 0) {
86 currentElement = localName;
93 } else if (localName.compareTo("interface") == 0) {
94 currentElement = localName;
    [all...]
CommentsHandler.java 57 public void startElement(java.lang.String uri, java.lang.String localName,
60 if (localName.equals(""))
61 localName = qName;
62 if (localName.compareTo("comments") == 0) {
77 } else if (localName.compareTo("comment") == 0) {
79 } else if (localName.compareTo("identifier") == 0) {
85 } else if (localName.compareTo("text") == 0) {
91 addStartTagToText(localName, attributes);
93 System.out.println("Error: unknown element type: " + localName);
99 public void endElement(java.lang.String uri, java.lang.String localName,
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatAttributes.java 77 public int getIndex(String uri, String localName) {
81 if (localName == null) {
88 return getIndex(pointer, uri, localName);
102 public String getType(String uri, String localName) {
106 if (localName == null) {
109 return getIndex(uri, localName) == -1 ? null : CDATA;
116 public String getValue(String uri, String localName) {
120 if (localName == null) {
127 return getValue(pointer, uri, localName);
145 private static native int getIndex(int attributePointer, String uri, String localName);
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
NamedNodeMap.java 107 * @param localName The local name of the node to retrieve.
118 String localName)
123 * <code>localName</code>. If a node with that namespace URI and that
131 * <code>localName</code> attributes.
167 * @param localName The local name of the node to remove.
172 * <code>namespaceURI</code> and <code>localName</code> in this map.
180 String localName)
Element.java 34 * The name of the element. If <code>Node.localName</code> is different
170 * @param localName The local name of the attribute to retrieve.
180 String localName)
246 * @param localName The local name of the attribute to remove.
255 String localName)
265 * @param localName The local name of the attribute to retrieve.
276 String localName)
314 * @param localName The local name of the elements to match on. The
325 String localName)
349 * @param localName The local name of the attribute to look for
    [all...]
  /external/webkit/WebCore/xml/
XSLTProcessor.idl 44 [Custom] void setParameter(in DOMString namespaceURI, in DOMString localName, in DOMString value);
45 [Custom, ConvertNullStringTo=Undefined] DOMString getParameter(in DOMString namespaceURI, in DOMString localName);
46 [Custom] void removeParameter(in DOMString namespaceURI, in DOMString localName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutDeviceHandler.java 79 public void startElement(String uri, String localName, String name, Attributes attributes)
81 if (LayoutDevicesXsd.NODE_DEVICE.equals(localName)) {
88 } else if (LayoutDevicesXsd.NODE_DEFAULT.equals(localName)) {
91 } else if (LayoutDevicesXsd.NODE_CONFIG.equals(localName)) {
105 } else if (LayoutDevicesXsd.NODE_SCREEN_DIMENSION.equals(localName)) {
118 public void endElement(String uri, String localName, String name) throws SAXException {
119 if (LayoutDevicesXsd.NODE_DEVICE.equals(localName)) {
122 } else if (LayoutDevicesXsd.NODE_CONFIG.equals(localName)) {
124 } else if (LayoutDevicesXsd.NODE_COUNTRY_CODE.equals(localName)) {
128 } else if (LayoutDevicesXsd.NODE_NETWORK_CODE.equals(localName)) {
    [all...]
  /external/webkit/WebCore/html/
HTMLElement.cpp 95 map->add(wbrTag.localName().impl(), 0);
97 map->add(addressTag.localName().impl(), 3);
98 map->add(ddTag.localName().impl(), 3);
99 map->add(dtTag.localName().impl(), 3);
100 map->add(noscriptTag.localName().impl(), 3);
101 map->add(rpTag.localName().impl(), 3);
102 map->add(rtTag.localName().impl(), 3);
105 map->add(articleTag.localName().impl(), 5);
106 map->add(asideTag.localName().impl(), 5);
107 map->add(centerTag.localName().impl(), 5)
    [all...]
HTMLParser.cpp 236 else if (m_current->localName() == t->tagName)
257 if (t->tagName == textAtom && t->text && m_current->localName() != scriptTag) {
258 if (m_inBody && !skipMode() && m_current->localName() != styleTag &&
259 m_current->localName() != titleTag && !t->text->containsOnlyWhitespace())
356 const AtomicString& localName = n->localName();
360 if (m_inStrayTableContent && localName == tableTag)
372 return handleError(n, flat, localName, tagPriority); // Try to handle the error.
379 ASSERT(localName == formTag);
380 reportError(FormInsideTablePartError, &m_current->localName());
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
AttrImpl.java 44 String localName;
63 String localName = name.substring(prefixSeparator + 1);
65 if (!DocumentImpl.isXMLIdentifier(prefix) || !DocumentImpl.isXMLIdentifier(localName)) {
74 this.localName = name;
79 return namespaceAware ? localName : null;
84 ? prefix + ":" + localName
85 : localName;
  /libcore/luni/src/test/java/tests/org/w3c/dom/
LocalName.java 32 public final class LocalName extends DOMTestCase {
72 String localName;
78 localName = addrAttr.getLocalName();
79 assertEquals("localName", "domestic", localName);
90 String localName;
93 localName = createdNode.getLocalName();
94 assertNull("localNameNull", localName);
107 String localName;
112 localName = textNode.getLocalName()
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getAttributeNS03.java 34 * The "getAttributeNS(namespaceURI,localName)" method retrieves an
68 String localName = "domestic";
77 testAddr.removeAttributeNS(namespaceURI, localName);
78 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
localName02.java 70 String localName;
73 localName = createdNode.getLocalName();
74 assertNull("localNameNull", localName);
localName03.java 72 String localName;
77 localName = textNode.getLocalName();
78 assertNull("textNodeLocalName", localName);

Completed in 772 milliseconds

1 2 3 4 5 6 7 8 91011