HomeSort by relevance Sort by last modified time
    Searched refs:tagName (Results 226 - 250 of 535) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/dom/html/level1/core/
hc_documentinvalidcharacterexceptioncreateelement.js 78 The "createElement(tagName)" method raises an
80 tagName contains an invalid character.
83 "createElement(tagName)" method with the tagName equal
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_documentcreateelement.js 78 The "createElement(tagName)" method creates an Element
81 "createElement(tagName)" method with tagName="acronym".
83 whose tagName is "acronym". The NodeName, NodeType
hc_documentgetelementsbytagnamevalue.js 78 The "getElementsByTagName(tagName)" method returns a
79 NodeList of all the Elements with a given tagName
83 "getElementsByTagName(tagName)" method with tagName
hc_documentinvalidcharacterexceptioncreateattribute.js 78 The "createAttribute(tagName)" method raises an
80 tagName contains an invalid character.
83 "createAttribute(tagName)" method with the tagName equal
hc_documentinvalidcharacterexceptioncreateelement.js 78 The "createElement(tagName)" method raises an
80 tagName contains an invalid character.
83 "createElement(tagName)" method with the tagName equal
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeappendchild01.js 95 var tagName;
105 tagName = docElem.tagName;
108 docType = domImpl.createDocumentType(tagName,nullPubId,nullSysId);
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 96 static PassOwnPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, int primitiveValue, const QualifiedName& tagName)
98 return adoptPtr(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
110 HTMLElementEquivalent(CSSPropertyID, const QualifiedName& tagName);
111 HTMLElementEquivalent(CSSPropertyID, int primitiveValue, const QualifiedName& tagName);
123 HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id, const QualifiedName& tagName)
125 , m_tagName(&tagName)
129 HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id, int primitiveValue, const QualifiedName& tagName)
132 , m_tagName(&tagName)
150 static PassOwnPtr<HTMLElementEquivalent> create(int primitiveValue, const QualifiedName& tagName)
152 return adoptPtr(new HTMLTextDecorationEquivalent(primitiveValue, tagName));
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLFormControlElement.h 110 HTMLFormControlElement(const QualifiedName& tagName, Document*, HTMLFormElement*);
176 HTMLFormControlElementWithState(const QualifiedName& tagName, Document*, HTMLFormElement*);
HTMLPlugInElement.cpp 50 HTMLPlugInElement::HTMLPlugInElement(const QualifiedName& tagName, Document* doc)
51 : HTMLFrameOwnerElement(tagName, doc)
HTMLPlugInImageElement.cpp 36 HTMLPlugInImageElement::HTMLPlugInImageElement(const QualifiedName& tagName, Document* document, bool createdByParser, PreferPlugInsForImagesOption preferPlugInsForImagesOption)
37 : HTMLPlugInElement(tagName, document)
HTMLAreaElement.cpp 41 inline HTMLAreaElement::HTMLAreaElement(const QualifiedName& tagName, Document* document)
42 : HTMLAnchorElement(tagName, document)
50 PassRefPtr<HTMLAreaElement> HTMLAreaElement::create(const QualifiedName& tagName, Document* document)
52 return adoptRef(new HTMLAreaElement(tagName, document));
HTMLDocument.h 86 virtual PassRefPtr<Element> createElement(const AtomicString& tagName, ExceptionCode&);
HTMLEmbedElement.cpp 48 inline HTMLEmbedElement::HTMLEmbedElement(const QualifiedName& tagName, Document* document, bool createdByParser)
49 : HTMLPlugInImageElement(tagName, document, createdByParser, ShouldPreferPlugInsForImages)
54 PassRefPtr<HTMLEmbedElement> HTMLEmbedElement::create(const QualifiedName& tagName, Document* document, bool createdByParser)
56 return adoptRef(new HTMLEmbedElement(tagName, document, createdByParser));
HTMLFrameSetElement.cpp 45 HTMLFrameSetElement::HTMLFrameSetElement(const QualifiedName& tagName, Document* document)
46 : HTMLElement(tagName, document)
59 PassRefPtr<HTMLFrameSetElement> HTMLFrameSetElement::create(const QualifiedName& tagName, Document* document)
61 return adoptRef(new HTMLFrameSetElement(tagName, document));
HTMLMeterElement.cpp 41 HTMLMeterElement::HTMLMeterElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
42 : HTMLFormControlElement(tagName, document, form)
51 PassRefPtr<HTMLMeterElement> HTMLMeterElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
53 RefPtr<HTMLMeterElement> meter = adoptRef(new HTMLMeterElement(tagName, document, form));
HTMLOptionElement.cpp 45 HTMLOptionElement::HTMLOptionElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
46 : HTMLFormControlElement(tagName, document, form)
56 PassRefPtr<HTMLOptionElement> HTMLOptionElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
58 return adoptRef(new HTMLOptionElement(tagName, document, form));
  /external/webkit/Source/WebCore/svg/
SVGPolyElement.cpp 40 SVGPolyElement::SVGPolyElement(const QualifiedName& tagName, Document* document)
41 : SVGStyledTransformableElement(tagName, document)
SVGStyledTransformableElement.cpp 37 SVGStyledTransformableElement::SVGStyledTransformableElement(const QualifiedName& tagName, Document* document)
38 : SVGStyledLocatableElement(tagName, document)
SVGAnimateMotionElement.cpp 44 inline SVGAnimateMotionElement::SVGAnimateMotionElement(const QualifiedName& tagName, Document* document)
45 : SVGAnimationElement(tagName, document)
51 PassRefPtr<SVGAnimateMotionElement> SVGAnimateMotionElement::create(const QualifiedName& tagName, Document* document)
53 return adoptRef(new SVGAnimateMotionElement(tagName, document));
SVGAnimateTransformElement.cpp 50 inline SVGAnimateTransformElement::SVGAnimateTransformElement(const QualifiedName& tagName, Document* document)
51 : SVGAnimationElement(tagName, document)
57 PassRefPtr<SVGAnimateTransformElement> SVGAnimateTransformElement::create(const QualifiedName& tagName, Document* document)
59 return adoptRef(new SVGAnimateTransformElement(tagName, document));
SVGFECompositeElement.cpp 42 inline SVGFECompositeElement::SVGFECompositeElement(const QualifiedName& tagName, Document* document)
43 : SVGFilterPrimitiveStandardAttributes(tagName, document)
48 PassRefPtr<SVGFECompositeElement> SVGFECompositeElement::create(const QualifiedName& tagName, Document* document)
50 return adoptRef(new SVGFECompositeElement(tagName, document));
  /packages/apps/Camera/src/com/android/camera/
PreferenceInflater.java 54 private CameraPreference newPreference(String tagName, Object[] args) {
55 String name = PACKAGE_NAME + "." + tagName;
  /packages/apps/LegacyCamera/src/com/android/camera/
PreferenceInflater.java 54 private CameraPreference newPreference(String tagName, Object[] args) {
55 String name = PACKAGE_NAME + "." + tagName;
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 35 protected ElementImpl(DocumentImpl owner, String tagName) {
37 mTagName = tagName;
141 // The value of nodeName is tagName when Node is an Element
  /system/core/liblog/
fake_log_device.c 200 char tagName[kMaxTagLen];
210 tagName[i++] = *tags++;
216 tagName[i] = '\0';
220 if (tagName[0] == '*' && tagName[1] == '\0') {
222 tagName[0] = '\0';
253 if (tagName[0] == 0) {
258 strcpy(logState->tagSet[entry].tag, tagName);

Completed in 251 milliseconds

1 2 3 4 5 6 7 8 91011>>