Searched refs:localName (Results 1 - 25 of 276) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTagCollection.cpp30 HTMLTagCollection::HTMLTagCollection(ContainerNode& rootNode, const AtomicString& localName) argument
31 : TagCollection(rootNode, HTMLTagCollectionType, starAtom, localName)
32 , m_loweredLocalName(localName.lower())
H A DHTMLTagCollection.h36 static PassRefPtrWillBeRawPtr<HTMLTagCollection> create(ContainerNode& rootNode, CollectionType type, const AtomicString& localName) argument
39 return adoptRefWillBeNoop(new HTMLTagCollection(rootNode, localName));
45 HTMLTagCollection(ContainerNode& rootNode, const AtomicString& localName);
56 const AtomicString& localName = testElement.isHTMLElement() ? m_loweredLocalName : m_localName; local
57 if (localName != testElement.localName())
H A DHTMLElement.cpp213 if (!attrName.localName().startsWith("on", false))
219 attributeNameToEventNameMap.set(onabortAttr.localName(), EventTypeNames::abort);
220 attributeNameToEventNameMap.set(onanimationendAttr.localName(), EventTypeNames::animationend);
221 attributeNameToEventNameMap.set(onanimationiterationAttr.localName(), EventTypeNames::animationiteration);
222 attributeNameToEventNameMap.set(onanimationstartAttr.localName(), EventTypeNames::animationstart);
223 attributeNameToEventNameMap.set(onautocompleteAttr.localName(), EventTypeNames::autocomplete);
224 attributeNameToEventNameMap.set(onautocompleteerrorAttr.localName(), EventTypeNames::autocompleteerror);
225 attributeNameToEventNameMap.set(onbeforecopyAttr.localName(), EventTypeNames::beforecopy);
226 attributeNameToEventNameMap.set(onbeforecutAttr.localName(), EventTypeNames::beforecut);
227 attributeNameToEventNameMap.set(onbeforepasteAttr.localName(), EventTypeName
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DExtendedType.java31 private String localName; field in class:ExtendedType
40 * @param localName Local name of the node
42 public ExtendedType (int nodetype, String namespace, String localName) argument
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) argument
63 this.localName = localName;
72 redefine(int nodetype, String namespace, String localName) argument
85 redefine(int nodetype, String namespace, String localName, int hash) argument
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DQName.java20 private String localName; field in class:QName
34 localName = qname.substring(colon + 1);
39 localName = qname;
46 * @param localName the name
48 public QName(String prefix, String localName) argument
51 this.localName = localName;
65 * @return the localName
69 return localName;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTagCollection.h35 static PassRefPtrWillBeRawPtr<TagCollection> create(ContainerNode& rootNode, const AtomicString& namespaceURI, const AtomicString& localName) argument
38 return adoptRefWillBeNoop(new TagCollection(rootNode, TagCollectionType, namespaceURI, localName));
41 static PassRefPtrWillBeRawPtr<TagCollection> create(ContainerNode& rootNode, CollectionType type, const AtomicString& localName) argument
44 return adoptRefWillBeNoop(new TagCollection(rootNode, TagCollectionType, starAtom, localName));
52 TagCollection(ContainerNode& rootNode, CollectionType, const AtomicString& namespaceURI, const AtomicString& localName);
H A DTagCollection.cpp32 TagCollection::TagCollection(ContainerNode& rootNode, CollectionType type, const AtomicString& namespaceURI, const AtomicString& localName) argument
35 , m_localName(localName)
53 if (m_localName != starAtom && m_localName != testNode.localName())
H A DAttribute.h48 const AtomicString& localName() const { return m_name.localName(); } function in class:blink::Attribute
77 if (qualifiedName.localName() != localName())
H A DQualifiedName.h49 static PassRefPtr<QualifiedNameImpl> create(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI, bool isStatic) argument
51 return adoptRef(new QualifiedNameImpl(prefix, localName, namespaceURI, isStatic));
82 QualifiedNameImpl(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI, bool isStatic) argument
86 , m_localName(localName)
94 QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI);
107 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); }
109 bool matchesPossiblyIgnoringCase(const QualifiedName& other, bool shouldIgnoreCase) const { return m_impl == other.m_impl || (equalPossiblyIgnoringCase(localName(), other.localName(), shouldIgnoreCase) && namespaceURI() == other.namespaceURI()); }
112 void setPrefix(const AtomicString& prefix) { *this = QualifiedName(prefix, localName(), namespaceUR
115 const AtomicString& localName() const { return m_impl->m_localName; } function in class:blink::QualifiedName
[all...]
H A DNamedNodeMap.cpp54 PassRefPtrWillBeRawPtr<Node> NamedNodeMap::getNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName) const
56 return m_element->getAttributeNodeNS(namespaceURI, localName);
69 PassRefPtrWillBeRawPtr<Node> NamedNodeMap::removeNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName, ExceptionState& exceptionState) argument
71 size_t index = m_element->attributes().findIndex(QualifiedName(nullAtom, localName, namespaceURI));
73 exceptionState.throwDOMException(NotFoundError, "No item with name '" + namespaceURI + "::" + localName + "' was found.");
/external/jdiff/src/jdiff/
H A DAPIHandler.java72 public void startElement(java.lang.String uri, java.lang.String localName, argument
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;
159 endElement(java.lang.String uri, java.lang.String localName, java.lang.String qName) argument
274 addStartTagToText(String localName, Attributes attributes) argument
304 addEndTagToText(String localName) argument
[all...]
H A DCommentsHandler.java57 public void startElement(java.lang.String uri, java.lang.String localName, argument
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, argument
152 addStartTagToText(String localName, Attributes attributes) argument
182 addEndTagToText(String localName) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8XSLTProcessorCustom.cpp51 TOSTRING_VOID(V8StringResource<>, localName, info[1]);
55 impl->setParameter(namespaceURI, localName, value);
64 TOSTRING_VOID(V8StringResource<>, localName, info[1]);
67 String result = impl->getParameter(namespaceURI, localName);
80 TOSTRING_VOID(V8StringResource<>, localName, info[1]);
83 impl->removeParameter(namespaceURI, localName);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLTProcessor.idl45 [Custom] void setParameter(DOMString namespaceURI, DOMString localName, DOMString value);
46 [Custom, TreatReturnedNullStringAs=Undefined] DOMString getParameter(DOMString namespaceURI, DOMString localName);
47 [Custom] void removeParameter(DOMString namespaceURI, DOMString localName);
H A DXSLTProcessor.cpp134 void XSLTProcessor::setParameter(const String& /*namespaceURI*/, const String& localName, const String& value) argument
138 m_parameters.set(localName, value);
141 String XSLTProcessor::getParameter(const String& /*namespaceURI*/, const String& localName) const
145 return m_parameters.get(localName);
148 void XSLTProcessor::removeParameter(const String& /*namespaceURI*/, const String& localName) argument
151 m_parameters.remove(localName);
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementDescriptor.h47 CustomElementDescriptor(const AtomicString& type, const AtomicString& namespaceURI, const AtomicString& localName) argument
50 , m_localName(localName)
61 const AtomicString& localName() const { return m_localName; } function in class:blink::CustomElementDescriptor
64 // name and the same as "localName". For type extensions, this is
H A DCustomElement.cpp77 reservedNames.append(MathMLNames::annotation_xmlTag.localName());
79 reservedNames.append(SVGNames::font_faceTag.localName());
80 reservedNames.append(SVGNames::font_face_srcTag.localName());
81 reservedNames.append(SVGNames::font_face_uriTag.localName());
82 reservedNames.append(SVGNames::font_face_formatTag.localName());
83 reservedNames.append(SVGNames::font_face_nameTag.localName());
84 reservedNames.append(SVGNames::missing_glyphTag.localName());
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1170187.js54 var local0Name = exec_state.frame(0).localName(0);
55 var local1Name = exec_state.frame(0).localName(1);
56 var local2Name = exec_state.frame(0).localName(2);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGResources.cpp53 s_tagList.add(aTag.localName());
54 s_tagList.add(circleTag.localName());
55 s_tagList.add(ellipseTag.localName());
57 s_tagList.add(glyphTag.localName());
59 s_tagList.add(gTag.localName());
60 s_tagList.add(imageTag.localName());
61 s_tagList.add(lineTag.localName());
62 s_tagList.add(markerTag.localName());
63 s_tagList.add(maskTag.localName());
65 s_tagList.add(missing_glyphTag.localName());
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DXMLWriter.java564 * @param localName The element's local (unprefixed) name (required).
576 public void startElement (String uri, String localName,
582 if (forceDTD && !hasOutputDTD) startDTD(localName == null ? qName : localName, "", "");
584 writeName(uri, localName, qName, true);
596 super.startElement(uri, localName, qName, atts);
607 * @param localName The element's local (unprefixed) name (required).
618 public void endElement (String uri, String localName, String qName)
632 writeName(uri, localName, qName, true);
639 super.endElement(uri, localName, qNam
573 startElement(String uri, String localName, String qName, Attributes atts) argument
615 endElement(String uri, String localName, String qName) argument
748 emptyElement(String uri, String localName, String qName, Attributes atts) argument
789 startElement(String uri, String localName) argument
811 startElement(String localName) argument
832 endElement(String uri, String localName) argument
853 endElement(String localName) argument
875 emptyElement(String uri, String localName) argument
897 emptyElement(String localName) argument
929 dataElement(String uri, String localName, String qName, Attributes atts, String content) argument
964 dataElement(String uri, String localName, String content) argument
995 dataElement(String localName, String content) argument
1181 booleanAttribute(String localName, String qName, String value) argument
1286 writeName(String uri, String localName, String qName, boolean isElement) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DQName.java89 * @param localName The local name
91 public QName(String namespaceURI, String localName) argument
93 this(namespaceURI, localName, false);
101 * @param localName The local name
105 public QName(String namespaceURI, String localName, boolean validate) argument
110 if (localName == null)
112 XMLErrorResources.ER_ARG_LOCALNAME_NULL, null)); //"Argument 'localName' is null");
116 if (!XML11Char.isXML11ValidNCName(localName))
119 XMLErrorResources.ER_ARG_LOCALNAME_INVALID,null )); //"Argument 'localName' not a valid NCName");
124 _localName = localName;
137 QName(String namespaceURI, String prefix, String localName) argument
152 QName(String namespaceURI, String prefix, String localName, boolean validate) argument
189 QName(String localName) argument
202 QName(String localName, boolean validate) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTElement.cpp93 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::spanTag.localName(), document);
98 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::iTag.localName(), document);
101 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::bTag.localName(), document);
104 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::uTag.localName(), document);
107 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::rubyTag.localName(), document);
110 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::rtTag.localName(), document);
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorGlobalParamDecl.java63 * @param localName The local name (without prefix), or empty string if not namespace processing.
67 StylesheetHandler handler, String uri, String localName, String rawName)
75 super.endElement(handler, uri, localName, rawName);
66 endElement( StylesheetHandler handler, String uri, String localName, String rawName) argument
H A DProcessorGlobalVariableDecl.java63 * @param localName The local name (without prefix), or empty string if not namespace processing.
67 StylesheetHandler handler, String uri, String localName, String rawName)
75 super.endElement(handler, uri, localName, rawName);
66 endElement( StylesheetHandler handler, String uri, String localName, String rawName) argument
H A DProcessorStylesheetElement.java50 * @param localName The local name (without prefix), or the
60 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
64 super.startElement(handler, uri, localName, rawName, attributes);
136 * @param localName The local name (without prefix), or empty string if not namespace processing.
140 StylesheetHandler handler, String uri, String localName, String rawName)
143 super.endElement(handler, uri, localName, rawName);
59 startElement( StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) argument
139 endElement( StylesheetHandler handler, String uri, String localName, String rawName) argument

Completed in 6708 milliseconds

1234567891011>>