/external/webkit/WebCore/html/ |
D | HTMLParser.cpp | 205 else if (current->localName() == t->tagName) in parseToken() 226 if (t->tagName == textAtom && t->text && current->localName() != scriptTag) { in parseToken() 227 if (inBody && !skipMode() && current->localName() != styleTag && in parseToken() 228 current->localName() != titleTag && !t->text->containsOnlyWhitespace()) in parseToken() 324 const AtomicString& localName = n->localName(); in insertNode() local 329 if (inStrayTableContent && localName == tableTag) in insertNode() 341 return handleError(n, flat, localName, tagPriority); // Try to handle the error. in insertNode() 348 ASSERT(localName == formTag); in insertNode() 349 reportError(FormInsideTablePartError, ¤t->localName()); in insertNode() 355 pushBlock(localName, tagPriority); in insertNode() [all …]
|
D | HTMLElement.cpp | 69 return tagQName().localName().string().upper(); in nodeName() 835 tagList.add(tags[i]->localName().impl()); in isRecognizedTagName() 837 return tagList.contains(tagName.localName().impl()); in isRecognizedTagName() 846 tagList.add(ttTag.localName().impl()); in inlineTagList() 847 tagList.add(iTag.localName().impl()); in inlineTagList() 848 tagList.add(bTag.localName().impl()); in inlineTagList() 849 tagList.add(uTag.localName().impl()); in inlineTagList() 850 tagList.add(sTag.localName().impl()); in inlineTagList() 851 tagList.add(strikeTag.localName().impl()); in inlineTagList() 852 tagList.add(bigTag.localName().impl()); in inlineTagList() [all …]
|
/external/jdiff/src/jdiff/ |
D | APIHandler.java | 72 public void startElement(java.lang.String uri, java.lang.String localName, in startElement() argument 75 if (localName.equals("")) in startElement() 76 localName = qName; in startElement() 77 if (localName.compareTo("api") == 0) { in startElement() 81 } else if (localName.compareTo("package") == 0) { in startElement() 82 currentElement = localName; in startElement() 85 } else if (localName.compareTo("class") == 0) { in startElement() 86 currentElement = localName; in startElement() 93 } else if (localName.compareTo("interface") == 0) { in startElement() 94 currentElement = localName; in startElement() [all …]
|
D | CommentsHandler.java | 57 public void startElement(java.lang.String uri, java.lang.String localName, in startElement() argument 60 if (localName.equals("")) in startElement() 61 localName = qName; in startElement() 62 if (localName.compareTo("comments") == 0) { in startElement() 77 } else if (localName.compareTo("comment") == 0) { in startElement() 79 } else if (localName.compareTo("identifier") == 0) { in startElement() 85 } else if (localName.compareTo("text") == 0) { in startElement() 91 addStartTagToText(localName, attributes); in startElement() 93 System.out.println("Error: unknown element type: " + localName); in startElement() 99 public void endElement(java.lang.String uri, java.lang.String localName, in endElement() argument [all …]
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
D | XMLWriter.java | 573 public void startElement (String uri, String localName, in startElement() argument 579 if (forceDTD && !hasOutputDTD) startDTD(localName == null ? qName : localName, "", ""); in startElement() 581 writeName(uri, localName, qName, true); in startElement() 593 super.startElement(uri, localName, qName, atts); in startElement() 615 public void endElement (String uri, String localName, String qName) in endElement() argument 629 writeName(uri, localName, qName, true); in endElement() 636 super.endElement(uri, localName, qName); in endElement() 748 public void emptyElement (String uri, String localName, in emptyElement() argument 754 writeName(uri, localName, qName, true); in emptyElement() 761 super.startElement(uri, localName, qName, atts); in emptyElement() [all …]
|
D | AttributesImpl.java | 207 public int getIndex (String uri, String localName) in getIndex() argument 211 if (data[i].equals(uri) && data[i+1].equals(localName)) { in getIndex() 248 public String getType (String uri, String localName) in getType() argument 252 if (data[i].equals(uri) && data[i+1].equals(localName)) { in getType() 290 public String getValue (String uri, String localName) in getValue() argument 294 if (data[i].equals(uri) && data[i+1].equals(localName)) { in getValue() 387 public void addAttribute (String uri, String localName, String qName, in addAttribute() argument 392 data[length*5+1] = localName; in addAttribute() 421 public void setAttribute (int index, String uri, String localName, in setAttribute() argument 426 data[index*5+1] = localName; in setAttribute() [all …]
|
D | ElementType.java | 58 theLocalName = localName(name); in ElementType() 88 public String localName(String name) { in localName() method in ElementType 117 public String localName() { return theLocalName; } in localName() method in ElementType 195 String localName = localName(name); in setAttribute() local 201 atts.addAttribute(namespace, localName, name, type, value); in setAttribute() 206 atts.setAttribute(i, namespace, localName, name, type, value); in setAttribute()
|
/external/webkit/WebCore/dom/ |
D | QualifiedName.h | 58 …QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& names… 70 …lifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && n… in matches() 76 const AtomicString& localName() const { return m_impl->m_localName; } in localName() function 98 inline bool operator==(const AtomicString& a, const QualifiedName& q) { return a == q.localName(); } 99 inline bool operator!=(const AtomicString& a, const QualifiedName& q) { return a != q.localName(); } 100 inline bool operator==(const QualifiedName& q, const AtomicString& a) { return a == q.localName(); } 101 inline bool operator!=(const QualifiedName& q, const AtomicString& a) { return a != q.localName(); } 165 …static bool isDeletedValue(const WebCore::QualifiedName& slot) { return slot.localName().isHashTab…
|
D | Element.h | 54 bool hasAttributeNS(const String& namespaceURI, const String& localName) const; 57 const AtomicString& getAttributeNS(const String& namespaceURI, const String& localName) const; 86 void removeAttributeNS(const String& namespaceURI, const String& localName, ExceptionCode&); 89 PassRefPtr<Attr> getAttributeNodeNS(const String& namespaceURI, const String& localName); 101 bool hasLocalName(const AtomicString& other) const { return m_tagName.localName() == other; } in hasLocalName() 102 …sLocalName(const QualifiedName& other) const { return m_tagName.localName() == other.localName(); } in hasLocalName() 104 const AtomicString& localName() const { return m_tagName.localName(); } in localName() function 215 virtual const AtomicString& virtualLocalName() const { return localName(); } in virtualLocalName()
|
D | Element.cpp | 125 setAttribute(name, name.localName()); in setBooleanAttribute() 165 return hasAttributeNS(name.namespaceURI(), name.localName()); in hasAttribute() 175 updateAnimatedSVGAttribute(name.localName()); in getAttribute() 432 String localName = shouldIgnoreAttributeCase(this) ? name.lower() : name; in getAttribute() local 433 if (localName == styleAttr.localName() && !m_isStyleAttributeValid) in getAttribute() 448 const AtomicString& Element::getAttributeNS(const String& namespaceURI, const String& localName) co… in getAttributeNS() 450 return getAttribute(QualifiedName(nullAtom, localName, namespaceURI)); in getAttributeNS() 460 …const AtomicString& localName = (shouldIgnoreAttributeCase(this) && !name.string().impl()->isLower… in setAttribute() local 463 Attribute* old = attributes(false)->getAttributeItem(localName, false); in setAttribute() 467 if (localName == idAttr.localName()) in setAttribute() [all …]
|
D | TagNodeList.cpp | 32 …r<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList… in TagNodeList() argument 35 , m_localName(localName) in TagNodeList() 45 return m_localName == starAtom || m_localName == testNode->localName(); in nodeMatches()
|
D | TagNodeList.h | 35 …r<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList… in create() argument 37 return adoptRef(new TagNodeList(rootNode, namespaceURI, localName, caches)); in create() 41 …r<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList…
|
D | NamedAttrMap.cpp | 61 PassRefPtr<Node> NamedAttrMap::getNamedItemNS(const String& namespaceURI, const String& localName) … in getNamedItemNS() 63 return getNamedItem(QualifiedName(nullAtom, localName, namespaceURI)); in getNamedItemNS() 77 …medAttrMap::removeNamedItemNS(const String& namespaceURI, const String& localName, ExceptionCode& … in removeNamedItemNS() argument 79 return removeNamedItem(QualifiedName(nullAtom, localName, namespaceURI), ec); in removeNamedItemNS() 172 m_attributes[i]->name().localName() == name) in getAttributeItem()
|
D | Element.idl | 51 in DOMString localName); 57 in DOMString localName) 60 in DOMString localName); 62 in DOMString localName); 67 in DOMString localName);
|
D | NamedNodeMap.h | 49 …virtual PassRefPtr<Node> getNamedItemNS(const String& namespaceURI, const String& localName) const… 51 …virtual PassRefPtr<Node> removeNamedItemNS(const String& namespaceURI, const String& localName, Ex…
|
/external/webkit/WebCore/bindings/js/ |
D | JSXSLTProcessorCustom.cpp | 93 String localName = args.at(exec, 1).toString(exec); in setParameter() local 95 impl()->setParameter(namespaceURI, localName, value); in setParameter() 104 String localName = args.at(exec, 1).toString(exec); in getParameter() local 105 String value = impl()->getParameter(namespaceURI, localName); in getParameter() 114 String localName = args.at(exec, 1).toString(exec); in removeParameter() local 115 impl()->removeParameter(namespaceURI, localName); in removeParameter()
|
/external/webkit/WebKit/win/ |
D | DOMHTMLClasses.h | 277 virtual HRESULT STDMETHODCALLTYPE localName( in localName() function 278 /* [retval][out] */ BSTR *result) { return DOMDocument::localName(result); } in localName() 360 /* [in] */ BSTR localName, in getElementsByTagNameNS() argument 361 …NodeList **result) { return DOMDocument::getElementsByTagNameNS(namespaceURI, localName, result); } in getElementsByTagNameNS() 551 virtual HRESULT STDMETHODCALLTYPE localName( in localName() function 552 /* [retval][out] */ BSTR *result) { return DOMElement::localName(result); } in localName() 604 /* [in] */ BSTR localName, in getAttributeNS() argument 605 …tval][out] */ BSTR *result) { return DOMElement::getAttributeNS(namespaceURI, localName, result); } in getAttributeNS() 614 … /* [in] */ BSTR localName) { return DOMElement::removeAttributeNS(namespaceURI, localName); } in removeAttributeNS() argument 618 /* [in] */ BSTR localName, in getAttributeNodeNS() argument [all …]
|
/external/webkit/WebCore/xml/ |
D | XPathGrammar.y | 193 String localName; variable 195 if (!PARSER->expandQName(*$1, localName, namespaceURI)) { 201 …$$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), … 204 … $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI)); 222 String localName; variable 224 if (!PARSER->expandQName(*$2, localName, namespaceURI)) { 230 … $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$3); 233 $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
|
D | XSLTProcessor.h | 54 void setParameter(const String& namespaceURI, const String& localName, const String& value); 55 String getParameter(const String& namespaceURI, const String& localName) const; 56 void removeParameter(const String& namespaceURI, const String& localName);
|
D | XSLTProcessor.cpp | 439 void XSLTProcessor::setParameter(const String& /*namespaceURI*/, const String& localName, const Str… in setParameter() argument 443 m_parameters.set(localName, value); in setParameter() 446 String XSLTProcessor::getParameter(const String& /*namespaceURI*/, const String& localName) const in getParameter() 450 return m_parameters.get(localName); in getParameter() 453 void XSLTProcessor::removeParameter(const String& /*namespaceURI*/, const String& localName) in removeParameter() argument 456 m_parameters.remove(localName); in removeParameter()
|
/external/webkit/WebKit/win/Interfaces/ |
D | DOMCore.idl | 213 - (NSString *)localName; 215 HRESULT localName([out, retval] BSTR* result); 302 - (DOMNode *)getNamedItemNS:(NSString *)namespaceURI :(NSString *)localName; 304 …HRESULT getNamedItemNS([in] BSTR namespaceURI, [in] BSTR localName, [out, retval] IDOMNode** resul… 312 - (DOMNode *)removeNamedItemNS:(NSString *)namespaceURI :(NSString *)localName; 314 …HRESULT removeNamedItemNS([in] BSTR namespaceURI, [in] BSTR localName, [out, retval] IDOMNode** re… 404 - (DOMNodeList *)getElementsByTagNameNS:(NSString *)namespaceURI :(NSString *)localName; 406 …HRESULT getElementsByTagNameNS([in] BSTR namespaceURI, [in] BSTR localName, [out, retval] IDOMNode… 555 - (NSString *)getAttributeNS:(NSString *)namespaceURI :(NSString *)localName; 557 HRESULT getAttributeNS([in] BSTR namespaceURI, [in] BSTR localName, [out, retval] BSTR* result); [all …]
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/ |
D | SAX1ParserAdapter.java | 126 public void endElement(String uri, String localName, String qName) in endElement() argument 130 qName = localName; in endElement() 168 public void startElement(String uri, String localName, String qName, in startElement() argument 173 qName = localName; in startElement()
|
/external/webkit/WebCore/editing/ |
D | FormatBlockCommand.cpp | 96 String localName, prefix; in doApply() local 97 if (!Document::parseQualifiedName(m_tagName, prefix, localName, ec)) in doApply() 99 QualifiedName qTypeOfBlock(prefix, localName, xhtmlNamespaceURI); in doApply()
|
/external/webkit/WebCore/bindings/objc/ |
D | PublicDOMInterfaces.h | 107 - (DOMNodeList *)getElementsByTagNameNS:(NSString *)namespaceURI :(NSString *)localName; 112 - (DOMNodeList *)getElementsByTagNameNS:(NSString *)namespaceURI localName:(NSString *)localName AV… 171 - (NSString *)getAttributeNS:(NSString *)namespaceURI :(NSString *)localName; 173 - (void)removeAttributeNS:(NSString *)namespaceURI :(NSString *)localName; 174 - (DOMNodeList *)getElementsByTagNameNS:(NSString *)namespaceURI :(NSString *)localName; 175 - (DOMAttr *)getAttributeNodeNS:(NSString *)namespaceURI :(NSString *)localName; 176 - (NSString *)getAttributeNS:(NSString *)namespaceURI localName:(NSString *)localName AVAILABLE_WEB… 178 - (void)removeAttributeNS:(NSString *)namespaceURI localName:(NSString *)localName AVAILABLE_WEBKIT… 179 - (DOMNodeList *)getElementsByTagNameNS:(NSString *)namespaceURI localName:(NSString *)localName AV… 180 - (DOMAttr *)getAttributeNodeNS:(NSString *)namespaceURI localName:(NSString *)localName AVAILABLE_… [all …]
|
/external/webkit/WebCore/css/ |
D | CSSSelector.cpp | 41 int s = (m_tag.localName() == starAtom ? 0 : 1); in specificity() 362 const AtomicString& localName = m_tag.localName(); in selectorText() local 363 if (m_match == CSSSelector::None || !prefix.isNull() || localName != starAtom) { in selectorText() 365 str = localName; in selectorText() 367 str = prefix + "|" + localName; in selectorText() 401 str += cs->attribute().localName(); in selectorText()
|